pycoze 0.1.257__tar.gz → 0.1.258__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.257 → pycoze-0.1.258}/PKG-INFO +1 -1
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/api/lib/window_cls.py +2 -8
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.257 → pycoze-0.1.258}/setup.py +1 -1
- {pycoze-0.1.257 → pycoze-0.1.258}/LICENSE +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/README.md +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ai/llm/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ai/llm/chat.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ai/llm/text_to_image_prompt.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ai/llm/think.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/api/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/api/api.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/api/lib/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/reference/workflow.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/utils/socket.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.257 → pycoze-0.1.258}/setup.cfg +0 -0
@@ -17,14 +17,8 @@ class WindowCls:
|
|
17
17
|
message = repr(message)
|
18
18
|
socket.post("append-msg", {"message": message, "type": type})
|
19
19
|
|
20
|
-
def
|
21
|
-
socket.
|
22
|
-
|
23
|
-
def screenshot(self, name):
|
24
|
-
socket.post("screenshot", {"name": name})
|
25
|
-
|
26
|
-
def confirm(self, message: str) -> bool:
|
27
|
-
return socket.post_and_recv_result("confirm", {"message": message})
|
20
|
+
def confirm(self, title:str, message: str) -> bool:
|
21
|
+
return socket.post_and_recv_result("confirm", {"title":title, "message": message})
|
28
22
|
|
29
23
|
def maximize(self):
|
30
24
|
socket.post("maximize", {})
|
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
|