pycoze 0.1.258__tar.gz → 0.1.259__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.259}/PKG-INFO +1 -1
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/api/lib/window_cls.py +2 -1
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.258 → pycoze-0.1.259}/setup.py +1 -1
- {pycoze-0.1.258 → pycoze-0.1.259}/LICENSE +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/README.md +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ai/llm/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ai/llm/chat.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ai/llm/text_to_image_prompt.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ai/llm/think.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/api/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/api/api.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/api/lib/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/reference/workflow.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/utils/socket.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.258 → pycoze-0.1.259}/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})
|
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
|
File without changes
|
File without changes
|