1
0
Fork 0

add stuff, i don't even know anymore man

This commit is contained in:
cătălin 2024-04-19 13:38:19 +02:00
commit 98a561fa5a
No known key found for this signature in database
16 changed files with 555 additions and 56 deletions

91
continue/config.json Normal file
View 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
}