fix long events calling

This commit is contained in:
bridge
2025-11-19 01:06:42 +08:00
parent d2cf568154
commit c341a1fddd
13 changed files with 93 additions and 124 deletions

View File

@@ -20,5 +20,7 @@ def intentify_prompt_infos(infos: dict) -> dict:
processed["global_info"] = to_json_str_with_intent(processed["global_info"])
if "general_action_infos" in processed:
processed["general_action_infos"] = to_json_str_with_intent(processed["general_action_infos"])
if "expanded_info" in processed:
processed["expanded_info"] = to_json_str_with_intent(processed["expanded_info"])
return processed