-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.env.example
More file actions
81 lines (58 loc) · 2.75 KB
/
.env.example
File metadata and controls
81 lines (58 loc) · 2.75 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
################################################################################
### LLM PROVIDER
################################################################################
## OPENAI_API_KEY - OpenAI API Key (Example: sk-xxxxxxxxxxxxxxx)
# OPENAI_API_KEY=
# OPENAI_BASE_URL=https://api.openai.com/v1
## ANTHROPIC_API_KEY - Anthropic API Key (Example: sk-ant-api03-xxxxxxxxxxxxxxxxxxxxxxxx)
# ANTHROPIC_API_KEY=
## GROQ_API_KEY - Groq API Key (Example: gsk_xxxxxxxxxxxxxx)
# GROQ_API_KEY=
## AZURE_OPENAI_API_KEY - Azure OpenAI API Key (Example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)
# AZURE_OPENAI_API_KEY=
# AZURE_OPENAI_API_VERSION=
# AZURE_OPENAI_ENDPOINT=
## MOONSHOT_API_KEY - Kimi API Key (Example: sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)
# MOONSHOT_API_KEY=
## DEEPSEEK_API_KEY (Example: sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)
# DEEPSEEK_API_KEY=
## ZHIPUAI_API_KEY - ZhiPu AI glm-4.7-flash free, also known as ZAI
# ZHIPUAI_API_KEY=
# ZAI_API_KEY=
################################################################################
### TOOLS
################################################################################
## Set Jina API Key if you want to use Jina for read url content(reader)
# JINA_API_KEY=
## Google Search Engine(serper.dev) API Key
# SERPER_API_KEY=
## Search Exa API Key
# EXA_API_KEY=
## Search Bocha API Key
# BOCHA_API_KEY=
## SHELL_COMMAND_CONTROL - Whether to use "allowlist" or "denylist" to determine what shell commands can be executed (Default: denylist)
# SHELL_COMMAND_CONTROL=denylist
## ONLY if SHELL_COMMAND_CONTROL is set to denylist:
## SHELL_DENYLIST - List of shell commands that ARE NOT allowed to be executed by AutoGPT (Default: sudo,su)
# SHELL_DENYLIST=sudo,su
## ONLY if SHELL_COMMAND_CONTROL is set to allowlist:
## SHELL_ALLOWLIST - List of shell commands that ARE allowed to be executed by AutoGPT (Default: None)
# SHELL_ALLOWLIST=
### Huggingface (IMAGE_PROVIDER=huggingface)
## HUGGINGFACE_IMAGE_MODEL - Text-to-image model from Huggingface (Default: CompVis/stable-diffusion-v1-4)
# HUGGINGFACE_IMAGE_MODEL=CompVis/stable-diffusion-v1-4
## HUGGINGFACE_API_TOKEN - HuggingFace API token (Default: None)
# HUGGINGFACE_API_TOKEN=
################################################################################
### LOGGING
################################################################################
## LOG_LEVEL - Set the minimum level to filter log output by. Setting this to DEBUG implies LOG_FORMAT=debug, unless LOG_FORMAT is set explicitly.
## Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
# AGENTICA_LOG_LEVEL=INFO
# AGENTICA_LOG_FILE=
### Langfuse - LLM Observability Platform
### https://langfuse.com/docs
# LANGFUSE_SECRET_KEY=
# LANGFUSE_PUBLIC_KEY=
# LANGFUSE_BASE_URL="https://cloud.langfuse.com"
# LANGFUSE_TIMEOUT=300