forked from Ingenimax/agent-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
55 lines (44 loc) · 1.73 KB
/
Copy pathenv.example
File metadata and controls
55 lines (44 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Agent SDK CLI Environment Variables
# Copy this file to .env and set your actual values
# LLM Provider Selection (openai, anthropic, vertex, ollama, vllm)
LLM_PROVIDER=openai
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4o-mini
# Anthropic Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
ANTHROPIC_MODEL=claude-3-5-sonnet-20241022
# Azure OpenAI Configuration
AZURE_OPENAI_API_KEY=your_azure_openai_api_key_here
AZURE_OPENAI_BASE_URL=https://your-resource.openai.azure.com
AZURE_OPENAI_REGION=eastus
AZURE_OPENAI_RESOURCE_NAME=your-resource-name
AZURE_OPENAI_DEPLOYMENT=your-deployment-name
AZURE_OPENAI_API_VERSION=2024-08-01-preview
# Google Vertex AI Configuration
GOOGLE_APPLICATION_CREDENTIALS=path/to/your/service-account.json
GOOGLE_CLOUD_PROJECT=your-google-cloud-project-id
# Ollama Configuration (for local models)
OLLAMA_BASE_URL=http://localhost:11434
# vLLM Configuration (for local inference server)
VLLM_BASE_URL=http://localhost:8000
# Tool Configuration
GOOGLE_API_KEY=your_google_api_key_for_search
GOOGLE_SEARCH_ENGINE_ID=your_google_search_engine_id
GITHUB_TOKEN=your_github_personal_access_token
# Tracing Configuration (optional)
LANGFUSE_ENABLED=false
LANGFUSE_SECRET_KEY=your_langfuse_secret_key
LANGFUSE_PUBLIC_KEY=your_langfuse_public_key
LANGFUSE_HOST=https://cloud.langfuse.com
LANGFUSE_ENVIRONMENT=development
# Redis Configuration (optional, for distributed memory)
REDIS_URL=localhost:6379
REDIS_PASSWORD=
REDIS_DB=0
# Logging Configuration
LOG_LEVEL=info
# LOG_FORMAT: Set to "json" for structured JSON logging (default: "console" for human-readable output)
LOG_FORMAT=console
# LOG_JSON: Alternative way to enable JSON logging (set to "true", "1", or "yes")
# LOG_JSON=false