-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.toml
More file actions
34 lines (32 loc) · 841 Bytes
/
Copy pathconfig.toml
File metadata and controls
34 lines (32 loc) · 841 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
# MacUse Agent Configuration Example
# Copy this file to config.toml and fill in your settings
[app]
name = "agent"
version = "1.0.0"
# development or production
mode = "production"
# Verbose logging
debug = false
task = "打开Safari下载一张小猫的图片到桌面"
# Maximum steps to execute
max_steps = 100
# Screen index to work on
screen_index = 0
# Enable planning mode
is_plan = false
# Enable evaluation mode
is_evaluation = false
[llm]
# Provider: openai, qwen, gemini
# provider = "mistralai"
provider = "qwen"
# Model name
# model = "mistralai/ministral-3-3b"
model = "qwen/qwen3-vl-4b"
# API Key (preferably set via environment variable)
api_key = "${OPENAI_API_KEY}"
# api_key = ""
# Optional: Custom API endpoint (for proxy or self-hosted)
base_url = "http://127.0.0.1:1234/v1"
# Request timeout in seconds
timeout = 30