-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example
More file actions
51 lines (45 loc) · 1.58 KB
/
env.example
File metadata and controls
51 lines (45 loc) · 1.58 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
# AI Configuration - Default Settings
# Default Provider: openai, openrouter, anthropic, google, azure
AI_DEFAULT_PROVIDER="openai"
# Default Model (should be compatible with the provider)
AI_DEFAULT_MODEL="gpt-4o-mini"
# OpenAI Configuration
# Get API Key: https://platform.openai.com/api-keys
OPENAI_API_KEY=""
OPENAI_ORGANIZATION=""
OPENAI_BASE_URL=""
# Available models (comma-separated, leave empty to use all preset models)
OPENAI_MODELS=""
# OpenRouter Configuration
# Get API Key: https://openrouter.ai/keys
OPENROUTER_API_KEY=""
OPENROUTER_BASE_URL="https://openrouter.ai/api/v1"
OPENROUTER_SITE_URL="https://drizzle-switcher.example.com"
OPENROUTER_SITE_NAME="DrizzleFlow"
# Available models (comma-separated)
# Example: openai/gpt-4o,anthropic/claude-3.5-sonnet,google/gemini-pro-1.5
OPENROUTER_MODELS=""
# Anthropic Configuration
# Get API Key: https://console.anthropic.com/settings/keys
ANTHROPIC_API_KEY=""
ANTHROPIC_BASE_URL=""
# Available models (comma-separated)
# Example: claude-3.5-sonnet,claude-3-opus,claude-3-haiku
ANTHROPIC_MODELS=""
# Google AI Configuration
# Get API Key: https://makersuite.google.com/app/apikey
GOOGLE_API_KEY=""
GOOGLE_BASE_URL=""
# Available models (comma-separated)
# Example: gemini-1.5-pro,gemini-1.5-flash
GOOGLE_MODELS=""
# Azure OpenAI Configuration
# Documentation: https://learn.microsoft.com/en-us/azure/ai-services/openai/
AZURE_API_KEY=""
AZURE_RESOURCE_NAME=""
AZURE_DEPLOYMENT_NAME=""
AZURE_API_VERSION="2024-02-15-preview"
# Available models (comma-separated)
AZURE_MODELS=""
# Drizzle Studio Configuration
DRIZZLE_STUDIO_URL="http://localhost:4983"