forked from ninjahawk/hollow-agentOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
36 lines (36 loc) · 1001 Bytes
/
Copy pathconfig.example.json
File metadata and controls
36 lines (36 loc) · 1001 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
36
{
"name": "AgentOS",
"version": "5.8.0",
"description": "An operating environment designed exclusively for agentic AI — not humans.",
"api": {
"host": "0.0.0.0",
"port": 7777,
"token": "replace-this-with-any-random-string"
},
"memory": {
"path": "/agentOS/memory",
"auto_index_interval_seconds": 30,
"max_session_log_entries": 10000
},
"shell": {
"output_format": "json",
"block_interactive_prompts": true,
"default_timeout_seconds": 30,
"log_all_commands": true
},
"ollama": {
"host": "http://host.docker.internal:11434",
"default_model": "qwen3.6:35b-a3b",
"embed_model": "nomic-embed-text",
"gpu_layers": -1,
"context_length": 32768,
"enabled": true
},
"batch_llm": {
"enabled": false
},
"workspace": {
"root": "/tmp/hollow-workspace",
"index_extensions": [".py", ".js", ".ts", ".go", ".rs", ".c", ".cpp", ".h", ".json", ".yaml", ".yml", ".toml", ".md", ".sh", ".html", ".css", ".txt"]
}
}