operator-use 0.1.0__py3-none-any.whl
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/__init__.py +1 -0
- operator_use/accessibility/__init__.py +0 -0
- operator_use/accessibility/macos/__init__.py +5 -0
- operator_use/accessibility/macos/ax/README.md +941 -0
- operator_use/accessibility/macos/ax/__init__.py +228 -0
- operator_use/accessibility/macos/ax/controls.py +1971 -0
- operator_use/accessibility/macos/ax/core.py +1682 -0
- operator_use/accessibility/macos/ax/enums.py +870 -0
- operator_use/accessibility/macos/ax/events.py +383 -0
- operator_use/accessibility/macos/ax/patterns.py +468 -0
- operator_use/accessibility/macos/ax/py.typed +0 -0
- operator_use/accessibility/windows/__init__.py +3 -0
- operator_use/accessibility/windows/uia/__init__.py +5 -0
- operator_use/accessibility/windows/uia/controls.py +4520 -0
- operator_use/accessibility/windows/uia/core.py +2205 -0
- operator_use/accessibility/windows/uia/enums.py +1955 -0
- operator_use/accessibility/windows/uia/events.py +83 -0
- operator_use/accessibility/windows/uia/patterns.py +2084 -0
- operator_use/accessibility/windows/vdm/__init__.py +1 -0
- operator_use/accessibility/windows/vdm/core.py +1121 -0
- operator_use/agent/__init__.py +7 -0
- operator_use/agent/computer_use/__init__.py +21 -0
- operator_use/agent/computer_use/macos/__init__.py +0 -0
- operator_use/agent/computer_use/macos/desktop/__init__.py +0 -0
- operator_use/agent/computer_use/macos/desktop/config.py +28 -0
- operator_use/agent/computer_use/macos/desktop/service.py +301 -0
- operator_use/agent/computer_use/macos/desktop/views.py +70 -0
- operator_use/agent/computer_use/macos/tree/__init__.py +0 -0
- operator_use/agent/computer_use/macos/tree/config.py +93 -0
- operator_use/agent/computer_use/macos/tree/service.py +227 -0
- operator_use/agent/computer_use/macos/tree/views.py +155 -0
- operator_use/agent/computer_use/macos/watchdog/__init__.py +3 -0
- operator_use/agent/computer_use/macos/watchdog/service.py +96 -0
- operator_use/agent/computer_use/windows/__init__.py +0 -0
- operator_use/agent/computer_use/windows/desktop/__init__.py +0 -0
- operator_use/agent/computer_use/windows/desktop/config.py +23 -0
- operator_use/agent/computer_use/windows/desktop/service.py +333 -0
- operator_use/agent/computer_use/windows/desktop/utils.py +20 -0
- operator_use/agent/computer_use/windows/desktop/views.py +97 -0
- operator_use/agent/computer_use/windows/tree/__init__.py +0 -0
- operator_use/agent/computer_use/windows/tree/cache_utils.py +163 -0
- operator_use/agent/computer_use/windows/tree/config.py +79 -0
- operator_use/agent/computer_use/windows/tree/service.py +619 -0
- operator_use/agent/computer_use/windows/tree/utils.py +22 -0
- operator_use/agent/computer_use/windows/tree/views.py +147 -0
- operator_use/agent/computer_use/windows/watchdog/__init__.py +6 -0
- operator_use/agent/computer_use/windows/watchdog/event_handlers.py +55 -0
- operator_use/agent/computer_use/windows/watchdog/service.py +206 -0
- operator_use/agent/context.py +167 -0
- operator_use/agent/memory.py +19 -0
- operator_use/agent/service.py +456 -0
- operator_use/agent/skills/__init__.py +3 -0
- operator_use/agent/skills/service.py +105 -0
- operator_use/agent/tools/__init__.py +7 -0
- operator_use/agent/tools/builtin/__init__.py +26 -0
- operator_use/agent/tools/builtin/channel.py +80 -0
- operator_use/agent/tools/builtin/cron.py +181 -0
- operator_use/agent/tools/builtin/filesystem.py +133 -0
- operator_use/agent/tools/builtin/message.py +304 -0
- operator_use/agent/tools/builtin/patch.py +203 -0
- operator_use/agent/tools/builtin/process.py +140 -0
- operator_use/agent/tools/builtin/restart.py +74 -0
- operator_use/agent/tools/builtin/subagents.py +125 -0
- operator_use/agent/tools/builtin/terminal.py +101 -0
- operator_use/agent/tools/builtin/web.py +140 -0
- operator_use/agent/tools/computer_use/__init__.py +54 -0
- operator_use/agent/tools/computer_use/browser.py +0 -0
- operator_use/agent/tools/computer_use/macos.py +376 -0
- operator_use/agent/tools/computer_use/windows.py +302 -0
- operator_use/agent/tools/registry.py +90 -0
- operator_use/bus/__init__.py +14 -0
- operator_use/bus/service.py +40 -0
- operator_use/bus/views.py +100 -0
- operator_use/cli/__init__.py +14 -0
- operator_use/cli/commands.py +495 -0
- operator_use/cli/runner.py +346 -0
- operator_use/cli/setup.py +262 -0
- operator_use/cli/tui.py +108 -0
- operator_use/config/__init__.py +29 -0
- operator_use/config/service.py +166 -0
- operator_use/crons/__init__.py +3 -0
- operator_use/crons/service.py +342 -0
- operator_use/crons/views.py +42 -0
- operator_use/gateway/__init__.py +6 -0
- operator_use/gateway/channels/__init__.py +15 -0
- operator_use/gateway/channels/base.py +53 -0
- operator_use/gateway/channels/config.py +56 -0
- operator_use/gateway/channels/discord.py +534 -0
- operator_use/gateway/channels/mqtt.py +161 -0
- operator_use/gateway/channels/slack.py +477 -0
- operator_use/gateway/channels/telegram.py +801 -0
- operator_use/gateway/service.py +114 -0
- operator_use/heartbeat/__init__.py +5 -0
- operator_use/heartbeat/service.py +88 -0
- operator_use/messages/__init__.py +19 -0
- operator_use/messages/service.py +181 -0
- operator_use/process/__init__.py +4 -0
- operator_use/process/service.py +120 -0
- operator_use/process/views.py +28 -0
- operator_use/providers/__init__.py +134 -0
- operator_use/providers/anthropic/__init__.py +3 -0
- operator_use/providers/anthropic/llm.py +577 -0
- operator_use/providers/antigravity/__init__.py +3 -0
- operator_use/providers/antigravity/auth.py +298 -0
- operator_use/providers/antigravity/llm.py +561 -0
- operator_use/providers/azure_openai/__init__.py +3 -0
- operator_use/providers/azure_openai/llm.py +517 -0
- operator_use/providers/base.py +177 -0
- operator_use/providers/cerebras/__init__.py +3 -0
- operator_use/providers/cerebras/llm.py +515 -0
- operator_use/providers/claude_code/__init__.py +3 -0
- operator_use/providers/claude_code/llm.py +199 -0
- operator_use/providers/codex/__init__.py +3 -0
- operator_use/providers/codex/llm.py +629 -0
- operator_use/providers/deepgram/__init__.py +4 -0
- operator_use/providers/deepgram/stt.py +113 -0
- operator_use/providers/deepgram/tts.py +129 -0
- operator_use/providers/deepseek/__init__.py +3 -0
- operator_use/providers/deepseek/llm.py +47 -0
- operator_use/providers/elevenlabs/__init__.py +4 -0
- operator_use/providers/elevenlabs/stt.py +116 -0
- operator_use/providers/elevenlabs/tts.py +169 -0
- operator_use/providers/events.py +44 -0
- operator_use/providers/google/__init__.py +5 -0
- operator_use/providers/google/llm.py +557 -0
- operator_use/providers/google/stt.py +138 -0
- operator_use/providers/google/tts.py +146 -0
- operator_use/providers/groq/__init__.py +3 -0
- operator_use/providers/groq/llm.py +545 -0
- operator_use/providers/groq/stt.py +107 -0
- operator_use/providers/groq/tts.py +111 -0
- operator_use/providers/litellm/__init__.py +3 -0
- operator_use/providers/litellm/llm.py +536 -0
- operator_use/providers/mistral/__init__.py +1 -0
- operator_use/providers/mistral/llm.py +579 -0
- operator_use/providers/nvidia/__init__.py +3 -0
- operator_use/providers/nvidia/llm.py +43 -0
- operator_use/providers/ollama/__init__.py +1 -0
- operator_use/providers/ollama/llm.py +423 -0
- operator_use/providers/open_router/__init__.py +3 -0
- operator_use/providers/open_router/llm.py +515 -0
- operator_use/providers/openai/__init__.py +5 -0
- operator_use/providers/openai/llm.py +534 -0
- operator_use/providers/openai/stt.py +106 -0
- operator_use/providers/openai/tts.py +107 -0
- operator_use/providers/sarvam/__init__.py +4 -0
- operator_use/providers/sarvam/stt.py +86 -0
- operator_use/providers/sarvam/tts.py +107 -0
- operator_use/providers/views.py +19 -0
- operator_use/providers/vllm/__init__.py +3 -0
- operator_use/providers/vllm/llm.py +593 -0
- operator_use/session/__init__.py +6 -0
- operator_use/session/service.py +118 -0
- operator_use/session/views.py +32 -0
- operator_use/skills/skill-creator/SKILL.md +371 -0
- operator_use/subagent/__init__.py +4 -0
- operator_use/subagent/service.py +80 -0
- operator_use/subagent/subagent.py +103 -0
- operator_use/subagent/views.py +15 -0
- operator_use/templates/AGENTS.md +257 -0
- operator_use/templates/CODE.md +76 -0
- operator_use/templates/HEARTBEAT.md +15 -0
- operator_use/templates/SOUL.md +48 -0
- operator_use/templates/USER.md +49 -0
- operator_use/templates/memory/MEMORY.md +23 -0
- operator_use/tools/__init__.py +3 -0
- operator_use/tools/service.py +132 -0
- operator_use/utils/__init__.py +5 -0
- operator_use/utils/helper.py +28 -0
- operator_use-0.1.0.dist-info/METADATA +42 -0
- operator_use-0.1.0.dist-info/RECORD +173 -0
- operator_use-0.1.0.dist-info/WHEEL +4 -0
- operator_use-0.1.0.dist-info/entry_points.txt +3 -0
operator_use/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Operator - LLM providers and message models."""
|
|
File without changes
|