-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathenv-example.sh
50 lines (38 loc) · 1.6 KB
/
env-example.sh
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
# Get an OpenAI API key here: https://platform.openai.com
# Provider options: openai,azureOpenAi anthropic, ollama (only tool calling models supported like llama 3.1)
# Some model options I've tested: gpt-4o, gpt-4o-mini, claude-3-5-sonnet-20241022, llama3.1
MODEL_PROVIDER=openai
MODEL_API_KEY=
MODEL=gpt-4o
# If using Azure OpenAI
AZURE_OPENAI_ENDPOINT=https://XXXX.openai.azure.com
AZURE_OPENAI_DEPLOYMENT_NAME=
AZURE_OPENAI_API_VERSION=
AZURE_OPENAI_API_KEY=
AZURE_OPENAI_MODEL=
# If using Ollama not on localhost
#MODEL_BASE_URL=localhost
# This is a demo Prometheus server that I am paying for so you can quickly try out OllyChat without connecting to yours first
PROMETHEUS_URL=http://34.123.158.139:9090
# Get a Tavily API key here: https://app.tavily.com/ or leave it empty to disable the Tavily tool
TAVILY_API_KEY=
# Recommend leaving as is
GRAPH_RECURSION_LIMIT=5
# You can set LANGSMITH_TRACING to true to help me (alex) diagnose issues you are having with the app
LANGSMITH_TRACING=false
LANGCHAIN_VERBOSE=false
# This is the API key for OllyChat so users can send up LLM traces when they run into issues
LANGSMITH_API_KEY=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
LANGSMITH_ENDPOINT="https://api.smith.langchain.com"
LANGSMITH_PROJECT="ollychat"
# Only needed for deploying Ollychat as a Slack bot
SLACK_BOT_TOKEN=
SLACK_SIGNING_SECRET=
SLACK_APP_TOKEN=
PORT=3000
# Sends basic telemetry to Posthog so I can improve the product - set to false to disable
TELEMETRY=true
# Only needed for deploying a demo instance of Prometheus for testing purposes
DEMO_EMAIL=
CLUSTER_NAME=ollychat-demo
REGION=us-central1