pycoze 0.1.262__tar.gz → 0.1.264__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.262 → pycoze-0.1.264}/PKG-INFO +1 -1
- pycoze-0.1.262/pycoze/api/lib/api.py → pycoze-0.1.264/pycoze/api/__init__.py +9 -7
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze.egg-info/SOURCES.txt +0 -1
- {pycoze-0.1.262 → pycoze-0.1.264}/setup.py +1 -1
- pycoze-0.1.262/pycoze/api/__init__.py +0 -11
- {pycoze-0.1.262 → pycoze-0.1.264}/LICENSE +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/README.md +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ai/llm/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ai/llm/chat.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ai/llm/text_to_image_prompt.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ai/llm/think.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/api/lib/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/api/lib/window_cls.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/reference/workflow.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/utils/socket.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.262 → pycoze-0.1.264}/setup.cfg +0 -0
@@ -1,7 +1,9 @@
|
|
1
|
-
from .lib.window_cls import WindowCls
|
2
|
-
|
3
|
-
class Api:
|
4
|
-
def __init__(self) -> None:
|
5
|
-
self.window = WindowCls()
|
6
|
-
|
7
|
-
oper = Api()
|
1
|
+
from .lib.window_cls import WindowCls
|
2
|
+
|
3
|
+
class Api:
|
4
|
+
def __init__(self) -> None:
|
5
|
+
self.window = WindowCls()
|
6
|
+
|
7
|
+
oper = Api()
|
8
|
+
|
9
|
+
# from ps_view import ViewCls, WebsiteViewCls, FileViewCls, DirectoryViewCls, WorkflowCls
|
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
|