-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Labels
ide:vscodeRelates specifically to VS Code extensionRelates specifically to VS Code extensionkind:bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorstale
Description
Before submitting your bug report
- I believe this is a bug. I'll try to join the Continue Discord for questions
- I'm not able to find an open issue that reports the same bug
- I've seen the troubleshooting guide on the Continue Docs
Relevant environment info
- OS: macos
- Continue version:v0.8.66
- IDE version: Vscode 1.96.2
- Model:-
- config.json:
{
"models": [
{
"title": "Qwen-coder-7b",
"provider": "ollama",
"model": "qwen2.5-coder:7b",
"systemMessage": "speak Chinese",
"apiBase": "https://ai.znipower.com:5013/ollama",
"apiKey": "sk-xxxx"
},
{
"title": "Qwen-Coder-Plus",
"provider": "openai",
"model": "qwen-coder-plus",
"systemMessage": "speak Chinese",
"apiBase": "https://ai.znipower.com:5013/openai",
"useLegacyCompletionsEndpoint": false,
"apiKey": "sk-xxxx"
},
{
"title": "Claude3.5 Sonnet@or",
"provider": "openai",
"model": "anthropic/claude-3.5-sonnet:beta",
"systemMessage": "speak Chinese",
"apiBase": "https://ai.znipower.com:5013/openai",
"useLegacyCompletionsEndpoint": false,
"apiKey": "sk-xxxx"
},
{
"title": "o1-mini",
"provider": "openai",
"model": "o1-mini",
"systemMessage": "speak Chinese",
"apiBase": "https://ai.znipower.com:5013/openai",
"useLegacyCompletionsEndpoint": false,
"apiKey": "sk-xxxx"
},
{
"title": "gpt-4-turbo",
"provider": "openai",
"model": "gpt-4-turbo",
"systemMessage": "speak Chinese",
"apiBase": "https://ai.znipower.com:5013/openai",
"useLegacyCompletionsEndpoint": false,
"apiKey": "sk-xxxx"
},
{
"title": "gpt-4o",
"provider": "openai",
"model": "gpt-4o",
"systemMessage": "speak Chinese",
"apiBase": "https://ai.znipower.com:5013/openai",
"useLegacyCompletionsEndpoint": false,
"apiKey": "sk-xxxx"
}
],
"embeddingsProvider": {
"title": "BGE-M3",
"provider": "ollama",
"model": "bge-m3:latest",
"apiBase": "https://ai.znipower.com:5013/ollama",
"apiKey": "sk-xxxx"
},
"tabAutocompleteModel": {
"title": "Tab Autocomplete",
"provider": "ollama",
"model": "qwen2.5-coder:1.5b",
"apiBase": "https://ai.znipower.com:5013/ollama",
"apiKey": "sk-xxxx"
},
"reranker": {
"name": "voyage",
"params": {
"model": "rerank-2",
"apiKey": "xxxx"
}
},
"customCommands": [
{
"name": "explain",
"prompt": "{{{ input }}}\n\n使用中文详细解释所选代码。详细说明其功能、用途和工作原理。",
"description": "解释代码"
},
{
"name": "check",
"prompt": "{{{ input }}}\n\n检查选定代码的语法和逻辑错误,如果有明显可以优化的地方,请给出优化建议。使用中文回答问题。",
"description": "检查代码错误和提出优化建议"
},
{
"name": "test",
"prompt": "{{{ input }}}\n\n为选定的代码编写一套完整的单元测试代码。测试需要包含重要边界情况的正确性检查。测试需要包括测试前的准备和测试后的清理工作。使用中文书写代码备注",
"description": "编写单元测试代码"
}
],
"contextProviders": [
{
"name": "code",
"params": {}
},
{
"name": "docs",
"params": {}
},
{
"name": "diff",
"params": {}
},
{
"name": "terminal",
"params": {}
},
{
"name": "problems",
"params": {}
},
{
"name": "folder",
"params": {}
},
{
"name": "web",
"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"
}
]
}Description
Can not input Chinese characters just after CMD+L comand.
To reproduce
- select several lines in editor windows.
- press CMD+L
- Enther some Chinese charaters
Log output
No response
0xKira
Metadata
Metadata
Assignees
Labels
ide:vscodeRelates specifically to VS Code extensionRelates specifically to VS Code extensionkind:bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorstale