-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.env.example
44 lines (35 loc) · 995 Bytes
/
.env.example
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
#### Environment Configuration ####
EXIT_ON_ERROR=false
EC_TELEMETRY=false
#### LLM Configuration ####
# Select model names for the LLM and Embedder
# Run `make list-models` or `python crews_control.py --list-models` to see supported models
LLM_NAME=
EMBEDDER_NAME=
# If using OpenAI
OPENAI_API_KEY=
OPENAI_API_VERSION=
OPENAI_MODEL_NAME=
OPENAI_EMBEDDING_MODEL_NAME=
# If using Azure OpenAI
AZURE_OPENAI_VERSION=
AZURE_OPENAI_LLM_DEPLOYMENT_NAME=
AZURE_OPENAI_EMBEDDING_DEPLOYMENT_NAME=
AZURE_OPENAI_ENDPOINT=
AZURE_OPENAI_KEY=
# If using Groq
GROQ_MODEL_NAME=
GROQ_API_KEY=
# If using Anthropic
ANTHROPIC_MODEL_NAME=
ANTHROPIC_API_KEY=
#### Tools Configuration ####
# If using Jira tools (otherwise, set to non-empty string)
JIRA_API_TOKEN=
JIRA_USERNAME=
JIRA_INSTANCE_URL=
JIRA_CREATE_ISSUE_PROJECT_KEY=
# If using GitHub tools (otherwise, set to non-empty string)
GITHUB_TOKEN=
# If using serper.dev tool to search the internet (otherwise, set to non-empty string)
SERPER_API_KEY=