- 实现Agent管理,支持AI辅助生成系统提示词 - 支持多个AI提供商(OpenRouter、智谱、MiniMax等) - 实现聊天室和讨论引擎 - WebSocket实时消息推送 - 前端使用React + Ant Design - 后端使用FastAPI + MongoDB Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
268 B
Python
14 lines
268 B
Python
"""
|
|
工具函数模块
|
|
"""
|
|
from .encryption import encrypt_api_key, decrypt_api_key
|
|
from .proxy_handler import get_http_client
|
|
from .rate_limiter import RateLimiter
|
|
|
|
__all__ = [
|
|
"encrypt_api_key",
|
|
"decrypt_api_key",
|
|
"get_http_client",
|
|
"RateLimiter",
|
|
]
|