Last active
February 8, 2025 19:40
-
-
Save kmanadkat/61fdfe0b5e52d7126d4bf203d7f83ad4 to your computer and use it in GitHub Desktop.
Continue Config
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
{ | |
"models": [ | |
{ | |
"title": "Qwen 2.5 Coder 7b", | |
"model": "qwen2.5-coder:7b", | |
"provider": "ollama", | |
"apiKey": "" | |
} | |
], | |
"tabAutocompleteModel": { | |
"title": "Auto Complete", | |
"model": "qwen2.5-coder:7b", | |
"provider": "ollama", | |
"apiKey": "" | |
}, | |
"contextProviders": [ | |
{ | |
"name": "code", | |
"params": {} | |
}, | |
{ | |
"name": "docs", | |
"params": {} | |
}, | |
{ | |
"name": "diff", | |
"params": {} | |
}, | |
{ | |
"name": "terminal", | |
"params": {} | |
}, | |
{ | |
"name": "problems", | |
"params": {} | |
}, | |
{ | |
"name": "folder", | |
"params": {} | |
}, | |
{ | |
"name": "codebase", | |
"params": {} | |
} | |
], | |
"slashCommands": [ | |
{ | |
"name": "share", | |
"description": "Export the current chat session to markdown" | |
}, | |
{ | |
"name": "cmd", | |
"description": "Generate a shell command" | |
}, | |
{ | |
"name": "commit", | |
"description": "Generate a git commit message" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment