add stuff, i don't even know anymore man
This commit is contained in:
parent
cd0a564d9a
commit
98a561fa5a
16 changed files with 555 additions and 56 deletions
91
continue/config.json
Normal file
91
continue/config.json
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
{
|
||||
"models": [
|
||||
{
|
||||
"title": "Ollama",
|
||||
"provider": "ollama",
|
||||
"model": "deepseek-coder",
|
||||
"completionOptions": {}
|
||||
},
|
||||
{
|
||||
"title": "GPT-4",
|
||||
"provider": "openai-free-trial",
|
||||
"model": "gpt-4"
|
||||
},
|
||||
{
|
||||
"title": "GPT-3.5-Turbo",
|
||||
"provider": "openai-free-trial",
|
||||
"model": "gpt-3.5-turbo"
|
||||
}
|
||||
],
|
||||
"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": "diff",
|
||||
"params": {}
|
||||
},
|
||||
{
|
||||
"name": "open",
|
||||
"params": {}
|
||||
},
|
||||
{
|
||||
"name": "terminal",
|
||||
"params": {}
|
||||
},
|
||||
{
|
||||
"name": "codebase",
|
||||
"params": {
|
||||
"nRetrieve": 25,
|
||||
"nFinal": 5,
|
||||
"useReranking": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "code",
|
||||
"params": {}
|
||||
},
|
||||
{
|
||||
"name": "docs",
|
||||
"params": {}
|
||||
}
|
||||
],
|
||||
"embeddingsProvider": {
|
||||
"provider": "ollama",
|
||||
"model": "deepseek-coder",
|
||||
"apiBase": "http://localhost:11434"
|
||||
},
|
||||
"tabAutocompleteModel": {
|
||||
"title": "Ollama",
|
||||
"provider": "ollama",
|
||||
"model": "deepseek-coder",
|
||||
"apiBase": "http://localhost:11434"
|
||||
},
|
||||
"allowAnonymousTelemetry": true
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue