-
Notifications
You must be signed in to change notification settings - Fork 0
/
.continuerc.json
63 lines (63 loc) · 1.93 KB
/
.continuerc.json
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
{
"models": [
{
"title": "Bioma - Qwen2.5 Coder",
"provider": "ollama",
"model": "qwen2.5-coder:32b-instruct-q5_K_M",
"contextLength": 128000,
"apiBase": "http://127.0.0.1:11434"
}
],
"tabAutocompleteModel": {
"title": "Qwen2.5 Coder",
"provider": "ollama",
"model": "qwen2.5-coder:32b-instruct-q5_K_M",
"apiBase": "http://127.0.0.1:11434"
},
"embeddingsProvider": {
"provider": "ollama",
"model": "nomic-embed-text",
"apiBase": "http://127.0.0.1:5766"
},
"reranker": {
"name": "huggingface-tei",
"params": {
"apiBase": "http://127.0.0.1:5766",
"truncate": true
},
"truncation_direction": "Right"
},
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "/Users/rozgo/BiomaAI/bioma/target/release/examples/mcp_server",
"args": [
"--log-file",
"/Users/rozgo/BiomaAI/bioma/.output/mcp_server-vscode.log",
"--transport",
"stdio"
]
}
},
{
"transport": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount",
"type=bind,src=/Users/rozgo/VertexNAS,dst=/projects/VertexNAS",
"--mount",
"type=bind,src=/Users/rozgo/BiomaAI,dst=/projects/BiomaAI",
"mcp/filesystem",
"/projects"
]
}
}
]
}
}