pycoze 0.1.148__tar.gz → 0.1.149__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.148 → pycoze-0.1.149}/PKG-INFO +1 -1
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/reference/lib.py +3 -1
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.148 → pycoze-0.1.149}/setup.py +1 -1
- {pycoze-0.1.148 → pycoze-0.1.149}/LICENSE +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/README.md +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/module.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.148 → pycoze-0.1.149}/setup.cfg +0 -0
@@ -59,7 +59,9 @@ def wrapped_func(item, module_path):
|
|
59
59
|
with ChangeDirectoryAndPath(module_path):
|
60
60
|
result = original_tool_function(*args, **kwargs)
|
61
61
|
try:
|
62
|
-
|
62
|
+
if isinstance(result, types.GeneratorType):
|
63
|
+
result = list(result)
|
64
|
+
print(f"{item.name} 调用完毕,结果为:", result)
|
63
65
|
except:
|
64
66
|
pass
|
65
67
|
return result
|
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
|