Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for environment variables using a .env file Using a .env File (Recommended for Development): - Created a .env file in the root directory to manage environment variables for development. - Added CLAUDE_API_KEY to the .env file. Instructions: 1. Add your environment variable to the file: CLAUDE_API_KEY=your_api_key_here 2. Install the python-dotenv package to read the .env file in your Python script: pip install python-dotenv 3. Updated the script to load the environment variables with the following code
- Loading branch information