Skip to content

Commit

Permalink
continue: initial config
Browse files Browse the repository at this point in the history
  • Loading branch information
davidandreoletti committed Apr 10, 2024
1 parent 62f9621 commit e77f777
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 0 deletions.
116 changes: 116 additions & 0 deletions .continue/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
{
"models": [
{
"title": "GPT-4 Vision (Free Trial)",
"provider": "free-trial",
"model": "gpt-4-vision-preview"
},
{
"title": "GPT-3.5-Turbo (Free Trial)",
"provider": "free-trial",
"model": "gpt-3.5-turbo"
},
{
"title": "Gemini Pro (Free Trial)",
"provider": "free-trial",
"model": "gemini-pro"
},
{
"title": "Codellama 70b (Free Trial)",
"provider": "free-trial",
"model": "codellama-70b"
},
{
"title": "Mixtral (Free Trial)",
"provider": "free-trial",
"model": "mistral-8x7b"
},
{
"title": "Claude 3 Sonnet (Free Trial)",
"provider": "free-trial",
"model": "claude-3-sonnet-20240229"
},
{
"model": "AUTODETECT",
"title": "Ollama",
"completionOptions": {},
"apiBase": "http://localhost:11434",
"provider": "ollama"
},
{
"title": "DeepSeek-7b",
"model": "deepseek-7b",
"completionOptions": {},
"apiBase": "http://localhost:11434",
"provider": "ollama"
},
{
"title": "Mistral-7b",
"model": "mistral-7b",
"completionOptions": {},
"apiBase": "http://localhost:11434",
"provider": "ollama"
}
],
"slashCommands": [
{
"name": "edit",
"description": "Edit selected code"
},
{
"name": "comment",
"description": "Write comments for the selected code"
},
{
"name": "share",
"description": "Export this session as markdown"
},
{
"name": "cmd",
"description": "Generate a shell command"
}
],
"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": "problems",
"params": {}
},
{
"name": "codebase",
"params": {}
},
{
"name": "code",
"params": {}
},
{
"name": "docs",
"params": {}
}
],
"tabAutocompleteModel": {
"title": "Starcoder 3b",
"provider": "ollama",
"model": "starcoder-3b"
},
"allowAnonymousTelemetry": false
}
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -270,3 +270,11 @@ data.json
# Launchd
.config/launch/org.*.xdg.environment.plist
!.config/launch/org.__USER__.xdg.environment.plist
# Continue
.continue/.migrations
.continue/dev_data
.continue/index
.continue/server
.continue/types/core
.continue/telemetry.log
.continue/continue.log

0 comments on commit e77f777

Please sign in to comment.