Complete Tutorial for AI Model Integration and Third-Party Tool Configuration
Includes installation guide, environment configuration, VS Code plugin setup, and frequently asked questions
| Configuration items | Description | Acquisition method |
|---|---|---|
| ANTHROPIC_AUTH_TOKEN | API key | Add a token in the console to obtain an API key starting with sk- |
| ANTHROPIC_BASE_URL | API service address | Use by defaulthttps://cloud.dataeyes.aiOr obtain other addresses from the console |
# Enter the project directory
cd Your project folder address
# windows PowerShell Configure environment variables
$env:ANTHROPIC_AUTH_TOKEN = "Enter your key starting with SK here"
$env:ANTHROPIC_BASE_URL = "https://cloud.dataeyes.ai"
# windows cmd Configure environment variables
set ANTHROPIC_AUTH_TOKEN=Enter your key starting with SK here
set ANTHROPIC_BASE_URL=https://cloud.dataeyes.ai
# Start Claude Code
claude