Files
LocalAgent/intent/labels.py
Mimikko-zeus 4b3286f546 Initial commit
2026-01-07 00:17:46 +08:00

16 lines
288 B
Python
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.
"""
意图标签定义
"""
# 意图类型常量
CHAT = "chat"
EXECUTION = "execution"
# 执行任务置信度阈值
# 低于此阈值一律判定为 chat宁可少执行不可误执行
EXECUTION_CONFIDENCE_THRESHOLD = 0.6
# 所有有效标签
VALID_LABELS = {CHAT, EXECUTION}