|
Configuration | Description |
---|---|
chatgpt.gpt3.apiKey | Required, please get from OpenAI, Azure OpenAI or Anthropic. |
chatgpt.gpt3.apiBaseUrl | Optional, default to "https://api.openai.com/v1". For Azure OpenAI Service, it should be set to "https://[YOUR-ENDPOINT-NAME].openai.azure.com/openai/deployments/[YOUR-DEPLOYMENT-NAME]". |
chatgpt.gpt3.model | Optional, default to "gpt-3.5-turbo". |
Refer to the following sections for more details on configuring various OpenAI services.
OpenAI
"chatgpt.gpt3.apiKey": "<api-key>",
"chatgpt.gpt3.apiBaseUrl": "https://api.openai.com/v1", // Optional
Azure OpenAI Service
"chatgpt.gpt3.apiKey": "<api-key>",
"chatgpt.gpt3.model": "gpt-3.5-turbo",
"chatgpt.gpt3.apiBaseUrl": "https://<endpoint-name>.openai.azure.com/openai/deployments/<deployment-name>", // Required
Anthropic Claude 3
"chatgpt.gpt3.model": "claude-3-sonnet-20240229",
"chatgpt.gpt3.apiKey": "<api-key>",
"chatgpt.gpt3.apiBaseUrl": "https://api.anthropic.com/v1", // Optional
Local or self-hosted LLM compatible with OpenAI
"chatgpt.gpt3.apiKey": "<api-key>",
"chatgpt.gpt3.apiBaseUrl": "<base-url>",
Custom Model Names
To use a custom model name for local or self-hosted LLMs compatible with OpenAI, set the chatgpt.gpt3.model
configuration to "custom"
and specify your custom model name in the chatgpt.gpt3.customModel
configuration.
Example configuration for a custom model name with groq:
"chatgpt.gpt3.model": "custom",
"chatgpt.gpt3.apiKey": "<your-custom-key>",
"chatgpt.gpt3.customModel": "mixtral-8x7b-32768",
"chatgpt.gpt3.apiBaseUrl": "https://api.groq.com/openai/v1",
How to install locally
- Install
vsce
if you don't have it on your machine (The Visual Studio Code Extension Manager)npm install --global vsce
- Run
vsce package
- Follow the instructions and install manually.
npm run build
npm run package
code --uninstall-extension feiskyer.chatgpt-copilot
code --install-extension chatgpt-copilot-*.vsix
License
This project is released under ISC License - See LICENSE for details. Copyright notice and the respective permission notices must appear in all copies.