easyrhythm
星标1
分支2
更新时间2026年7月24日 16:11
松弛有度智能客服 — 意图分类、实体抽取、FastAPI 服务
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
松弛有度智能客服 — 意图分类、实体抽取、FastAPI 服务
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | easyrhythm |
| description | 松弛有度智能客服 — 意图分类、实体抽取、FastAPI 服务 |
| license | MIT |
| metadata | {"author":"503496348-ops","version":"1.0.0"} |
航空客服场景的意图分类 + 实体抽取 + FastAPI 服务端。
| 命令 | 说明 |
|---|---|
easyrhythm serve | 启动 FastAPI 服务 |
easyrhythm classify <text> | 意图分类 |
easyrhythm extract <text> | 实体抽取 |
easyrhythm info | 产品信息 |
# 启动服务
python3 scripts/cli.py serve --port 8000
# 意图分类
python3 scripts/cli.py classify "帮我查一下今天的航班"
# 实体抽取
python3 scripts/cli.py extract "北京到上海的航班"
python-backend/server.py — FastAPI 服务端python-backend/airline/intent_classifier.py — 意图分类器python-backend/airline/entity_extractor.py — 实体抽取器python-backend/airline/tools.py — 航空工具集python-backend/memory_store.py — 记忆存储python3 -m pytest tests/ -q