-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
70 lines (70 loc) · 1.36 KB
/
Copy pathconfig.example.json
File metadata and controls
70 lines (70 loc) · 1.36 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"provider": {
"local": {
"npm": "@ai-sdk/openai-compatible",
"name": "OpenAI-compatible provider",
"options": {
"baseURL": "http://localhost:8090/v1",
"apiKey": "replace-me"
},
"models": {
"your-model-id": {
"name": "Your model",
"limit": {
"context": 128000,
"output": 16384
},
"modalities": {
"input": [
"text"
],
"output": [
"text"
]
}
}
}
}
},
"profiles": {
"principal": {
"model": "local:your-model-id"
},
"deep": {
"model": "local:your-model-id"
},
"fast": {
"model": "local:your-model-id"
}
},
"mcp": {
"disabledBuiltins": [
"grep.app"
],
"servers": {
"internal-docs": {
"type": "http",
"enabled": true,
"url": "https://mcp.example.com/mcp",
"connectTimeoutMs": 10000,
"discoveryTimeoutMs": 30000,
"callTimeoutMs": 60000
},
"local-tools": {
"type": "stdio",
"enabled": false,
"command": "my-mcp-server",
"args": [
"--stdio"
],
"env": {
"MCP_PROFILE": "local"
}
}
}
},
"memory": {
"useMemory": true,
"autoLearning": true
}
}