Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README to provide documentation for setting Amthropic API key through environment variables #34

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ https://github.com/user-attachments/assets/333e536e-93d0-4a97-8c9b-8f0722c29d51

### 0. Prerequisites
- Instal Miniconda on your system through this [link](https://www.anaconda.com/download?utm_source=anacondadocs&utm_medium=documentation&utm_campaign=download&utm_content=topnavalldocs). (**Python Version: >= 3.11**).
- *Optional*: Configure your Anthropic API key as an environment variable to avoid entering your Anthropic API key into the application each time. The application will automatically use this key for authenticated requests.
- #### MacOS/Linux (Terminal):
```bash
export ANTHROPIC_API_KEY="your-api-key-here"
```
- #### Windows (Command Prompt or PowerShell):
```bash
setx ANTHROPIC_API_KEY "your-api-key-here"
```

### 1. Clone the Repository 📂
Open the Conda Terminal. (After installation Of Miniconda, it will appear in the Start menu.)
Expand Down