Files
crewai/.env.example
2026-03-13 14:20:58 +08:00

28 lines
782 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 环境变量配置示例
# 复制此文件为 .env 并填入实际值
# ==================== DashScope 配置 ====================
# DashScope API Key (通义千问)
# 获取地址https://dashscope.console.aliyun.com/
DASHSCOPE_API_KEY=sk-your-actual-api-key-here
# 注意:如果您使用 OpenAI也可以设置 OPENAI_API_KEY
# OPENAI_API_KEY=sk-your-openai-key
# ==================== 服务配置 ====================
HOST=0.0.0.0
PORT=8000
# ==================== 日志配置 ====================
LOG_LEVEL=info # debug, info, warning, error
# ==================== 高级配置(可选)====================
# SSE 队列最大长度
SSE_QUEUE_MAX_SIZE=1000
# 流清理间隔(秒)
STREAM_CLEANUP_INTERVAL=300
# 任务超时时间(秒)
TASK_TIMEOUT=3600