pycoze 0.1.258__tar.gz → 0.1.260__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.258 → pycoze-0.1.260}/PKG-INFO +1 -1
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/api/__init__.py +1 -1
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/api/lib/window_cls.py +2 -1
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze.egg-info/SOURCES.txt +1 -1
- {pycoze-0.1.258 → pycoze-0.1.260}/setup.py +1 -1
- {pycoze-0.1.258 → pycoze-0.1.260}/LICENSE +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/README.md +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ai/llm/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ai/llm/chat.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ai/llm/text_to_image_prompt.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ai/llm/think.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/api/lib/__init__.py +0 -0
- {pycoze-0.1.258/pycoze/api → pycoze-0.1.260/pycoze/api/lib}/api.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/reference/workflow.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/utils/socket.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.258 → pycoze-0.1.260}/setup.cfg +0 -0
@@ -12,7 +12,8 @@ class WindowCls:
|
|
12
12
|
result = socket.post_and_recv_result("get-selected-text", {})
|
13
13
|
return result
|
14
14
|
|
15
|
-
def append_msg(self, message: str, type='info'):
|
15
|
+
def append_msg(self, message: str, type: str = 'info'):
|
16
|
+
assert type in ['info', 'warning', 'success', 'error'], 'type must be info, warning, success or error'
|
16
17
|
if not isinstance(message, str):
|
17
18
|
message = repr(message)
|
18
19
|
socket.post("append-msg", {"message": message, "type": type})
|
@@ -13,8 +13,8 @@ pycoze/ai/llm/chat.py
|
|
13
13
|
pycoze/ai/llm/text_to_image_prompt.py
|
14
14
|
pycoze/ai/llm/think.py
|
15
15
|
pycoze/api/__init__.py
|
16
|
-
pycoze/api/api.py
|
17
16
|
pycoze/api/lib/__init__.py
|
17
|
+
pycoze/api/lib/api.py
|
18
18
|
pycoze/api/lib/window_cls.py
|
19
19
|
pycoze/bot/__init__.py
|
20
20
|
pycoze/bot/agent_chat.py
|
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
|
File without changes
|
File without changes
|
File without changes
|