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