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.
Files changed (173) hide show
  1. operator_use-0.1.0/.gitignore +12 -0
  2. operator_use-0.1.0/PKG-INFO +42 -0
  3. operator_use-0.1.0/README.md +0 -0
  4. operator_use-0.1.0/operator_use/__init__.py +1 -0
  5. operator_use-0.1.0/operator_use/accessibility/__init__.py +0 -0
  6. operator_use-0.1.0/operator_use/accessibility/macos/__init__.py +5 -0
  7. operator_use-0.1.0/operator_use/accessibility/macos/ax/README.md +941 -0
  8. operator_use-0.1.0/operator_use/accessibility/macos/ax/__init__.py +228 -0
  9. operator_use-0.1.0/operator_use/accessibility/macos/ax/controls.py +1971 -0
  10. operator_use-0.1.0/operator_use/accessibility/macos/ax/core.py +1682 -0
  11. operator_use-0.1.0/operator_use/accessibility/macos/ax/enums.py +870 -0
  12. operator_use-0.1.0/operator_use/accessibility/macos/ax/events.py +383 -0
  13. operator_use-0.1.0/operator_use/accessibility/macos/ax/patterns.py +468 -0
  14. operator_use-0.1.0/operator_use/accessibility/macos/ax/py.typed +0 -0
  15. operator_use-0.1.0/operator_use/accessibility/windows/__init__.py +3 -0
  16. operator_use-0.1.0/operator_use/accessibility/windows/uia/__init__.py +5 -0
  17. operator_use-0.1.0/operator_use/accessibility/windows/uia/controls.py +4520 -0
  18. operator_use-0.1.0/operator_use/accessibility/windows/uia/core.py +2205 -0
  19. operator_use-0.1.0/operator_use/accessibility/windows/uia/enums.py +1955 -0
  20. operator_use-0.1.0/operator_use/accessibility/windows/uia/events.py +83 -0
  21. operator_use-0.1.0/operator_use/accessibility/windows/uia/patterns.py +2084 -0
  22. operator_use-0.1.0/operator_use/accessibility/windows/vdm/__init__.py +1 -0
  23. operator_use-0.1.0/operator_use/accessibility/windows/vdm/core.py +1121 -0
  24. operator_use-0.1.0/operator_use/agent/__init__.py +7 -0
  25. operator_use-0.1.0/operator_use/agent/computer_use/__init__.py +21 -0
  26. operator_use-0.1.0/operator_use/agent/computer_use/macos/__init__.py +0 -0
  27. operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/__init__.py +0 -0
  28. operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/config.py +28 -0
  29. operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/service.py +301 -0
  30. operator_use-0.1.0/operator_use/agent/computer_use/macos/desktop/views.py +70 -0
  31. operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/__init__.py +0 -0
  32. operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/config.py +93 -0
  33. operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/service.py +227 -0
  34. operator_use-0.1.0/operator_use/agent/computer_use/macos/tree/views.py +155 -0
  35. operator_use-0.1.0/operator_use/agent/computer_use/macos/watchdog/__init__.py +3 -0
  36. operator_use-0.1.0/operator_use/agent/computer_use/macos/watchdog/service.py +96 -0
  37. operator_use-0.1.0/operator_use/agent/computer_use/windows/__init__.py +0 -0
  38. operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/__init__.py +0 -0
  39. operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/config.py +23 -0
  40. operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/service.py +333 -0
  41. operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/utils.py +20 -0
  42. operator_use-0.1.0/operator_use/agent/computer_use/windows/desktop/views.py +97 -0
  43. operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/__init__.py +0 -0
  44. operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/cache_utils.py +163 -0
  45. operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/config.py +79 -0
  46. operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/service.py +619 -0
  47. operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/utils.py +22 -0
  48. operator_use-0.1.0/operator_use/agent/computer_use/windows/tree/views.py +147 -0
  49. operator_use-0.1.0/operator_use/agent/computer_use/windows/watchdog/__init__.py +6 -0
  50. operator_use-0.1.0/operator_use/agent/computer_use/windows/watchdog/event_handlers.py +55 -0
  51. operator_use-0.1.0/operator_use/agent/computer_use/windows/watchdog/service.py +206 -0
  52. operator_use-0.1.0/operator_use/agent/context.py +167 -0
  53. operator_use-0.1.0/operator_use/agent/memory.py +19 -0
  54. operator_use-0.1.0/operator_use/agent/service.py +456 -0
  55. operator_use-0.1.0/operator_use/agent/skills/__init__.py +3 -0
  56. operator_use-0.1.0/operator_use/agent/skills/service.py +105 -0
  57. operator_use-0.1.0/operator_use/agent/tools/__init__.py +7 -0
  58. operator_use-0.1.0/operator_use/agent/tools/builtin/__init__.py +26 -0
  59. operator_use-0.1.0/operator_use/agent/tools/builtin/channel.py +80 -0
  60. operator_use-0.1.0/operator_use/agent/tools/builtin/cron.py +181 -0
  61. operator_use-0.1.0/operator_use/agent/tools/builtin/filesystem.py +133 -0
  62. operator_use-0.1.0/operator_use/agent/tools/builtin/message.py +304 -0
  63. operator_use-0.1.0/operator_use/agent/tools/builtin/patch.py +203 -0
  64. operator_use-0.1.0/operator_use/agent/tools/builtin/process.py +140 -0
  65. operator_use-0.1.0/operator_use/agent/tools/builtin/restart.py +74 -0
  66. operator_use-0.1.0/operator_use/agent/tools/builtin/subagents.py +125 -0
  67. operator_use-0.1.0/operator_use/agent/tools/builtin/terminal.py +101 -0
  68. operator_use-0.1.0/operator_use/agent/tools/builtin/web.py +140 -0
  69. operator_use-0.1.0/operator_use/agent/tools/computer_use/__init__.py +54 -0
  70. operator_use-0.1.0/operator_use/agent/tools/computer_use/browser.py +0 -0
  71. operator_use-0.1.0/operator_use/agent/tools/computer_use/macos.py +376 -0
  72. operator_use-0.1.0/operator_use/agent/tools/computer_use/windows.py +302 -0
  73. operator_use-0.1.0/operator_use/agent/tools/registry.py +90 -0
  74. operator_use-0.1.0/operator_use/bus/__init__.py +14 -0
  75. operator_use-0.1.0/operator_use/bus/service.py +40 -0
  76. operator_use-0.1.0/operator_use/bus/views.py +100 -0
  77. operator_use-0.1.0/operator_use/cli/__init__.py +14 -0
  78. operator_use-0.1.0/operator_use/cli/commands.py +495 -0
  79. operator_use-0.1.0/operator_use/cli/runner.py +346 -0
  80. operator_use-0.1.0/operator_use/cli/setup.py +262 -0
  81. operator_use-0.1.0/operator_use/cli/tui.py +108 -0
  82. operator_use-0.1.0/operator_use/config/__init__.py +29 -0
  83. operator_use-0.1.0/operator_use/config/service.py +166 -0
  84. operator_use-0.1.0/operator_use/crons/__init__.py +3 -0
  85. operator_use-0.1.0/operator_use/crons/service.py +342 -0
  86. operator_use-0.1.0/operator_use/crons/views.py +42 -0
  87. operator_use-0.1.0/operator_use/gateway/__init__.py +6 -0
  88. operator_use-0.1.0/operator_use/gateway/channels/__init__.py +15 -0
  89. operator_use-0.1.0/operator_use/gateway/channels/base.py +53 -0
  90. operator_use-0.1.0/operator_use/gateway/channels/config.py +56 -0
  91. operator_use-0.1.0/operator_use/gateway/channels/discord.py +534 -0
  92. operator_use-0.1.0/operator_use/gateway/channels/mqtt.py +161 -0
  93. operator_use-0.1.0/operator_use/gateway/channels/slack.py +477 -0
  94. operator_use-0.1.0/operator_use/gateway/channels/telegram.py +801 -0
  95. operator_use-0.1.0/operator_use/gateway/service.py +114 -0
  96. operator_use-0.1.0/operator_use/heartbeat/__init__.py +5 -0
  97. operator_use-0.1.0/operator_use/heartbeat/service.py +88 -0
  98. operator_use-0.1.0/operator_use/messages/__init__.py +19 -0
  99. operator_use-0.1.0/operator_use/messages/service.py +181 -0
  100. operator_use-0.1.0/operator_use/process/__init__.py +4 -0
  101. operator_use-0.1.0/operator_use/process/service.py +120 -0
  102. operator_use-0.1.0/operator_use/process/views.py +28 -0
  103. operator_use-0.1.0/operator_use/providers/__init__.py +134 -0
  104. operator_use-0.1.0/operator_use/providers/anthropic/__init__.py +3 -0
  105. operator_use-0.1.0/operator_use/providers/anthropic/llm.py +577 -0
  106. operator_use-0.1.0/operator_use/providers/antigravity/__init__.py +3 -0
  107. operator_use-0.1.0/operator_use/providers/antigravity/auth.py +298 -0
  108. operator_use-0.1.0/operator_use/providers/antigravity/llm.py +561 -0
  109. operator_use-0.1.0/operator_use/providers/azure_openai/__init__.py +3 -0
  110. operator_use-0.1.0/operator_use/providers/azure_openai/llm.py +517 -0
  111. operator_use-0.1.0/operator_use/providers/base.py +177 -0
  112. operator_use-0.1.0/operator_use/providers/cerebras/__init__.py +3 -0
  113. operator_use-0.1.0/operator_use/providers/cerebras/llm.py +515 -0
  114. operator_use-0.1.0/operator_use/providers/claude_code/__init__.py +3 -0
  115. operator_use-0.1.0/operator_use/providers/claude_code/llm.py +199 -0
  116. operator_use-0.1.0/operator_use/providers/codex/__init__.py +3 -0
  117. operator_use-0.1.0/operator_use/providers/codex/llm.py +629 -0
  118. operator_use-0.1.0/operator_use/providers/deepgram/__init__.py +4 -0
  119. operator_use-0.1.0/operator_use/providers/deepgram/stt.py +113 -0
  120. operator_use-0.1.0/operator_use/providers/deepgram/tts.py +129 -0
  121. operator_use-0.1.0/operator_use/providers/deepseek/__init__.py +3 -0
  122. operator_use-0.1.0/operator_use/providers/deepseek/llm.py +47 -0
  123. operator_use-0.1.0/operator_use/providers/elevenlabs/__init__.py +4 -0
  124. operator_use-0.1.0/operator_use/providers/elevenlabs/stt.py +116 -0
  125. operator_use-0.1.0/operator_use/providers/elevenlabs/tts.py +169 -0
  126. operator_use-0.1.0/operator_use/providers/events.py +44 -0
  127. operator_use-0.1.0/operator_use/providers/google/__init__.py +5 -0
  128. operator_use-0.1.0/operator_use/providers/google/llm.py +557 -0
  129. operator_use-0.1.0/operator_use/providers/google/stt.py +138 -0
  130. operator_use-0.1.0/operator_use/providers/google/tts.py +146 -0
  131. operator_use-0.1.0/operator_use/providers/groq/__init__.py +3 -0
  132. operator_use-0.1.0/operator_use/providers/groq/llm.py +545 -0
  133. operator_use-0.1.0/operator_use/providers/groq/stt.py +107 -0
  134. operator_use-0.1.0/operator_use/providers/groq/tts.py +111 -0
  135. operator_use-0.1.0/operator_use/providers/litellm/__init__.py +3 -0
  136. operator_use-0.1.0/operator_use/providers/litellm/llm.py +536 -0
  137. operator_use-0.1.0/operator_use/providers/mistral/__init__.py +1 -0
  138. operator_use-0.1.0/operator_use/providers/mistral/llm.py +579 -0
  139. operator_use-0.1.0/operator_use/providers/nvidia/__init__.py +3 -0
  140. operator_use-0.1.0/operator_use/providers/nvidia/llm.py +43 -0
  141. operator_use-0.1.0/operator_use/providers/ollama/__init__.py +1 -0
  142. operator_use-0.1.0/operator_use/providers/ollama/llm.py +423 -0
  143. operator_use-0.1.0/operator_use/providers/open_router/__init__.py +3 -0
  144. operator_use-0.1.0/operator_use/providers/open_router/llm.py +515 -0
  145. operator_use-0.1.0/operator_use/providers/openai/__init__.py +5 -0
  146. operator_use-0.1.0/operator_use/providers/openai/llm.py +534 -0
  147. operator_use-0.1.0/operator_use/providers/openai/stt.py +106 -0
  148. operator_use-0.1.0/operator_use/providers/openai/tts.py +107 -0
  149. operator_use-0.1.0/operator_use/providers/sarvam/__init__.py +4 -0
  150. operator_use-0.1.0/operator_use/providers/sarvam/stt.py +86 -0
  151. operator_use-0.1.0/operator_use/providers/sarvam/tts.py +107 -0
  152. operator_use-0.1.0/operator_use/providers/views.py +19 -0
  153. operator_use-0.1.0/operator_use/providers/vllm/__init__.py +3 -0
  154. operator_use-0.1.0/operator_use/providers/vllm/llm.py +593 -0
  155. operator_use-0.1.0/operator_use/session/__init__.py +6 -0
  156. operator_use-0.1.0/operator_use/session/service.py +118 -0
  157. operator_use-0.1.0/operator_use/session/views.py +32 -0
  158. operator_use-0.1.0/operator_use/skills/skill-creator/SKILL.md +371 -0
  159. operator_use-0.1.0/operator_use/subagent/__init__.py +4 -0
  160. operator_use-0.1.0/operator_use/subagent/service.py +80 -0
  161. operator_use-0.1.0/operator_use/subagent/subagent.py +103 -0
  162. operator_use-0.1.0/operator_use/subagent/views.py +15 -0
  163. operator_use-0.1.0/operator_use/templates/AGENTS.md +257 -0
  164. operator_use-0.1.0/operator_use/templates/CODE.md +76 -0
  165. operator_use-0.1.0/operator_use/templates/HEARTBEAT.md +15 -0
  166. operator_use-0.1.0/operator_use/templates/SOUL.md +48 -0
  167. operator_use-0.1.0/operator_use/templates/USER.md +49 -0
  168. operator_use-0.1.0/operator_use/templates/memory/MEMORY.md +23 -0
  169. operator_use-0.1.0/operator_use/tools/__init__.py +3 -0
  170. operator_use-0.1.0/operator_use/tools/service.py +132 -0
  171. operator_use-0.1.0/operator_use/utils/__init__.py +5 -0
  172. operator_use-0.1.0/operator_use/utils/helper.py +28 -0
  173. operator_use-0.1.0/pyproject.toml +56 -0
@@ -0,0 +1,12 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+ .env
12
+ .operator_use
@@ -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."""
@@ -0,0 +1,5 @@
1
+ """macOS accessibility. ax provides the main API."""
2
+
3
+ from . import ax
4
+
5
+ __all__ = ["ax"]