-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (27 loc) · 952 Bytes
/
.env.example
File metadata and controls
30 lines (27 loc) · 952 Bytes
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
# OpenAI credentials — copy this file to .env and fill in your values.
# .env is gitignored and will never be committed.
# --- Standard OpenAI ---
OPENAI_CLIENT=openai
OPENAI_MODEL=gpt-3.5-turbo
OPENAI_KEY=sk-...
EMBEDDINGS_CLIENT=openai
EMBEDDINGS_MODEL=text-embedding-ada-002
EMBEDDINGS_KEY=sk-...
# --- Azure OpenAI (uncomment and fill if using Azure) ---
# OPENAI_CLIENT=azure
# OPENAI_MODEL=gpt-35-turbo-0125
# OPENAI_KEY=your-azure-key
# OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
# OPENAI_API_VERSION=2024-02-01
# EMBEDDINGS_CLIENT=azure
# EMBEDDINGS_MODEL=text-embedding-ada-002
# EMBEDDINGS_KEY=your-azure-key
# EMBEDDINGS_ENDPOINT=https://your-resource.openai.azure.com/
# EMBEDDINGS_API_VERSION=2024-02-01
# --- Cost tracking (optional, defaults shown) ---
# EXPERIMENT_NAME=edsim
# COST_UPPERBOUND=100.0
# OPENAI_MODEL_COST_INPUT=0.0
# OPENAI_MODEL_COST_OUTPUT=0.0
# EMBEDDINGS_COST_INPUT=0.0
# EMBEDDINGS_COST_OUTPUT=0.0