# 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