Files
opantoantro/.env.example
T
Beyhan Ogur c56ae7194c feat: enable SSE streaming support in Anthropic handler
- Updated AnthropicHandler to check for streaming configuration before handling SSE transform.
- Modified handleStreaming to use the original request body instead of forcing stream to true.
- Adjusted the transformation logic in AnthropicToBifrost to respect the original stream setting.
- Added logging for SSE streaming configuration in the main application.
2026-05-11 15:28:56 +03:00

15 lines
357 B
Bash

PORT=8000
OPENAI_BACKEND=https://api.deepseek.com
GATEWAY_URL=http://10.80.80.70:8000
OPENAI_KEY=your_openai_key_here
DATABASE_DSN=host=localhost user=app password=pass dbname=app port=5432 sslmode=disable TimeZone=UTC
REQUEST_TIMEOUT_SECONDS=30
OPENAI_MODEL=deepseek-v4-pro
DB_MODE=sqlite
#DB_MODE=pgs
DB_PATH=./data/app.db
LOG_LEVEL=warn
STREAMING=true