pycoze 0.1.107__py3-none-any.whl → 0.1.108__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycoze/access/bot_for_bot.py +3 -2
- {pycoze-0.1.107.dist-info → pycoze-0.1.108.dist-info}/METADATA +1 -1
- {pycoze-0.1.107.dist-info → pycoze-0.1.108.dist-info}/RECORD +6 -6
- {pycoze-0.1.107.dist-info → pycoze-0.1.108.dist-info}/LICENSE +0 -0
- {pycoze-0.1.107.dist-info → pycoze-0.1.108.dist-info}/WHEEL +0 -0
- {pycoze-0.1.107.dist-info → pycoze-0.1.108.dist-info}/top_level.txt +0 -0
pycoze/access/bot_for_bot.py
CHANGED
@@ -25,13 +25,13 @@ def import_bot(bot_id):
|
|
25
25
|
name = info["name"]
|
26
26
|
module = importlib.import_module("bot_function")
|
27
27
|
chat_func = getattr(module, "chat")
|
28
|
-
random_name = "bot_" + bot_id[-
|
28
|
+
random_name = "bot_" + bot_id[-8:]
|
29
29
|
# 定义函数的内容
|
30
30
|
function_code = f"""
|
31
31
|
def {random_name}(command:str) -> str:
|
32
32
|
\"\"\"
|
33
33
|
本函数可以让你与虚拟人角色({name})进行交互。
|
34
|
-
|
34
|
+
该函数接收一个指令字符串,并返回虚拟人({name})执行该指令后的结果。
|
35
35
|
|
36
36
|
Args:
|
37
37
|
command: 需要执行的指令字符串。
|
@@ -42,6 +42,7 @@ def {random_name}(command:str) -> str:
|
|
42
42
|
return chat_func(command)
|
43
43
|
"""
|
44
44
|
exec(function_code)
|
45
|
+
print("docstring", eval(random_name).__doc__)
|
45
46
|
return wrapped_func(to_agent_tool(eval(random_name)), module_path)
|
46
47
|
except Exception as e:
|
47
48
|
print(f"Error loading bot {bot_id}: {e}")
|
@@ -1,7 +1,7 @@
|
|
1
1
|
pycoze/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
pycoze/module.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
pycoze/access/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
pycoze/access/bot_for_bot.py,sha256=
|
4
|
+
pycoze/access/bot_for_bot.py,sha256=Db6hvA1da5I3WjpVMAnOInFHWqWrQ9c0f7KGSWsMz-0,1651
|
5
5
|
pycoze/access/lib.py,sha256=QGBpyHlAJgmxTvlzANi6KR0VwsXYc0ecwFRGz3cUx0c,1919
|
6
6
|
pycoze/access/tool_for_bot.py,sha256=mAx3dPbZpU_FWlK6uxoWqHbduuNM_EQU8kBmzEKkccE,1339
|
7
7
|
pycoze/ai/__init__.py,sha256=odM2lgYSnApxw4AzLV_5AyaxL5_MLfydOSB1VmLGFyA,75
|
@@ -22,8 +22,8 @@ pycoze/ui/ui_def.py,sha256=UhhU_yB3GV9ISbvTWT48hsHPHI250BhMILh6bu5Uioo,4206
|
|
22
22
|
pycoze/utils/__init__.py,sha256=TNJhFfY7JYdLlzuP9GvgxfNXUtbgH_NUUJSqHXCxJn4,78
|
23
23
|
pycoze/utils/arg.py,sha256=kA3KBQzXc2WlH5XbF8kfikfpqljiKaW7oY_GE4Qyffc,753
|
24
24
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
25
|
-
pycoze-0.1.
|
26
|
-
pycoze-0.1.
|
27
|
-
pycoze-0.1.
|
28
|
-
pycoze-0.1.
|
29
|
-
pycoze-0.1.
|
25
|
+
pycoze-0.1.108.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
26
|
+
pycoze-0.1.108.dist-info/METADATA,sha256=LijNZLYLxPXixMhq0BdYS2ZKLQFoAdCVAHIXeTDiSPU,726
|
27
|
+
pycoze-0.1.108.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
28
|
+
pycoze-0.1.108.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
29
|
+
pycoze-0.1.108.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|