pycoze 0.1.180__tar.gz → 0.1.181__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.180 → pycoze-0.1.181}/PKG-INFO +1 -1
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent_chat.py +1 -4
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/utils/env.py +1 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.180 → pycoze-0.1.181}/setup.py +1 -1
- {pycoze-0.1.180 → pycoze-0.1.181}/LICENSE +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/README.md +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.180 → pycoze-0.1.181}/setup.cfg +0 -0
@@ -7,10 +7,7 @@ from pycoze.reference.bot import ref_bot
|
|
7
7
|
from pycoze.reference.tool import ref_tools
|
8
8
|
from langchain_core.utils.function_calling import convert_to_openai_tool
|
9
9
|
|
10
|
-
|
11
|
-
llm_file = params["appPath"] + "/JsonStorage/llm.json"
|
12
|
-
with open(llm_file, "r", encoding="utf-8") as f:
|
13
|
-
cfg = json.load(f)
|
10
|
+
cfg = utils.read_json_file("llm.json")
|
14
11
|
|
15
12
|
|
16
13
|
def load_role_setting(bot_setting_file: str):
|
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
|