fix commands bug in readme - replace anthropic api key to anthropic auth token

This commit is contained in:
Badri Narayanan S
2026-01-08 01:21:01 +05:30
parent 7c047a9578
commit a7ca710249

View File

@@ -195,7 +195,7 @@ Add the proxy settings to your shell profile:
```bash ```bash
echo 'export ANTHROPIC_BASE_URL="http://localhost:8080"' >> ~/.zshrc echo 'export ANTHROPIC_BASE_URL="http://localhost:8080"' >> ~/.zshrc
echo 'export ANTHROPIC_API_KEY="test"' >> ~/.zshrc echo 'export ANTHROPIC_AUTH_TOKEN="test"' >> ~/.zshrc
source ~/.zshrc source ~/.zshrc
``` ```
@@ -205,7 +205,7 @@ source ~/.zshrc
```powershell ```powershell
Add-Content $PROFILE "`n`$env:ANTHROPIC_BASE_URL = 'http://localhost:8080'" Add-Content $PROFILE "`n`$env:ANTHROPIC_BASE_URL = 'http://localhost:8080'"
Add-Content $PROFILE "`$env:ANTHROPIC_API_KEY = 'test'" Add-Content $PROFILE "`$env:ANTHROPIC_AUTH_TOKEN = 'test'"
. $PROFILE . $PROFILE
``` ```
@@ -213,7 +213,7 @@ Add-Content $PROFILE "`$env:ANTHROPIC_API_KEY = 'test'"
```cmd ```cmd
setx ANTHROPIC_BASE_URL "http://localhost:8080" setx ANTHROPIC_BASE_URL "http://localhost:8080"
setx ANTHROPIC_API_KEY "test" setx ANTHROPIC_AUTH_TOKEN "test"
``` ```
Restart your terminal for changes to take effect. Restart your terminal for changes to take effect.