2024-10-13 18:53:43 +00:00
|
|
|
# Rename this file to .env.local once you have filled in the below environment variables!
|
|
|
|
|
|
|
|
# Get your GROQ API Key here -
|
|
|
|
# https://console.groq.com/keys
|
|
|
|
# You only need this environment variable set if you want to use Groq models
|
|
|
|
GROQ_API_KEY=
|
|
|
|
|
|
|
|
# Get your Open AI API Key by following these instructions -
|
|
|
|
# https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key
|
|
|
|
# You only need this environment variable set if you want to use GPT models
|
|
|
|
OPENAI_API_KEY=
|
|
|
|
|
|
|
|
# Get your Anthropic API Key in your account settings -
|
|
|
|
# https://console.anthropic.com/settings/keys
|
|
|
|
# You only need this environment variable set if you want to use Claude models
|
|
|
|
ANTHROPIC_API_KEY=
|
|
|
|
|
2024-10-15 00:40:21 +00:00
|
|
|
# Get your OpenRouter API Key in your account settings -
|
|
|
|
# https://openrouter.ai/settings/keys
|
|
|
|
# You only need this environment variable set if you want to use OpenRouter models
|
2024-10-19 18:21:24 +00:00
|
|
|
OPEN_ROUTER_API_KEY=
|
2024-10-15 21:47:35 +00:00
|
|
|
|
|
|
|
# Get your Google Generative AI API Key by following these instructions -
|
|
|
|
# https://console.cloud.google.com/apis/credentials
|
|
|
|
# You only need this environment variable set if you want to use Google Generative AI models
|
|
|
|
GOOGLE_GENERATIVE_AI_API_KEY=
|
2024-10-15 00:40:21 +00:00
|
|
|
|
2024-10-18 11:34:08 +00:00
|
|
|
# You only need this environment variable set if you want to use oLLAMA models
|
2024-10-15 21:47:35 +00:00
|
|
|
# EXAMPLE http://localhost:11434
|
2024-10-18 11:34:08 +00:00
|
|
|
OLLAMA_API_BASE_URL=
|
|
|
|
|
2024-10-23 15:36:12 +00:00
|
|
|
# You only need this environment variable set if you want to use OpenAI API Like models
|
|
|
|
# EXAMPLE https://xxx.xxxx.com/v1
|
|
|
|
OPENAI_API_LIKE_BASE_URL=
|
|
|
|
|
|
|
|
# Get your OpenAI API Like Key by following these instructions -
|
|
|
|
# https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key
|
|
|
|
OPENAI_API_LIKE_KEY=
|
|
|
|
|
2024-10-13 18:53:43 +00:00
|
|
|
# Include this environment variable if you want more logging for debugging locally
|
2024-10-18 11:34:08 +00:00
|
|
|
VITE_LOG_LEVEL=debug
|