Created
March 16, 2025 10:54
-
-
Save antydemant/b3e22e425d84639b62284f6df40101f9 to your computer and use it in GitHub Desktop.
.continue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"models": [ | |
{ | |
"title": "Ollama[llama3.1:8b]", | |
"provider": "ollama", | |
"model": "llama3.1:8b" | |
}, | |
{ | |
"title": "Ollama[qwen2.5-coder:1.5b-base]", | |
"provider": "ollama", | |
"model": "qwen2.5-coder:1.5b-base" | |
}, | |
{ | |
"title": "Ollama[qwen2.5-coder:0.5b]", | |
"provider": "ollama", | |
"model": "qwen2.5-coder:0.5b" | |
}, | |
{ | |
"title": "Ollama[qllama3.2-vision:latest]", | |
"provider": "ollama", | |
"model": "llama3.2-vision:latest" | |
}, | |
{ | |
"title": "Ollama[hf.co/bartowski/Llama-3.2-1B-Instruct-GGUF:latest]", | |
"provider": "ollama", | |
"model": "hf.co/bartowski/Llama-3.2-1B-Instruct-GGUF:latest" | |
}, | |
{ | |
"title": "Ollama[gemma3:1b]", | |
"provider": "ollama", | |
"model": "gemma3:1b" | |
}, | |
{ | |
"title": "linux6200/bge-reranker-v2-m3:latest", | |
"provider": "ollama", | |
"model": "linux6200/bge-reranker-v2-m3:latest" | |
}, | |
{ | |
"model": "AUTODETECT", | |
"title": "Autodetect", | |
"provider": "ollama" | |
} | |
], | |
"tabAutocompleteModel": { | |
"title": "Qwen2.5-Coder 1.5B", | |
"provider": "ollama", | |
"model": "qwen2.5-coder:1.5b-base" | |
}, | |
"embeddingsProvider": { | |
"provider": "ollama", | |
"model": "nomic-embed-text:latest" | |
}, | |
"reranker": { | |
"name": "llm", | |
"params": { | |
"modelTitle": "linux6200/bge-reranker-v2-m3:latest" | |
} | |
}, | |
"slashCommands": [ | |
{ | |
"name": "edit", | |
"description": "Edit highlighted code", | |
"step": "EditHighlightedCodeStep" | |
}, | |
{ | |
"name": "comment", | |
"description": "Write comments for the highlighted code", | |
"step": "CommentCodeStep" | |
}, | |
{ | |
"name": "share", | |
"description": "Download and share this session", | |
"step": "ShareSessionStep" | |
}, | |
{ | |
"name": "cmd", | |
"description": "Generate a shell command", | |
"step": "GenerateShellCommandStep" | |
} | |
], | |
"customCommands": [ | |
{ | |
"name": "test", | |
"prompt": "Write a comprehensive set of unit tests for the selected code. It should setup, run tests that check for correctness including important edge cases, and teardown. Ensure that the tests are complete and sophisticated. Give the tests just as chat output, don't edit any file.", | |
"description": "Write unit tests for highlighted code" | |
} | |
], | |
"contextProviders": [ | |
{ | |
"name": "codebase", | |
"params": { | |
"nRetrieve": 25, | |
"nFinal": 5, | |
"useReranking": false | |
} | |
}, | |
{ | |
"name": "repo-map", | |
"params": { | |
"includeSignatures": true | |
} | |
}, | |
{ | |
"name": "diff", | |
"params": {} | |
}, | |
{ | |
"name": "open", | |
"params": {} | |
}, | |
{ | |
"name": "terminal", | |
"params": {} | |
}, | |
{ | |
"name": "code", | |
"params": {} | |
}, | |
{ | |
"name": "docs", | |
"params": {} | |
}, | |
{ | |
"name": "folder", | |
"params": {} | |
} | |
], | |
"docs": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment