10 lines
232 B
Bash
10 lines
232 B
Bash
# OpenAI-compatible API configuration
|
|
OPENAI_API_URL=https://api.openai.com/v1
|
|
OPENAI_API_KEY=your-api-key-here
|
|
|
|
# Default model
|
|
DEFAULT_MODEL=gpt-4o-mini
|
|
|
|
# Backend JWT secret (change in production)
|
|
JWT_SECRET=your-jwt-secret-here
|