30 lines
678 B
Plaintext
30 lines
678 B
Plaintext
# LLM Configuration
|
|
# Provider options: openai, anthropic, ollama
|
|
|
|
# Required
|
|
LLM_MODEL=gpt-4
|
|
LLM_PROVIDER=openai
|
|
|
|
# Required for OpenAI/Anthropic
|
|
LLM_BASE_URL=https://api.openai.com/v1
|
|
LLM_API_KEY=your_api_key_here
|
|
|
|
# For Ollama (local or network):
|
|
# LLM_MODEL=llama2
|
|
# LLM_BASE_URL=http://localhost:11434
|
|
# LLM_PROVIDER=ollama
|
|
|
|
# Optional: Semgrep App URL and Token
|
|
SEMGRAPH_APP_URL=
|
|
SEMGRAPH_API_TOKEN=
|
|
|
|
# Timeout Configuration (seconds)
|
|
TOTAL_FLOW_TIMEOUT=600
|
|
PER_CREW_TIMEOUT=300
|
|
|
|
LOG_LEVEL=INFO
|
|
|
|
# Gitea Webhook Configuration
|
|
ACCESS_GITEA_URL=http://192.168.178.160:3000
|
|
ACCESS_GITEA_TOKEN=your_gitea_personal_access_token_here
|
|
ACCESS_GITEA_SECRET=your_webhook_secret_here |