pycoze 0.1.248__tar.gz → 0.1.249__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.248 → pycoze-0.1.249}/PKG-INFO +1 -1
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +2 -1
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.248 → pycoze-0.1.249}/setup.py +1 -1
- {pycoze-0.1.248 → pycoze-0.1.249}/LICENSE +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/README.md +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ai/llm/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ai/llm/chat.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ai/llm/text_to_image_prompt.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ai/llm/think.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/reference/workflow.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.248 → pycoze-0.1.249}/setup.cfg +0 -0
@@ -34,7 +34,7 @@ def get_tools(last_message):
|
|
34
34
|
if "tool_calls" in last_message.additional_kwargs:
|
35
35
|
return last_message.additional_kwargs["tool_calls"]
|
36
36
|
else:
|
37
|
-
tool_calls =
|
37
|
+
tool_calls = []
|
38
38
|
if '"name"' in last_message.content and '"parameters":' in last_message.content:
|
39
39
|
print("name 和 paremeters 模式")
|
40
40
|
all_json = get_all_markdown_json(last_message.content)
|
@@ -108,6 +108,7 @@ def create_openai_func_call_agent_executor(
|
|
108
108
|
if last_message.content.strip().endswith("```"):
|
109
109
|
last_message.content = last_message.content + "\n\n" # 避免影响阅读
|
110
110
|
tools = get_tools(last_message)
|
111
|
+
print("tools", tools)
|
111
112
|
if last_message.tool_calls or tools:
|
112
113
|
return 'continue'
|
113
114
|
return 'end'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|