Spaces:
Sleeping
Sleeping
Orel MAZOR
commited on
Commit
·
25cdead
1
Parent(s):
d196534
Config1
Browse files- .DS_Store +0 -0
- .continue/.DS_Store +0 -0
- .continue/models/.DS_Store +0 -0
- .continue/models/local-models.yaml +12 -0
- config.json +7 -0
- mcp.json +11 -0
.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.continue/.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.continue/models/.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.continue/models/local-models.yaml
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Ollama Devstral model
|
2 |
+
version: 0.0.1
|
3 |
+
schema: v1
|
4 |
+
models:
|
5 |
+
- provider: ollama
|
6 |
+
model: unsloth/devstral-small-2505-gguf:Q4_K_M
|
7 |
+
defaultCompletionOptions:
|
8 |
+
contextLength: 8192
|
9 |
+
name: Ollama Devstral-Small
|
10 |
+
roles:
|
11 |
+
- chat
|
12 |
+
- edit
|
config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"mcpServers": {
|
3 |
+
"mcp": {
|
4 |
+
"url": "http://localhost:7860/gradio_api/mcp/sse"
|
5 |
+
}
|
6 |
+
}
|
7 |
+
}
|
mcp.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"servers": [
|
3 |
+
{
|
4 |
+
"name": "MCP Server",
|
5 |
+
"transport": {
|
6 |
+
"type": "sse",
|
7 |
+
"url": "http://localhost:7860/gradio_api/mcp/sse"
|
8 |
+
}
|
9 |
+
}
|
10 |
+
]
|
11 |
+
}
|