-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
41 lines (32 loc) · 1.22 KB
/
.env.example
File metadata and controls
41 lines (32 loc) · 1.22 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
# At least one provider must be configured (both are optional individually).
# Azure DevOps organization name (required for azdo provider)
# AZURE_DEVOPS_ORG=<your-org>
# GitHub organization name (required for github provider)
# GITHUB_ORG=<your-github-org>
# Optional: GitHub personal access token (falls back to `gh auth token`)
# GITHUB_TOKEN=
# Benchmark runner configuration
# OPENAI_API_KEY=
# OPENAI_MODEL=
# GITHUB_MCP_SERVER_URL=https://api.githubcopilot.com/mcp/
# COPILOT_CLI_PATH=/opt/homebrew/bin/copilot
# COPILOT_SDK_PATH=
# CODEX_CLI_PATH=/Applications/Codex.app/Contents/Resources/codex
# CODEX_AUTH_HOME=~/.codex
# Optional: Override API URLs and versions
# AZURE_DEVOPS_API_VERSION=7.1
# GITHUB_API_URL=https://api.github.com
# GITHUB_API_VERSION=2022-11-28
# Optional: Timeout settings (seconds)
# AZURE_DEVOPS_TIMEOUT_SECONDS=30
# GITHUB_TIMEOUT_SECONDS=30
# Optional: HTTP pool and retry tuning
# SMITH_HTTP_POOL_MAXSIZE=32
# SMITH_HTTP_POOL_CONNECTIONS=16
# SMITH_HTTP_RETRY_MAX_ATTEMPTS=2
# SMITH_HTTP_RETRY_BACKOFF_SECONDS=0.4
# Optional: Output truncation limit (characters)
# SMITH_LOCAL_MAX_OUTPUT_CHARS=10240
# Optional: GitHub grep parallelism
# GITHUB_GREP_ENABLE_PARALLEL=true
# GITHUB_GREP_MAX_WORKERS=20