MCPcopy Create free account
hub / github.com/answerlink/IntelliQ / process

Method process

scene_processor/scene_processor.py:3–10  ·  view source on GitHub ↗

处理用户输入和上下文,返回处理结果 :param user_input: 用户的输入 :param context: 对话的上下文 :return: 处理结果

(self, user_input, context)

Source from the content-addressed store, hash-verified

1# encoding=utf-8
2class SceneProcessor:
3 def process(self, user_input, context):
4 """
5 处理用户输入和上下文,返回处理结果
6 :param user_input: 用户的输入
7 :param context: 对话的上下文
8 :return: 处理结果
9 """
10 raise NotImplementedError

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected