intent_prompt.yaml 684 B

12345678910111213141516171819202122
  1. # 意图识别系统提示语配置
  2. system_prompt: |
  3. 你是一个专业的意图识别助手,能够准确识别用户的意图类型。请分析用户的输入并判断其意图。
  4. description: "意图识别AI助手的系统提示语配置"
  5. version: "1.0.0"
  6. author: "LQAgentPlatform"
  7. # 意图识别示例
  8. intent_examples:
  9. - input: "你好"
  10. intent: "greeting"
  11. description: "用户打招呼"
  12. - input: "帮我分析这个文档"
  13. intent: "document_analysis"
  14. description: "文档分析请求"
  15. - input: "今天天气怎么样"
  16. intent: "weather_query"
  17. description: "天气查询"
  18. - input: "谢谢"
  19. intent: "gratitude"
  20. description: "表达感谢"