operator-use 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- operator_use-0.1.0/.gitignore +12 -0
- operator_use-0.1.0/PKG-INFO +42 -0
- operator_use-0.1.0/README.md +0 -0
- operator_use-0.1.0/operator_use/__init__.py +1 -0
- operator_use-0.1.0/operator_use/accessibility/__init__.py +0 -0
- operator_use-0.1.0/operator_use/accessibility/macos/__init__.py +5 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/README.md +941 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/__init__.py +228 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/controls.py +1971 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/core.py +1682 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/enums.py +870 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/events.py +383 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/patterns.py +468 -0
- operator_use-0.1.0/operator_use/accessibility/macos/ax/py.typed +0 -0
- operator_use-0.1.0/operator_use/accessibility/windows/__init__.py +3 -0
- operator_use-0.1.0/operator_use/accessibility/windows/uia/__init__.py +5 -0
- operator_use-0.1.0/operator_use/accessibility/windows/uia/controls.py +4520 -0
- operator_use-0.1.0/operator_use/accessibility/windows/uia/core.py +2205 -0
- operator_use-0.1.0/operator_use/accessibility/windows/uia/enums.py +1955 -0
- operator_use-0.1.0/operator_use/accessibility/windows/uia/events.py +83 -0
- operator_use-0.1.0/operator_use/accessibility/windows/uia/patterns.py +2084 -0
- operator_use-0.1.0/operator_use/accessibility/windows/vdm/__init__.py +1 -0
- operator_use-0.1.0/operator_use/accessibility/windows/vdm/core.py +1121 -0
- operator_use-0.1.0/operator_use/agent/__init__.py +7 -0
- operator_use-0.1.0/operator_use/agent/computer_use/__init__.py +21 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/__init__.py +0 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/__init__.py +0 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/config.py +28 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/service.py +301 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/views.py +70 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/__init__.py +0 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/config.py +93 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/service.py +227 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/views.py +155 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/watchdog/__init__.py +3 -0
- operator_use-0.1.0/operator_use/agent/computer_use/macos/watchdog/service.py +96 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/__init__.py +0 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/__init__.py +0 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/config.py +23 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/service.py +333 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/utils.py +20 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/views.py +97 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/__init__.py +0 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/cache_utils.py +163 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/config.py +79 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/service.py +619 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/utils.py +22 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/views.py +147 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/watchdog/__init__.py +6 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/watchdog/event_handlers.py +55 -0
- operator_use-0.1.0/operator_use/agent/computer_use/windows/watchdog/service.py +206 -0
- operator_use-0.1.0/operator_use/agent/context.py +167 -0
- operator_use-0.1.0/operator_use/agent/memory.py +19 -0
- operator_use-0.1.0/operator_use/agent/service.py +456 -0
- operator_use-0.1.0/operator_use/agent/skills/__init__.py +3 -0
- operator_use-0.1.0/operator_use/agent/skills/service.py +105 -0
- operator_use-0.1.0/operator_use/agent/tools/__init__.py +7 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/__init__.py +26 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/channel.py +80 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/cron.py +181 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/filesystem.py +133 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/message.py +304 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/patch.py +203 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/process.py +140 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/restart.py +74 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/subagents.py +125 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/terminal.py +101 -0
- operator_use-0.1.0/operator_use/agent/tools/builtin/web.py +140 -0
- operator_use-0.1.0/operator_use/agent/tools/computer_use/__init__.py +54 -0
- operator_use-0.1.0/operator_use/agent/tools/computer_use/browser.py +0 -0
- operator_use-0.1.0/operator_use/agent/tools/computer_use/macos.py +376 -0
- operator_use-0.1.0/operator_use/agent/tools/computer_use/windows.py +302 -0
- operator_use-0.1.0/operator_use/agent/tools/registry.py +90 -0
- operator_use-0.1.0/operator_use/bus/__init__.py +14 -0
- operator_use-0.1.0/operator_use/bus/service.py +40 -0
- operator_use-0.1.0/operator_use/bus/views.py +100 -0
- operator_use-0.1.0/operator_use/cli/__init__.py +14 -0
- operator_use-0.1.0/operator_use/cli/commands.py +495 -0
- operator_use-0.1.0/operator_use/cli/runner.py +346 -0
- operator_use-0.1.0/operator_use/cli/setup.py +262 -0
- operator_use-0.1.0/operator_use/cli/tui.py +108 -0
- operator_use-0.1.0/operator_use/config/__init__.py +29 -0
- operator_use-0.1.0/operator_use/config/service.py +166 -0
- operator_use-0.1.0/operator_use/crons/__init__.py +3 -0
- operator_use-0.1.0/operator_use/crons/service.py +342 -0
- operator_use-0.1.0/operator_use/crons/views.py +42 -0
- operator_use-0.1.0/operator_use/gateway/__init__.py +6 -0
- operator_use-0.1.0/operator_use/gateway/channels/__init__.py +15 -0
- operator_use-0.1.0/operator_use/gateway/channels/base.py +53 -0
- operator_use-0.1.0/operator_use/gateway/channels/config.py +56 -0
- operator_use-0.1.0/operator_use/gateway/channels/discord.py +534 -0
- operator_use-0.1.0/operator_use/gateway/channels/mqtt.py +161 -0
- operator_use-0.1.0/operator_use/gateway/channels/slack.py +477 -0
- operator_use-0.1.0/operator_use/gateway/channels/telegram.py +801 -0
- operator_use-0.1.0/operator_use/gateway/service.py +114 -0
- operator_use-0.1.0/operator_use/heartbeat/__init__.py +5 -0
- operator_use-0.1.0/operator_use/heartbeat/service.py +88 -0
- operator_use-0.1.0/operator_use/messages/__init__.py +19 -0
- operator_use-0.1.0/operator_use/messages/service.py +181 -0
- operator_use-0.1.0/operator_use/process/__init__.py +4 -0
- operator_use-0.1.0/operator_use/process/service.py +120 -0
- operator_use-0.1.0/operator_use/process/views.py +28 -0
- operator_use-0.1.0/operator_use/providers/__init__.py +134 -0
- operator_use-0.1.0/operator_use/providers/anthropic/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/anthropic/llm.py +577 -0
- operator_use-0.1.0/operator_use/providers/antigravity/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/antigravity/auth.py +298 -0
- operator_use-0.1.0/operator_use/providers/antigravity/llm.py +561 -0
- operator_use-0.1.0/operator_use/providers/azure_openai/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/azure_openai/llm.py +517 -0
- operator_use-0.1.0/operator_use/providers/base.py +177 -0
- operator_use-0.1.0/operator_use/providers/cerebras/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/cerebras/llm.py +515 -0
- operator_use-0.1.0/operator_use/providers/claude_code/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/claude_code/llm.py +199 -0
- operator_use-0.1.0/operator_use/providers/codex/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/codex/llm.py +629 -0
- operator_use-0.1.0/operator_use/providers/deepgram/__init__.py +4 -0
- operator_use-0.1.0/operator_use/providers/deepgram/stt.py +113 -0
- operator_use-0.1.0/operator_use/providers/deepgram/tts.py +129 -0
- operator_use-0.1.0/operator_use/providers/deepseek/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/deepseek/llm.py +47 -0
- operator_use-0.1.0/operator_use/providers/elevenlabs/__init__.py +4 -0
- operator_use-0.1.0/operator_use/providers/elevenlabs/stt.py +116 -0
- operator_use-0.1.0/operator_use/providers/elevenlabs/tts.py +169 -0
- operator_use-0.1.0/operator_use/providers/events.py +44 -0
- operator_use-0.1.0/operator_use/providers/google/__init__.py +5 -0
- operator_use-0.1.0/operator_use/providers/google/llm.py +557 -0
- operator_use-0.1.0/operator_use/providers/google/stt.py +138 -0
- operator_use-0.1.0/operator_use/providers/google/tts.py +146 -0
- operator_use-0.1.0/operator_use/providers/groq/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/groq/llm.py +545 -0
- operator_use-0.1.0/operator_use/providers/groq/stt.py +107 -0
- operator_use-0.1.0/operator_use/providers/groq/tts.py +111 -0
- operator_use-0.1.0/operator_use/providers/litellm/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/litellm/llm.py +536 -0
- operator_use-0.1.0/operator_use/providers/mistral/__init__.py +1 -0
- operator_use-0.1.0/operator_use/providers/mistral/llm.py +579 -0
- operator_use-0.1.0/operator_use/providers/nvidia/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/nvidia/llm.py +43 -0
- operator_use-0.1.0/operator_use/providers/ollama/__init__.py +1 -0
- operator_use-0.1.0/operator_use/providers/ollama/llm.py +423 -0
- operator_use-0.1.0/operator_use/providers/open_router/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/open_router/llm.py +515 -0
- operator_use-0.1.0/operator_use/providers/openai/__init__.py +5 -0
- operator_use-0.1.0/operator_use/providers/openai/llm.py +534 -0
- operator_use-0.1.0/operator_use/providers/openai/stt.py +106 -0
- operator_use-0.1.0/operator_use/providers/openai/tts.py +107 -0
- operator_use-0.1.0/operator_use/providers/sarvam/__init__.py +4 -0
- operator_use-0.1.0/operator_use/providers/sarvam/stt.py +86 -0
- operator_use-0.1.0/operator_use/providers/sarvam/tts.py +107 -0
- operator_use-0.1.0/operator_use/providers/views.py +19 -0
- operator_use-0.1.0/operator_use/providers/vllm/__init__.py +3 -0
- operator_use-0.1.0/operator_use/providers/vllm/llm.py +593 -0
- operator_use-0.1.0/operator_use/session/__init__.py +6 -0
- operator_use-0.1.0/operator_use/session/service.py +118 -0
- operator_use-0.1.0/operator_use/session/views.py +32 -0
- operator_use-0.1.0/operator_use/skills/skill-creator/SKILL.md +371 -0
- operator_use-0.1.0/operator_use/subagent/__init__.py +4 -0
- operator_use-0.1.0/operator_use/subagent/service.py +80 -0
- operator_use-0.1.0/operator_use/subagent/subagent.py +103 -0
- operator_use-0.1.0/operator_use/subagent/views.py +15 -0
- operator_use-0.1.0/operator_use/templates/AGENTS.md +257 -0
- operator_use-0.1.0/operator_use/templates/CODE.md +76 -0
- operator_use-0.1.0/operator_use/templates/HEARTBEAT.md +15 -0
- operator_use-0.1.0/operator_use/templates/SOUL.md +48 -0
- operator_use-0.1.0/operator_use/templates/USER.md +49 -0
- operator_use-0.1.0/operator_use/templates/memory/MEMORY.md +23 -0
- operator_use-0.1.0/operator_use/tools/__init__.py +3 -0
- operator_use-0.1.0/operator_use/tools/service.py +132 -0
- operator_use-0.1.0/operator_use/utils/__init__.py +5 -0
- operator_use-0.1.0/operator_use/utils/helper.py +28 -0
- operator_use-0.1.0/pyproject.toml +56 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: operator-use
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: LLM providers and message models (from Windows-Use, no streaming)
|
|
5
|
+
Requires-Python: >=3.13
|
|
6
|
+
Requires-Dist: aiohttp>=3.9.0
|
|
7
|
+
Requires-Dist: aiomqtt>=2.0.0
|
|
8
|
+
Requires-Dist: anthropic>=0.68.1
|
|
9
|
+
Requires-Dist: cerebras-cloud-sdk>=1.50.1
|
|
10
|
+
Requires-Dist: comtypes>=1.4.15; sys_platform == 'win32'
|
|
11
|
+
Requires-Dist: croniter>=2.0.0
|
|
12
|
+
Requires-Dist: ddgs>=9.11.1
|
|
13
|
+
Requires-Dist: discord-py>=2.0.0
|
|
14
|
+
Requires-Dist: google-genai>=1.45.0
|
|
15
|
+
Requires-Dist: groq>=0.29.0
|
|
16
|
+
Requires-Dist: httpx>=0.28.1
|
|
17
|
+
Requires-Dist: inquirerpy>=0.3.4
|
|
18
|
+
Requires-Dist: ipykernel>=7.2.0
|
|
19
|
+
Requires-Dist: lark-oapi>=1.5.3
|
|
20
|
+
Requires-Dist: litellm>=1.72.0
|
|
21
|
+
Requires-Dist: markdownify>=0.13.1
|
|
22
|
+
Requires-Dist: mistralai==1.9.11
|
|
23
|
+
Requires-Dist: ollama>=0.5.1
|
|
24
|
+
Requires-Dist: openai>=1.93.0
|
|
25
|
+
Requires-Dist: pillow>=11.2.1
|
|
26
|
+
Requires-Dist: psutil>=7.0.0
|
|
27
|
+
Requires-Dist: pydantic-settings>=2.13.1
|
|
28
|
+
Requires-Dist: pydantic>=2.11.7
|
|
29
|
+
Requires-Dist: pynacl>=1.6.2
|
|
30
|
+
Requires-Dist: pyobjc-framework-applicationservices>=10.0; sys_platform == 'darwin'
|
|
31
|
+
Requires-Dist: pyobjc-framework-cocoa>=10.0; sys_platform == 'darwin'
|
|
32
|
+
Requires-Dist: pyobjc-framework-quartz>=10.0; sys_platform == 'darwin'
|
|
33
|
+
Requires-Dist: python-telegram-bot>=22.0
|
|
34
|
+
Requires-Dist: pywin32>=311; sys_platform == 'win32'
|
|
35
|
+
Requires-Dist: qq-botpy>=1.2.1
|
|
36
|
+
Requires-Dist: questionary>=2.1.1
|
|
37
|
+
Requires-Dist: rich>=14.3.3
|
|
38
|
+
Requires-Dist: sarvamai>=0.1.26
|
|
39
|
+
Requires-Dist: slack-bolt>=1.18.0
|
|
40
|
+
Requires-Dist: tabulate>=0.9.0
|
|
41
|
+
Requires-Dist: twitchio>=2.0.0
|
|
42
|
+
Requires-Dist: typer>=0.24.1
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Operator - LLM providers and message models."""
|
|
File without changes
|