minitap-mobile-use 0.0.1.dev0__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.
Potentially problematic release.
This version of minitap-mobile-use might be problematic. Click here for more details.
- minitap/mobile_use/__init__.py +0 -0
- minitap/mobile_use/agents/contextor/contextor.py +42 -0
- minitap/mobile_use/agents/cortex/cortex.md +93 -0
- minitap/mobile_use/agents/cortex/cortex.py +107 -0
- minitap/mobile_use/agents/cortex/types.py +11 -0
- minitap/mobile_use/agents/executor/executor.md +73 -0
- minitap/mobile_use/agents/executor/executor.py +84 -0
- minitap/mobile_use/agents/executor/executor_context_cleaner.py +27 -0
- minitap/mobile_use/agents/executor/utils.py +11 -0
- minitap/mobile_use/agents/hopper/hopper.md +13 -0
- minitap/mobile_use/agents/hopper/hopper.py +45 -0
- minitap/mobile_use/agents/orchestrator/human.md +13 -0
- minitap/mobile_use/agents/orchestrator/orchestrator.md +18 -0
- minitap/mobile_use/agents/orchestrator/orchestrator.py +114 -0
- minitap/mobile_use/agents/orchestrator/types.py +14 -0
- minitap/mobile_use/agents/outputter/human.md +25 -0
- minitap/mobile_use/agents/outputter/outputter.py +75 -0
- minitap/mobile_use/agents/outputter/test_outputter.py +107 -0
- minitap/mobile_use/agents/planner/human.md +12 -0
- minitap/mobile_use/agents/planner/planner.md +64 -0
- minitap/mobile_use/agents/planner/planner.py +64 -0
- minitap/mobile_use/agents/planner/types.py +44 -0
- minitap/mobile_use/agents/planner/utils.py +45 -0
- minitap/mobile_use/agents/summarizer/summarizer.py +34 -0
- minitap/mobile_use/clients/device_hardware_client.py +23 -0
- minitap/mobile_use/clients/ios_client.py +44 -0
- minitap/mobile_use/clients/screen_api_client.py +53 -0
- minitap/mobile_use/config.py +285 -0
- minitap/mobile_use/constants.py +2 -0
- minitap/mobile_use/context.py +65 -0
- minitap/mobile_use/controllers/__init__.py +0 -0
- minitap/mobile_use/controllers/mobile_command_controller.py +379 -0
- minitap/mobile_use/controllers/platform_specific_commands_controller.py +74 -0
- minitap/mobile_use/graph/graph.py +149 -0
- minitap/mobile_use/graph/state.py +73 -0
- minitap/mobile_use/main.py +122 -0
- minitap/mobile_use/sdk/__init__.py +12 -0
- minitap/mobile_use/sdk/agent.py +524 -0
- minitap/mobile_use/sdk/builders/__init__.py +10 -0
- minitap/mobile_use/sdk/builders/agent_config_builder.py +213 -0
- minitap/mobile_use/sdk/builders/index.py +15 -0
- minitap/mobile_use/sdk/builders/task_request_builder.py +218 -0
- minitap/mobile_use/sdk/constants.py +14 -0
- minitap/mobile_use/sdk/examples/README.md +45 -0
- minitap/mobile_use/sdk/examples/__init__.py +1 -0
- minitap/mobile_use/sdk/examples/simple_photo_organizer.py +76 -0
- minitap/mobile_use/sdk/examples/smart_notification_assistant.py +177 -0
- minitap/mobile_use/sdk/types/__init__.py +49 -0
- minitap/mobile_use/sdk/types/agent.py +73 -0
- minitap/mobile_use/sdk/types/exceptions.py +74 -0
- minitap/mobile_use/sdk/types/task.py +191 -0
- minitap/mobile_use/sdk/utils.py +28 -0
- minitap/mobile_use/servers/config.py +19 -0
- minitap/mobile_use/servers/device_hardware_bridge.py +212 -0
- minitap/mobile_use/servers/device_screen_api.py +143 -0
- minitap/mobile_use/servers/start_servers.py +151 -0
- minitap/mobile_use/servers/stop_servers.py +215 -0
- minitap/mobile_use/servers/utils.py +11 -0
- minitap/mobile_use/services/accessibility.py +100 -0
- minitap/mobile_use/services/llm.py +143 -0
- minitap/mobile_use/tools/index.py +54 -0
- minitap/mobile_use/tools/mobile/back.py +52 -0
- minitap/mobile_use/tools/mobile/copy_text_from.py +77 -0
- minitap/mobile_use/tools/mobile/erase_text.py +124 -0
- minitap/mobile_use/tools/mobile/input_text.py +74 -0
- minitap/mobile_use/tools/mobile/launch_app.py +59 -0
- minitap/mobile_use/tools/mobile/list_packages.py +78 -0
- minitap/mobile_use/tools/mobile/long_press_on.py +62 -0
- minitap/mobile_use/tools/mobile/open_link.py +59 -0
- minitap/mobile_use/tools/mobile/paste_text.py +66 -0
- minitap/mobile_use/tools/mobile/press_key.py +58 -0
- minitap/mobile_use/tools/mobile/run_flow.py +57 -0
- minitap/mobile_use/tools/mobile/stop_app.py +58 -0
- minitap/mobile_use/tools/mobile/swipe.py +56 -0
- minitap/mobile_use/tools/mobile/take_screenshot.py +70 -0
- minitap/mobile_use/tools/mobile/tap.py +66 -0
- minitap/mobile_use/tools/mobile/wait_for_animation_to_end.py +68 -0
- minitap/mobile_use/tools/tool_wrapper.py +33 -0
- minitap/mobile_use/utils/cli_helpers.py +40 -0
- minitap/mobile_use/utils/cli_selection.py +144 -0
- minitap/mobile_use/utils/conversations.py +31 -0
- minitap/mobile_use/utils/decorators.py +123 -0
- minitap/mobile_use/utils/errors.py +6 -0
- minitap/mobile_use/utils/file.py +13 -0
- minitap/mobile_use/utils/logger.py +184 -0
- minitap/mobile_use/utils/media.py +73 -0
- minitap/mobile_use/utils/recorder.py +55 -0
- minitap/mobile_use/utils/requests_utils.py +37 -0
- minitap/mobile_use/utils/shell_utils.py +20 -0
- minitap/mobile_use/utils/time.py +6 -0
- minitap/mobile_use/utils/ui_hierarchy.py +30 -0
- minitap_mobile_use-0.0.1.dev0.dist-info/METADATA +274 -0
- minitap_mobile_use-0.0.1.dev0.dist-info/RECORD +95 -0
- minitap_mobile_use-0.0.1.dev0.dist-info/WHEEL +4 -0
- minitap_mobile_use-0.0.1.dev0.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: minitap-mobile-use
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: AI-powered multi-agent system that automates real Android and iOS devices through low-level control using LangGraph.
|
|
5
|
+
Author: Pierre-Louis Favreau, Jean-Pierre Lo, Nicolas Dehandschoewercker
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 Minitap, Inc
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
Requires-Dist: langgraph==0.5.0
|
|
28
|
+
Requires-Dist: adbutils==2.9.3
|
|
29
|
+
Requires-Dist: langchain-google-genai==2.1.5
|
|
30
|
+
Requires-Dist: langchain==0.3.26
|
|
31
|
+
Requires-Dist: langchain-core==0.3.66
|
|
32
|
+
Requires-Dist: jinja2==3.1.6
|
|
33
|
+
Requires-Dist: python-dotenv==1.1.1
|
|
34
|
+
Requires-Dist: pydantic-settings==2.10.1
|
|
35
|
+
Requires-Dist: langchain-mcp-adapters==0.1.7
|
|
36
|
+
Requires-Dist: langchain-openai==0.3.27
|
|
37
|
+
Requires-Dist: typer==0.16.0
|
|
38
|
+
Requires-Dist: langchain-cerebras>=0.5.0
|
|
39
|
+
Requires-Dist: inquirer>=3.4.0
|
|
40
|
+
Requires-Dist: sseclient-py==1.8.0
|
|
41
|
+
Requires-Dist: fastapi==0.111.0
|
|
42
|
+
Requires-Dist: uvicorn[standard]==0.30.1
|
|
43
|
+
Requires-Dist: colorama>=0.4.6
|
|
44
|
+
Requires-Dist: psutil>=5.9.0
|
|
45
|
+
Requires-Dist: ruff==0.5.3 ; extra == 'dev'
|
|
46
|
+
Requires-Dist: pytest==8.4.1 ; extra == 'dev'
|
|
47
|
+
Requires-Dist: pytest-cov==5.0.0 ; extra == 'dev'
|
|
48
|
+
Requires-Python: >=3.10
|
|
49
|
+
Project-URL: Homepage, https://minitap.ai/
|
|
50
|
+
Project-URL: Source, https://github.com/minitap-ai/mobile-use
|
|
51
|
+
Provides-Extra: dev
|
|
52
|
+
Description-Content-Type: text/markdown
|
|
53
|
+
|
|
54
|
+
# mobile-use: automate your phone with natural language
|
|
55
|
+
|
|
56
|
+
<div align="center">
|
|
57
|
+
|
|
58
|
+

