-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.env.template
More file actions
94 lines (69 loc) · 2.21 KB
/
Copy path.env.template
File metadata and controls
94 lines (69 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
########################
### BeeAI Framework Starter configuration
########################
# Default LLM Provider (watsonx/ollama/openai/groq)
LLM_CHAT_MODEL_NAME="ollama:granite3.3:8b"
# Tools
CODE_INTERPRETER_URL="http://127.0.0.1:50081"
########################
### BeeAI configuration
########################
BEEAI_LOG_LEVEL=INFO
########################
### OpenAI specific configuration
########################
# OPENAI_API_KEY=your-openai-api-key
# OPENAI_API_HEADERS="secret-header=1234"
########################
### watsonx specific configuration
########################
# WATSONX_PROJECT_ID=your-watsonx-project-id
# WATSONX_API_KEY=your-watsonx-api-key
#
# Either
# WATSONX_URL=
# WATSONX_REGION=
########################
### Ollama specific configuration
########################
# OLLAMA_API_BASE=http://localhost:11434
# OLLAMA_CHAT_MODEL=granite3.3:8b
########################
### Groq specific configuration
########################
# GROQ_API_KEY=your-groq-api-key
# GROQ_CHAT_MODEL=gemma2-9b-it
########################
### xAI specific configuration
########################
# XAI_API_KEY=your-xai-api-key
# XAI_CHAT_MODEL=grok-2
########################
### Vertex AI specific configuration
########################
# GOOGLE_VERTEX_CHAT_MODEL=gemini-2.0-flash-lite-001
# GOOGLE_VERTEX_PROJECT=your-vertexai-project
# GOOGLE_VERTEX_LOCATION=your-vertexai-location
# GOOGLE_VERTEX_API_HEADERS="secret-header=1234"
########################
### Amazon Bedrock specific configuration
########################
# AWS_ACCESS_KEY_ID=your-aws-access-key
# AWS_SECRET_ACCESS_KEY=your-secret-access-key
# AWS_REGION=your-aws-region
# AWS_CHAT_MODEL=llama-3.1-8b-instant
# AWS_API_HEADERS="secret-header=1234"
########################
### Anthropic specific configuration
########################
# ANTHROPIC_API_KEY=your-anthropic-api-key
# ANTHROPIC_CHAT_MODEL=claude-3-haiku-20240307"
# ANTHROPIC_API_HEADERS="secret-header=1234"
########################
### Azure OpenAI specific configuration
########################
# AZURE_OPENAI_API_KEY=your-azure-api-key
# AZURE_OPENAI_API_BASE=your-base-url
# AZURE_OPENAI_API_VERSION=2024-10-21
# AZURE_OPENAI_CHAT_MODEL=gpt-4o-mini
# AZURE_OPENAI_API_HEADERS="secret-header=1234"