14 lines
458 B
Bash
14 lines
458 B
Bash
# LLM API Configuration
|
|
# Get your API key from https://platform.openai.com/api-keys
|
|
# Or use any OpenAI-compatible API (e.g., Together.ai, Groq, etc.)
|
|
OPENAI_API_KEY=your_api_key_here
|
|
|
|
# Optional: Custom base URL for OpenAI-compatible APIs
|
|
# LLM_BASE_URL=https://api.openai.com/v1
|
|
|
|
# Optional: Model name (default: gpt-4o-mini)
|
|
# LLM_MODEL=gpt-4o-mini
|
|
|
|
# Firecrawl API Configuration
|
|
# Get your API key from https://www.firecrawl.dev
|
|
FIRECRAWL_API_KEY=fc-... |