|
|
59
|
+
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
<div align="center">
|
|
63
|
+
|
|
64
|
+
[](https://discord.gg/6nSqmQ9pQs)
|
|
65
|
+
[](https://github.com/minitap-ai/mobile-use/stargazers)
|
|
66
|
+
|
|
67
|
+
<p align="center">
|
|
68
|
+
<a href="https://discord.gg/6nSqmQ9pQs"><b>Discord</b></a> •
|
|
69
|
+
<a href="https://x.com/minitap_ai?t=iRWtI497UhRGLeCKYQekig&s=09"><b>Twitter / X</b></a>
|
|
70
|
+
</p>
|
|
71
|
+
|
|
72
|
+
</div>
|
|
73
|
+
|
|
74
|
+
Mobile-use is a powerful, open-source AI agent that controls your Android or IOS device using natural language. It understands your commands and interacts with the UI to perform tasks, from sending messages to navigating complex apps.
|
|
75
|
+
|
|
76
|
+
> Mobile-use is quickly evolving. Your suggestions, ideas, and reported bugs will shape this project. Do not hesitate to join in the conversation on [Discord](https://discord.gg/6nSqmQ9pQs) or contribute directly, we will reply to everyone! ❤️
|
|
77
|
+
|
|
78
|
+
## ✨ Features
|
|
79
|
+
|
|
80
|
+
- 🗣️ **Natural Language Control**: Interact with your phone using your native language.
|
|
81
|
+
- 📱 **UI-Aware Automation**: Intelligently navigates through app interfaces.
|
|
82
|
+
- 📊 **Data Scraping**: Extract information from any app and structure it into your desired format (e.g., JSON) using a natural language description.
|
|
83
|
+
- 🔧 **Extensible & Customizable**: Easily configure different LLMs to power the agents that power mobile-use.
|
|
84
|
+
|
|
85
|
+
## Benchmarks
|
|
86
|
+
|
|
87
|
+
<p align="center">
|
|
88
|
+
<img src="./doc/benchmark.jpg" alt="Project banner" />
|
|
89
|
+
</p>
|
|
90
|
+
|
|
91
|
+
We are global number 1 Opensource pass@1 on the AndroidWorld benchmark.
|
|
92
|
+
|
|
93
|
+
More info here: https://minitap.ai/research/mobile-ai-agents-benchmark
|
|
94
|
+
|
|
95
|
+
The official leaderboard is available [here](https://docs.google.com/spreadsheets/d/1cchzP9dlTZ3WXQTfYNhh3avxoLipqHN75v1Tb86uhHo/edit?pli=1&gid=0#gid=0)
|
|
96
|
+
|
|
97
|
+
## 🚀 Getting Started
|
|
98
|
+
|
|
99
|
+
Ready to automate your mobile experience? Follow these steps to get mobile-use up and running.
|
|
100
|
+
|
|
101
|
+
1. **Set up Environment Variables:**
|
|
102
|
+
Copy the example `.env.example` file to `.env` and add your API keys.
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
cp .env.example .env
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
2. **(Optional) Customize LLM Configuration:**
|
|
109
|
+
To use different models or providers, create your own LLM configuration file.
|
|
110
|
+
```bash
|
|
111
|
+
cp llm-config.override.template.jsonc llm-config.override.jsonc
|
|
112
|
+
```
|
|
113
|
+
Then, edit `llm-config.override.jsonc` to fit your needs.
|
|
114
|
+
|
|
115
|
+
### Quick Launch (Docker)
|
|
116
|
+
|
|
117
|
+
> [!NOTE]
|
|
118
|
+
> This quickstart, is only available for Android devices/emulators as of now, and you must have Docker installed.
|
|
119
|
+
|
|
120
|
+
First:
|
|
121
|
+
|
|
122
|
+
- Either plug your Android device and enable USB-debugging via the Developer Options
|
|
123
|
+
- Or launch an Android emulator
|
|
124
|
+
|
|
125
|
+
> [!IMPORTANT]
|
|
126
|
+
> At some point, the terminal will HANG, and Maestro will ask you `Maestro CLI would like to collect anonymous usage data to improve the product.`
|
|
127
|
+
> It's up to you whether you accept (i.e enter 'Y') or not (i.e. enter 'n').
|
|
128
|
+
|
|
129
|
+
Then run in your terminal:
|
|
130
|
+
|
|
131
|
+
1. For Linux/macOS:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
chmod +x mobile-use.sh
|
|
135
|
+
./mobile-use.sh \
|
|
136
|
+
"Open Gmail, find first 3 unread emails, and list their sender and subject line" \
|
|
137
|
+
--output-description "A JSON list of objects, each with 'sender' and 'subject' keys"
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
2. For Windows (inside a Powershell terminal):
|
|
141
|
+
|
|
142
|
+
```powershell
|
|
143
|
+
powershell.exe -ExecutionPolicy Bypass -File mobile-use.ps1 `
|
|
144
|
+
"Open Gmail, find first 3 unread emails, and list their sender and subject line" `
|
|
145
|
+
--output-description "A JSON list of objects, each with 'sender' and 'subject' keys"
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
> [!NOTE]
|
|
149
|
+
> If using your own device, make sure to accept the ADB-related connection requests that will pop up on your device.
|
|
150
|
+
> Similarly, Maestro will need to install its APK on your device, which will also require you to accept the installation request.
|
|
151
|
+
|
|
152
|
+
#### 🧰 Troubleshooting
|
|
153
|
+
|
|
154
|
+
The script will try to connect to your device via IP.
|
|
155
|
+
Therefore, your device **must be connected to the same Wi-Fi network as your computer**.
|
|
156
|
+
|
|
157
|
+
##### 1. No device IP found
|
|
158
|
+
|
|
159
|
+
If the script fails with the following message:
|
|
160
|
+
|
|
161
|
+
```
|
|
162
|
+
Could not get device IP. Is a device connected via USB and on the same Wi-Fi network?
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Then it couldn't find one of the common Wi-Fi interfaces on your device.
|
|
166
|
+
Therefore, you must determine what WLAN interface your phone is using via `adb shell ip addr show up`.
|
|
167
|
+
Then add the `--interface <YOUR_INTERFACE_NAME>` option to the script.
|
|
168
|
+
|
|
169
|
+
##### 2. Failed to connect to <DEVICE_IP>:5555 inside Docker
|
|
170
|
+
|
|
171
|
+
This is most probably an issue with your firewall blocking the connection. Therefore there is no clear fix for this.
|
|
172
|
+
|
|
173
|
+
##### 3. Failed to pull GHCR docker images (unauthorized)
|
|
174
|
+
|
|
175
|
+
Since UV docker images rely on a `ghcr.io` public repositories, you may have an expired token if you used `ghcr.io` before for private repositories.
|
|
176
|
+
Try running `docker logout ghcr.io` and then run the script again.
|
|
177
|
+
|
|
178
|
+
### Manual Launch (Development Mode)
|
|
179
|
+
|
|
180
|
+
For developers who want to set up the environment manually:
|
|
181
|
+
|
|
182
|
+
#### 1. Device Support
|
|
183
|
+
|
|
184
|
+
Mobile-use currently supports the following devices:
|
|
185
|
+
|
|
186
|
+
- **Physical Android Phones**: Connect via USB with USB debugging enabled.
|
|
187
|
+
- **Android Simulators**: Set up through Android Studio.
|
|
188
|
+
- **iOS Simulators**: Supported for macOS users.
|
|
189
|
+
|
|
190
|
+
> [!NOTE]
|
|
191
|
+
> Physical iOS devices are not yet supported.
|
|
192
|
+
|
|
193
|
+
#### 2. Prerequisites
|
|
194
|
+
|
|
195
|
+
For Android:
|
|
196
|
+
|
|
197
|
+
- **[Android Debug Bridge (ADB)](https://developer.android.com/studio/releases/platform-tools)**: A tool to connect to your device.
|
|
198
|
+
|
|
199
|
+
For iOS:
|
|
200
|
+
|
|
201
|
+
- **[Xcode](https://developer.apple.com/xcode/)**: Apple's IDE for iOS development.
|
|
202
|
+
|
|
203
|
+
Before you begin, ensure you have the following installed:
|
|
204
|
+
|
|
205
|
+
- **[uv](https://github.com/astral-sh/uv)**: A lightning-fast Python package manager.
|
|
206
|
+
- **[Maestro](https://maestro.mobile.dev/getting-started/installing-maestro)**: The framework we use to interact with your device.
|
|
207
|
+
|
|
208
|
+
#### 3. Installation
|
|
209
|
+
|
|
210
|
+
1. **Clone the repository:**
|
|
211
|
+
|
|
212
|
+
```bash
|
|
213
|
+
git clone https://github.com/minitap-ai/mobile-use.git && cd mobile-use
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
2. [**Setup environment variables**](#-getting-started)
|
|
217
|
+
|
|
218
|
+
3. **Create & activate the virtual environment:**
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
# This will create a .venv directory using the Python version in .python-version
|
|
222
|
+
uv venv
|
|
223
|
+
|
|
224
|
+
# Activate the environment
|
|
225
|
+
# On macOS/Linux:
|
|
226
|
+
source .venv/bin/activate
|
|
227
|
+
# On Windows:
|
|
228
|
+
.venv\Scripts\activate
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
4. **Install dependencies:**
|
|
232
|
+
```bash
|
|
233
|
+
# Sync with the locked dependencies for a consistent setup
|
|
234
|
+
uv sync
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
## 👨💻 Usage
|
|
238
|
+
|
|
239
|
+
To run mobile-use, simply pass your command as an argument.
|
|
240
|
+
|
|
241
|
+
**Example 1: Basic Command**
|
|
242
|
+
|
|
243
|
+
```bash
|
|
244
|
+
python ./src/mobile_use/main.py "Go to settings and tell me my current battery level"
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
**Example 2: Data Scraping**
|
|
248
|
+
|
|
249
|
+
Extract specific information and get it back in a structured format. For instance, to get a list of your unread emails:
|
|
250
|
+
|
|
251
|
+
```bash
|
|
252
|
+
python ./src/mobile_use/main.py \
|
|
253
|
+
"Open Gmail, find all unread emails, and list their sender and subject line" \
|
|
254
|
+
--output-description "A JSON list of objects, each with 'sender' and 'subject' keys"
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
> [!NOTE]
|
|
258
|
+
> If you haven't configured a specific model, mobile-use will prompt you to choose one from the available options.
|
|
259
|
+
|
|
260
|
+
## ❤️ Contributing
|
|
261
|
+
|
|
262
|
+
We love contributions! Whether you're fixing a bug, adding a feature, or improving documentation, your help is welcome. Please read our **[Contributing Guidelines](CONTRIBUTING.md)** to get started.
|
|
263
|
+
|
|
264
|
+
## ⭐ Star History
|
|
265
|
+
|
|
266
|
+
<p align="center">
|
|
267
|
+
<a href="https://star-history.com/#minitap-ai/mobile-use&Date">
|
|
268
|
+
<img src="https://api.star-history.com/svg?repos=minitap-ai/mobile-use&type=Date" alt="Star History Chart" />
|
|
269
|
+
</a>
|
|
270
|
+
</p>
|
|
271
|
+
|
|
272
|
+
## 📜 License
|
|
273
|
+
|
|
274
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
minitap/mobile_use/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
|
2
|
+
minitap/mobile_use/agents/contextor/contextor.py,sha256=d7c98771a9173281c1660a2ee965149d4f70ecf7005cf75fa89eb1e9a9f2b660,1673
|
|
3
|
+
minitap/mobile_use/agents/cortex/cortex.md,sha256=a51e032bbcc456ccee50883f176cb857c20241a2b2b63012213835434dcdfe60,4646
|
|
4
|
+
minitap/mobile_use/agents/cortex/cortex.py,sha256=efdc52d7ccb06fe00c607408144b7b26cca1b2b7241d38b47d78620898d667b6,4264
|
|
5
|
+
minitap/mobile_use/agents/cortex/types.py,sha256=19b8601c6dae8dae6259c027b63be541a9dc293e4d141e46f11f621ec35e45dc,399
|
|
6
|
+
minitap/mobile_use/agents/executor/executor.md,sha256=5d80434859d7899ceb4d07bf8b8aa1d32d43febb312e97a8966c3c6fba04ca17,2911
|
|
7
|
+
minitap/mobile_use/agents/executor/executor.py,sha256=20cbb293622cfdfff77ae6cf1c39f06977e41ecd251369c44c221fb7cee46947,3405
|
|
8
|
+
minitap/mobile_use/agents/executor/executor_context_cleaner.py,sha256=b813652ee951473df1a731741b7cf026addc7462f3668364464f518448309722,1211
|
|
9
|
+
minitap/mobile_use/agents/executor/utils.py,sha256=1a387d30047d3be05b5e550433866abe4388222b3f95d1360847870155ef8f12,368
|
|
10
|
+
minitap/mobile_use/agents/hopper/hopper.md,sha256=d80ca663c3404efa4612e8a70cc66e25ad36e66adee7ecd15a67a91aebd92610,732
|
|
11
|
+
minitap/mobile_use/agents/hopper/hopper.py,sha256=39a4976a044fdc505e0980c415877f8c1723bdcb6e75e53123897bec49753963,1426
|
|
12
|
+
minitap/mobile_use/agents/orchestrator/human.md,sha256=212c6d15d99e6d7294ad37bbf64707a7d9669d279c69c56b331db5582c7694aa,186
|
|
13
|
+
minitap/mobile_use/agents/orchestrator/orchestrator.md,sha256=159e6adfe5ee54529f76a4a1462c10418d690efefe0c0cd87c23584b02b4b96d,1242
|
|
14
|
+
minitap/mobile_use/agents/orchestrator/orchestrator.py,sha256=b0335056e117389592ee0bc0b1596c5f376b57f7ffa7a705334ce701a0fd0a8c,4391
|
|
15
|
+
minitap/mobile_use/agents/orchestrator/types.py,sha256=11ebb2317b5e65816d623499d4e445c705320bc7be06ef67ea95d0e38eaccd7d,244
|
|
16
|
+
minitap/mobile_use/agents/outputter/human.md,sha256=6b9b45c640b163554524b1aec4cd97134c628eeb8557a32e23c8f966d32f642e,771
|
|
17
|
+
minitap/mobile_use/agents/outputter/outputter.py,sha256=fd6143776e916439f39d823bf6860e3138d1d191b89d60d8cc809fbb49bd3808,2792
|
|
18
|
+
minitap/mobile_use/agents/outputter/test_outputter.py,sha256=4c52988f8f29159657707a0e11500610f3987cac6390b17edec23f09ddfcc0ff,3334
|
|
19
|
+
minitap/mobile_use/agents/planner/human.md,sha256=cb37be2af568918e60238eaa785837178a3ba8f8112de86850d9a62914c18314,222
|
|
20
|
+
minitap/mobile_use/agents/planner/planner.md,sha256=6c1945332a8606a71497829c55808eca951b386a5bfb4430a231f39d905bff7e,2568
|
|
21
|
+
minitap/mobile_use/agents/planner/planner.py,sha256=ac85084c8967ec63fc66d404eba2b4f0dad59b7512bd0bc9928d2b4289208a75,2408
|
|
22
|
+
minitap/mobile_use/agents/planner/types.py,sha256=1d434d15fb3b401331ae9a41b37638907f55d70e8dcc7963d046ecab3d7acab6,1202
|
|
23
|
+
minitap/mobile_use/agents/planner/utils.py,sha256=5032789152b4824458a96acef17d4b865dcf451e80005d3e42d75f936965b3b5,1486
|
|
24
|
+
minitap/mobile_use/agents/summarizer/summarizer.py,sha256=63899afe2c9c7ecbba4d1d6fdf18c865a2310cfe76e4c6c9b31e74d6746eb5b7,1070
|
|
25
|
+
minitap/mobile_use/clients/device_hardware_client.py,sha256=1b3e2601715296444b8e0166cb8654ab0051f1b74a32d93bb55d29e4179440ea,734
|
|
26
|
+
minitap/mobile_use/clients/ios_client.py,sha256=332bf47ac01bbd5bf6178a59eea7c7a30fed944f30907caea5388178f312d36b,1452
|
|
27
|
+
minitap/mobile_use/clients/screen_api_client.py,sha256=3615dc65d25c38b4d8dc5512f9adb3bcf69dca7a0298a472a6812f604a275c47,2019
|
|
28
|
+
minitap/mobile_use/config.py,sha256=4aa7a41d8968ca4e815467b91664a5e835d200d2e99483e141c71a24896d3a31,9427
|
|
29
|
+
minitap/mobile_use/constants.py,sha256=93639619ee5e0e1c228a00356c074f044561132d75a902c560b9832768c7651b,51
|
|
30
|
+
minitap/mobile_use/context.py,sha256=8bed4b88c01c84a3686aebaa3b66454cc705f000d694ecd2ea73753be29b0c01,1792
|
|
31
|
+
minitap/mobile_use/controllers/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
|
32
|
+
minitap/mobile_use/controllers/mobile_command_controller.py,sha256=6096f559354f9a8b37b1d76fd2d29ad8ae7fad1bdf585b9d789e48aa8794998e,11760
|
|
33
|
+
minitap/mobile_use/controllers/platform_specific_commands_controller.py,sha256=3d62496216bd6e16a7127fda866a1eddd9086c6d5d19a23a997dc44f56d6e8f4,2745
|
|
34
|
+
minitap/mobile_use/graph/graph.py,sha256=5a44c5b571416656c6a6763fbff5035f57232ba98dcdee965db0fea5525d20bf,4855
|
|
35
|
+
minitap/mobile_use/graph/state.py,sha256=42b17c5c52d1bb1f5b6e20e456f60baa322087367107925d624e339a28fb17d6,2972
|
|
36
|
+
minitap/mobile_use/main.py,sha256=91c068961fbe3ca6d896796c5814dfa80cd0b16436c0e8dabebfe520e3d24205,3605
|
|
37
|
+
minitap/mobile_use/sdk/__init__.py,sha256=4e5555c0597242b9523827194a2500b9c6d7e5c04b1ccd2056c9b1f4d42a31cd,318
|
|
38
|
+
minitap/mobile_use/sdk/agent.py,sha256=b32aa85b9a6426e414786373ba6ac62a192e0e5d73926037a1a2197ed7a80cd5,20109
|
|
39
|
+
minitap/mobile_use/sdk/builders/__init__.py,sha256=d6c96d39b80900a114698ef205ab5061a541f33bfa99c456d9345e5adb8ff6ff,424
|
|
40
|
+
minitap/mobile_use/sdk/builders/agent_config_builder.py,sha256=88b9104443c1e2fe90d3f6bb3bfa9222091a72f209cf1234a4e9b52eb743a73f,7233
|
|
41
|
+
minitap/mobile_use/sdk/builders/index.py,sha256=64336ac3b3dea4673a48e95b8c5ac4196ecd5d2196380377d102593d0a1dc138,442
|
|
42
|
+
minitap/mobile_use/sdk/builders/task_request_builder.py,sha256=739f7886cbcc87602f83f5fa37f5da049323a7754f2254840bedc1f74abe19d2,6906
|
|
43
|
+
minitap/mobile_use/sdk/constants.py,sha256=436ba0700c6cf37ac0c9e3995a5f5a0d54ca87af72686eb9667a2c6a96e30f68,292
|
|
44
|
+
minitap/mobile_use/sdk/examples/README.md,sha256=b6780de3025b1897ad2ef42fa968f2a69b82f929465807f9590c4e9321dab6e6,2306
|
|
45
|
+
minitap/mobile_use/sdk/examples/__init__.py,sha256=c23868a2ca7e9b76e80d6835fe93c10e13ea8f2287dd6e785511b8ac30354e9b,46
|
|
46
|
+
minitap/mobile_use/sdk/examples/simple_photo_organizer.py,sha256=8ad1cebb5281e3663264560bd15b090add41d2821b1db77e4cbc829860c98df8,2606
|
|
47
|
+
minitap/mobile_use/sdk/examples/smart_notification_assistant.py,sha256=bf43241c33b882069d5845a6f0ea78038e4c484299893ce8345cebc5836a4e0c,6386
|
|
48
|
+
minitap/mobile_use/sdk/types/__init__.py,sha256=5dd148d83bf6261ac8ac60c994e2496b5bf535591d0835807d5fe394fd85a954,1014
|
|
49
|
+
minitap/mobile_use/sdk/types/agent.py,sha256=f8af16989d3d1d5b5cfc18e78e5762d37f30df3788663f3fb1b774621227c6b1,2133
|
|
50
|
+
minitap/mobile_use/sdk/types/exceptions.py,sha256=56ac3f749730740951448b1b0f200be21331dc0800916a87587b21e7850120a5,2288
|
|
51
|
+
minitap/mobile_use/sdk/types/task.py,sha256=d94e69dd0c58ecc8b613969dd223b45177a174b8a54f97f3a1cbf251517f31be,5915
|
|
52
|
+
minitap/mobile_use/sdk/utils.py,sha256=c32794fa7877062963c9fc035625668506b5ae05ae06aa47364356103fdce690,950
|
|
53
|
+
minitap/mobile_use/servers/config.py,sha256=b77296e56b8a0a3211bff4795d473cdc5fd58b31d3acaa8f9d920e6e4bed68f9,606
|
|
54
|
+
minitap/mobile_use/servers/device_hardware_bridge.py,sha256=ac446958157e7049dbf6eda6c8a55d710a28c221cb0042f271f63033186a2780,7211
|
|
55
|
+
minitap/mobile_use/servers/device_screen_api.py,sha256=63bf866f17cde4ab97631b710080866b8427225d3857b2351ab83db38a9c5107,5064
|
|
56
|
+
minitap/mobile_use/servers/start_servers.py,sha256=04fd57f629c39bfa012af6d953280567c7b9eb1fa1ad055b5d1f3c792a9b22f5,5056
|
|
57
|
+
minitap/mobile_use/servers/stop_servers.py,sha256=47c3dd2466a5dce9e6300226a25e505a00a4710d4f2ec3a92d0fdaf1ff11b0d4,7564
|
|
58
|
+
minitap/mobile_use/servers/utils.py,sha256=db5d26153a169ab141556337db3693adc1bf8522943316656bdeb05dbf95465b,394
|
|
59
|
+
minitap/mobile_use/services/accessibility.py,sha256=42bcbe81b427ee6f6e82bcfe420fc40630db950bda354e3e433c2dda2e159628,3404
|
|
60
|
+
minitap/mobile_use/services/llm.py,sha256=de49162b21afcf17396f98633cec1ff001814143145eff06e4dced18f5848acf,3665
|
|
61
|
+
minitap/mobile_use/tools/index.py,sha256=e7635124296215de6594f410812efedae73025e0a7085fb60b4908f3ea29e4f7,2309
|
|
62
|
+
minitap/mobile_use/tools/mobile/back.py,sha256=c98bada46ba3d09b326499a14d3fb365fada2f20dd51e73f2f2d7239c7bec282,1925
|
|
63
|
+
minitap/mobile_use/tools/mobile/copy_text_from.py,sha256=dae382f19f91f45f59f767649f79f79440945207bee63b35b9d61abcf5c8dea2,2859
|
|
64
|
+
minitap/mobile_use/tools/mobile/erase_text.py,sha256=0486e94926eb21618d5f1feb9be940e46ca757904f16c95f481652e4a7622cb1,4612
|
|
65
|
+
minitap/mobile_use/tools/mobile/input_text.py,sha256=9b0e349145e555b308ae4bb29df40ba38b2d9529b8c3c59bfb3353d2e4a8c746,2507
|
|
66
|
+
minitap/mobile_use/tools/mobile/launch_app.py,sha256=c7b8495920c8a7633245a8f8d207028b72d02e795d08cc382ea6b7810eb588f0,2166
|
|
67
|
+
minitap/mobile_use/tools/mobile/list_packages.py,sha256=88d7db8b54bd7f52b83722cfb4dd74064de2aa2269f82077ed7e2842e391489a,2749
|
|
68
|
+
minitap/mobile_use/tools/mobile/long_press_on.py,sha256=71fc373170af94321ce737bb479a026140ac03f2a5db4e4ad2ac9d0358fd2003,2339
|
|
69
|
+
minitap/mobile_use/tools/mobile/open_link.py,sha256=d00d722753a39908f96a66027f8e4bbc079686f0b1ea17bcfb9f8dc16af219a2,2013
|
|
70
|
+
minitap/mobile_use/tools/mobile/paste_text.py,sha256=2242a5385c1fbb219b88160bccfc0f76f1d6a32d8e8981978fac081b936e2e58,2240
|
|
71
|
+
minitap/mobile_use/tools/mobile/press_key.py,sha256=2f6e8f2dfe25f3f08265b04d7f769b006b0745a0a231546837bac53ba780fa4b,2077
|
|
72
|
+
minitap/mobile_use/tools/mobile/run_flow.py,sha256=ac1c1ccf1abaa0689474ea770d2855fec129882df4ce32b7d263e712ea838700,2040
|
|
73
|
+
minitap/mobile_use/tools/mobile/stop_app.py,sha256=59c18291cd919898115790dd745b86e0007c39906faadf56dc9173bb31dd0e43,2202
|
|
74
|
+
minitap/mobile_use/tools/mobile/swipe.py,sha256=4e5f614f70c7929647316481bd4aa1f3bcb1317e313a9322bb4bec22a66091f6,2012
|
|
75
|
+
minitap/mobile_use/tools/mobile/take_screenshot.py,sha256=6b59b7b2e9f054bbf4845cce6411e3f39d393e2b28a914ce9e3078cfa0741f40,2415
|
|
76
|
+
minitap/mobile_use/tools/mobile/tap.py,sha256=7528fb878993452709d3d1548d4b1ce110dd83ca93cbf6ea6a82ef83794c0ddd,2432
|
|
77
|
+
minitap/mobile_use/tools/mobile/wait_for_animation_to_end.py,sha256=c3eb61e0713524a1c65288dfd97ce5f11dafbf0b98f015b3e85845b97c18d2b0,2650
|
|
78
|
+
minitap/mobile_use/tools/tool_wrapper.py,sha256=c6d8dd5430731de5a69f7cb98b6b850551595a9310a3ef98d527093c590e0dfb,1077
|
|
79
|
+
minitap/mobile_use/utils/cli_helpers.py,sha256=00578e45bfa71a6b332026572bbf255716f40f0499dd8a246f075f801bce7c7d,1751
|
|
80
|
+
minitap/mobile_use/utils/cli_selection.py,sha256=8cbdb9559f4f3d40ae3ad5287239050cfc7ca826ecf2cb488c8c6d255dab0cd3,4828
|
|
81
|
+
minitap/mobile_use/utils/conversations.py,sha256=8f1d924300ec3f6f7c71510c21e3011b75caca5b1fff06fdaccb377c3cde24ec,914
|
|
82
|
+
minitap/mobile_use/utils/decorators.py,sha256=c88b4ab78724cb97d4c8d40c6049e874293e8d0c0ee6cb0131aa869d9b205810,3631
|
|
83
|
+
minitap/mobile_use/utils/errors.py,sha256=6c5566484cff48ce1eb168c3cbe93d6e5365457828f59616a15147598feef769,156
|
|
84
|
+
minitap/mobile_use/utils/file.py,sha256=1ca968613452a273b23e4f58460ab39f87255b02cdb6fb8ca04f4e628b346070,315
|
|
85
|
+
minitap/mobile_use/utils/logger.py,sha256=ff75d4e373cc750ba4cdaee6c86139841420c44e8ad291f7f3afc77367dc7daa,5695
|
|
86
|
+
minitap/mobile_use/utils/media.py,sha256=cd51b2f1c268aca2dd56439a97d761765454a92e9598d76c0a86f62185b990f9,2233
|
|
87
|
+
minitap/mobile_use/utils/recorder.py,sha256=4bd4ffd51370c610da582fee4567dfeda8ad661379ec99c715cd0ed5e016c146,2133
|
|
88
|
+
minitap/mobile_use/utils/requests_utils.py,sha256=5c3a2e2aff7c521cd6a43b74c084e2244e1ff55065a5b722e6e251c6419861fd,1168
|
|
89
|
+
minitap/mobile_use/utils/shell_utils.py,sha256=b35ae7f863379adb86c9ba0f9b3b9d4954118d12aef1ffed0bc260b32d73d857,650
|
|
90
|
+
minitap/mobile_use/utils/time.py,sha256=41bfaabb3751de11443ccb4a3f1f53d5ebacc7744c72e32695fdcc3d23f17d49,160
|
|
91
|
+
minitap/mobile_use/utils/ui_hierarchy.py,sha256=0465fdbad394252ba2d02c6227f8095b82ee3ad0970a4cb3cf5c22e8f5b1de71,1005
|
|
92
|
+
minitap_mobile_use-0.0.1.dev0.dist-info/WHEEL,sha256=ab6157bc637547491fb4567cd7ddf26b04d63382916ca16c29a5c8e94c9c9ef7,79
|
|
93
|
+
minitap_mobile_use-0.0.1.dev0.dist-info/entry_points.txt,sha256=663a29cfd551a4eaa0f27335f0bd7e4a732a4e39c76b68ef5c8dc444d4a285fa,60
|
|
94
|
+
minitap_mobile_use-0.0.1.dev0.dist-info/METADATA,sha256=b443b159bba95b1e10f1190a370af9af39349115fb7c75c47a3dcf52eb055297,10368
|
|
95
|
+
minitap_mobile_use-0.0.1.dev0.dist-info/RECORD,,
|