Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .gitignore and example.env with new API keys and settings #265

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
# Ignore all contents of the virtual environment directory
.venv/

# Ignore IDE files
.idea/

# ignore all folders under /bundle
bundle/*/
# except some
Expand Down Expand Up @@ -61,3 +64,4 @@ instruments/**/*.*
# Explicitly allow the default folder and its contents
!instruments/default/
!instruments/default/**

22 changes: 20 additions & 2 deletions example.env
Original file line number Diff line number Diff line change
@@ -1,25 +1,43 @@
# OpenAI API key: https://platform.openai.com/api-keys
API_KEY_OPENAI=

# Anthropic API key: https://console.anthropic.com/settings/keys
API_KEY_ANTHROPIC=

# Groq API key: https://console.groq.com/keys
API_KEY_GROQ=

# Perplexity API key: https://docs.perplexity.ai/docs/getting-started
API_KEY_PERPLEXITY=

# Google AI (Gemini) API key: https://makersuite.google.com/app/apikey
API_KEY_GOOGLE=

# Mistral AI API key: https://console.mistral.ai/api-keys/
API_KEY_MISTRAL=

# OpenRouter API key: https://openrouter.ai/keys
API_KEY_OPENROUTER=

# SambaNova API key: https://sambanova.ai/
API_KEY_SAMBANOVA=

# Azure OpenAI keys: https://portal.azure.com/#view/Microsoft_Azure_ProjectOxford/CognitiveServicesHub/~/OpenAI
API_KEY_OPENAI_AZURE=
OPENAI_AZURE_ENDPOINT=
OPENAI_API_VERSION=

# Hugging Face token: https://huggingface.co/settings/tokens
HF_TOKEN=


# Web UI port setting (default: 50001)
WEB_UI_PORT=50001


# System settings - recommended to keep as is
TOKENIZERS_PARALLELISM=true
PYDEVD_DISABLE_FILE_VALIDATION=1

# Local model API endpoints
OLLAMA_BASE_URL="http://127.0.0.1:11434"
LM_STUDIO_BASE_URL="http://127.0.0.1:1234/v1"
OPEN_ROUTER_BASE_URL="https://openrouter.ai/api/v1"
Expand Down