-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (20 loc) · 1.12 KB
/
Copy path.env.example
File metadata and controls
23 lines (20 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Workspace directory (absolute path or relative to project root)
WORKSPACE_DIR=./my_workspaces
# Server Configuration
TEAMCOPILOT_HOST=0.0.0.0
TEAMCOPILOT_PORT=5124
# Optional public origin used only for generated workflow API curl commands.
# Defaults to TEAMCOPILOT_HOST:TEAMCOPILOT_PORT when unset.
# EXTERNAL_HOST=https://teamcopilot.example.com
# Opencode Server Configuration
OPENCODE_PORT=4096
OPENCODE_MODEL=openai/gpt-5.4-mini
# Azure OpenAI (optional): set AZURE_API_KEY, AZURE_OPENAI_ENDPOINT, OPENCODE_MODEL=azure-openai/<deployment>
# Google Vertex via OpenCode (only if picking this backend): GOOGLE_CLOUD_PROJECT,
# GOOGLE_APPLICATION_CREDENTIALS (path to service account JSON), VERTEX_LOCATION, and OPENCODE_MODEL=<vertex-provider>/<model-id>
# where <vertex-provider> is google-vertex, google-vertex-anthropic, or another OpenCode google-vertex-* provider id.
# Optional pricing overrides for the currently configured OPENCODE_MODEL.
# Set all three or leave all three unset.
# TEAMCOPILOT_MODEL_INPUT_PER_MILLION_USD=1.75
# TEAMCOPILOT_MODEL_CACHED_INPUT_PER_MILLION_USD=0.175
# TEAMCOPILOT_MODEL_OUTPUT_PER_MILLION_USD=14