-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
43 lines (43 loc) · 1.08 KB
/
config.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
36
37
38
39
40
41
42
43
{
"$schema": "",
"server": {
"host": "127.0.0.1",
"port": 8383,
"secret_key": "you-should-not-need-to-change-this-key"
},
"browser": {
"headless_mode": false,
"visual_debug_mode": false,
"data_dir": "./browser_data"
},
"hover_config": {
"offset_x": -15,
"offset_y": 10
},
"files": {
"transformed_request_file": "CodeRequest"
},
"urls": {
"drive_folder_url": "https://drive.google.com/drive/u/REPLACE WITH YOUR OWN DRIVE FOLDER LINK",
"aistudio_url": "https://aistudio.google.com/app/u/REPLACE WITH YOUR OWN AISTUDIO FOLDER LINK"
},
"gemini": {
"model": "models/gemini-3-pro-preview",
"temperature": 0.3,
"top_p": 0.95,
"top_k": 64,
"max_output_tokens": 65536,
"response_mime_type": "text/plain",
"enable_code_execution": false,
"enable_search_as_tool": false,
"enable_browse_as_tool": false,
"enable_auto_function_response": false,
"thinking_budget": -1
},
"timeouts": {
"max_wait_start": 1000,
"max_wait_complete": 4,
"additional_wait": 1,
"before_run_button_click": 1
}
}