chatgpt.gpt3.apiKey |
|
OpenAI API key. Get your API Key from OpenAI. |
chatgpt.gpt3.apiBaseUrl |
https://api.openai.com/v1 |
Optional override for the OpenAI API base URL. If you customize it, please make sure you have the same format. e.g. starts with https:// without a trailing slash. The completions endpoint suffix is added internally, e.g. for reference: ${apiBaseUrl}/v1/completions |
chatgpt.gpt3.organization |
|
OpenAI Organization ID. |
chatgpt.gpt3.model |
gpt-4o |
OpenAI models to use for your prompts. Documentation. If you face 400 Bad Request please make sure you are using the right model for your integration method. For local or self-hosted LLMs compatible with OpenAI, you can select custom and specify your custom model name in #chatgpt.gpt3.customModel# . |
chatgpt.gpt3.customModel |
|
Specify your custom model name here if you selected custom in #chatgpt.gpt3.model# . This allows you to use a custom model name for local or self-hosted LLMs compatible with OpenAI. |
chatgpt.gpt3.maxTokens |
1024 |
The maximum number of tokens to generate in the completion. |
chatgpt.gpt3.temperature |
1 |
What sampling temperature to use. Higher values means the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. |
chatgpt.gpt3.top_p |
1 |
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. |
chatgpt.systemPrompt |
|
System prompts for the copilot. |
chatgpt.gpt3.generateCode-enabled |
true |
Enable the code generation context menu item for the selected comment/code for Codex. |
chatgpt.gpt3.searchGrounding.enabled |
false |
Enable search grounding for Gemini model. Only available for Google Gemini models. |
chatgpt.promptPrefix.addTests |
Implement tests for the following code |
The prompt prefix used for adding tests for the selected code |
chatgpt.promptPrefix.addTests-enabled |
true |
Enable the prompt prefix used for adding tests for the selected code in the context menu |
chatgpt.promptPrefix.findProblems |
Find problems with the following code |
The prompt prefix used for finding problems for the selected code |
chatgpt.promptPrefix.findProblems-enabled |
true |
Enable the prompt prefix used for finding problems for the selected code in the context menu |
chatgpt.promptPrefix.optimize |
Optimize the following code |
The prompt prefix used for optimizing the selected code |
chatgpt.promptPrefix.optimize-enabled |
true |
Enable the prompt prefix used for optimizing the selected code in the context menu |
chatgpt.promptPrefix.explain |
Explain the following code |
The prompt prefix used for explaining the selected code |
chatgpt.promptPrefix.explain-enabled |
true |
Enable the prompt prefix used for explaining the selected code in the context menu |
chatgpt.promptPrefix.addComments |
Add comments for the following code |
The prompt prefix used for adding comments for the selected code |
chatgpt.promptPrefix.addComments-enabled |
true |
Enable the prompt prefix used for adding comments for the selected code in the context menu |
chatgpt.promptPrefix.completeCode |
Complete the following code |
The prompt prefix used for completing the selected code |
chatgpt.promptPrefix.completeCode-enabled |
true |
Enable the prompt prefix used for completing the selected code in the context menu |
chatgpt.promptPrefix.adhoc-enabled |
true |
Enable the prompt prefix used for adhoc command for the selected code in the context menu |
chatgpt.promptPrefix.customPrompt1 |
|
Your custom prompt 1. It's disabled by default, please set to a custom prompt and enable it if you prefer using customized prompt |
chatgpt.promptPrefix.customPrompt1-enabled |
false |
Enable custom prompt 1. If you enable this item make sure to set this #chatgpt.promptPrefix.customPrompt1# |
chatgpt.promptPrefix.customPrompt2 |
|
Your custom prompt 2. It's disabled by default, please set to a custom prompt and enable it if you prefer using customized prompt |
chatgpt.promptPrefix.customPrompt2-enabled |
false |
Enable custom prompt 2. If you enable this item make sure to set this #chatgpt.promptPrefix.customPrompt2# |
chatgpt.response.showNotification |
false |
Choose whether you'd like to receive a notification when ChatGPT bot responds to your query. |
chatgpt.response.autoScroll |
true |
Whenever there is a new question or response added to the conversation window, extension will automatically scroll to the bottom. You can change that behaviour by disabling this setting. |