You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're seeing a `fetch failed` error and your network requires custom certificates, you will need to configure them in `config.json`. In each of the objects in the `"models"` array, add `requestOptions.caBundlePath` like this:
77
77
@@ -92,22 +92,22 @@ If you're seeing a `fetch failed` error and your network requires custom certifi
92
92
93
93
You may also set `requestOptions.caBundlePath` to an array of paths to multiple certificates.
94
94
95
-
### VS Code Proxy Settings
95
+
####VS Code Proxy Settings
96
96
97
97
If you are using VS Code and require requests to be made through a proxy, you are likely already set up through VS Code's [Proxy Server Support](https://code.visualstudio.com/docs/setup/network#_proxy-server-support). To double-check that this is enabled, use cmd/ctrl+, to open settings and search for "Proxy Support". Unless it is set to "off", then VS Code is responsible for making the request to the proxy.
98
98
99
-
### code-server
99
+
####code-server
100
100
101
101
Continue can be used in [code-server](https://coder.com/), but if you are running across an error in the logs that includes "This is likely because the editor is not running in a secure context", please see [their documentation on securely exposing code-server](https://coder.com/docs/code-server/latest/guide#expose-code-server).
102
102
103
-
## I installed Continue, but don't see the sidebar window
103
+
###I installed Continue, but don't see the sidebar window
104
104
105
105
By default the Continue window is on the left side of VS Code, but it can be dragged to right side as well, which we recommend in our tutorial. In the situation where you have previously installed Continue and moved it to the right side, it may still be there. You can reveal Continue either by using cmd/ctrl+L or by clicking the button in the top right of VS Code to open the right sidebar.
106
106
107
-
## I'm getting a 404 error from OpenAI
107
+
###I'm getting a 404 error from OpenAI
108
108
109
109
If you have entered a valid API key and model, but are still getting a 404 error from OpenAI, this may be because you need to add credits to your billing account. You can do so from the [billing console](https://platform.openai.com/settings/organization/billing/overview). If you just want to check that this is in fact the cause of the error, you can try adding $1 to your account and checking whether the error persists.
110
110
111
-
# Still having trouble?
111
+
##Still having trouble?
112
112
113
113
Create a GitHub issue [here](https://github.com/continuedev/continue/issues/new?assignees=&labels=bug&projects=&template=bug-report-%F0%9F%90%9B.md&title=), leaving the details of your problem, and we'll be able to more quickly help you out.
Copy file name to clipboardExpand all lines: docs/docs/walkthroughs/tab-autocomplete.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ This object allows you to customize the behavior of tab-autocomplete. The availa
94
94
-`disable`: Disable autocomplete (can also be done from IDE settings)
95
95
-`template`: An optional template string to be used for autocomplete. It will be rendered with the Mustache templating language, and is passed the 'prefix' and 'suffix' variables. (String)
96
96
-`useCopyBuffer`: Determines whether the copy buffer will be considered when constructing the prompt. (Boolean)
97
-
-`useSuffix`: Determines whether to use the file suffix in the prompt. (Boolean)
97
+
-`useFileSuffix`: Determines whether to use the file suffix in the prompt. (Boolean)
98
98
-`maxPromptTokens`: The maximum number of prompt tokens to use. A smaller number will yield faster completions, but less context. (Number)
99
99
-`prefixPercentage`: The percentage of the input that should be dedicated to the prefix. (Number)
100
100
-`maxSuffixPercentage`: The maximum percentage of the prompt that can be dedicated to the suffix. (Number)
0 commit comments