-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62f9621
commit e77f777
Showing
2 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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 | ||
} |
This file contains 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