SmartMeeting/fastapi_wss/requirements.txt

34 lines
720 B
Plaintext
Raw Permalink 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.

# WebSocket 智能语义分析服务 - 依赖包列表
#
# 安装方法:
# pip install -r requirements.txt
#
# Python 版本要求3.8+
# WebSocket 通信库
websockets>=11.0
# 异步 HTTP 客户端(可选,用于扩展功能)
aiohttp>=3.8.0
# Redis 异步客户端
redis>=5.0.0
# Redis C 扩展(性能优化)
hiredis
# OpenAI API 客户端(用于调用大语言模型)
openai>=1.0.0
# 数值计算库(用于未来的特征处理)
numpy
python-dotenv
# 注意:以下为 Python 标准库,无需安装:
# - asyncio (异步编程)
# - json (JSON 处理)
# - os (操作系统接口)
# - re (正则表达式)
# - logging (日志记录)
# - typing (类型提示)
# - dataclasses (数据类)