forked from alibaba/MobiZen-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_example.yaml
More file actions
35 lines (28 loc) · 933 Bytes
/
config_example.yaml
File metadata and controls
35 lines (28 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Device Configuration
device_id: null # null to use first available device, or specify like "127.0.0.1:5555"
# API Configuration
api_key: "your-api-key-here"
base_url: "https://api.openai.com/v1"
model_name: "gpt-4o"
# Model Configuration
model_type: "qwen3vl" # qwen3vl or qwen25vl
min_pixels: 1024 # 1 * 32 * 32
max_pixels: 1310720 # 1280 * 32 * 32
# Execution Configuration
max_steps: 25
screenshot_dir: "./screenshots"
step_delay: 2.0
first_step_delay: 4.0
use_adbkeyboard: true # Use ADBKeyboard for text input (supports Chinese)
# Model Parameters
temperature: 0.1
top_p: 0.001
max_tokens: 1024
timeout: 60
# Component Configuration
message_builder_class: "core.message_builders.qwen.QwenMessageBuilder"
message_builder_kwargs: {}
model_client_class: "core.model_clients.openai.OpenAIClient"
model_client_kwargs: {}
response_parser_class: "core.response_parsers.qwen.QwenResponseParser"
response_parser_kwargs: {}