Skip to content

Commit

Permalink
Merge branch 'main' into preview
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Apr 12, 2024
2 parents a5f3e66 + 3012639 commit 9d042f8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion binary/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules
bin
data
out
out
16 changes: 16 additions & 0 deletions docs/docs/walkthroughs/tab-autocomplete.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

Continue now provides support for tab autocomplete in [VS Code](https://marketplace.visualstudio.com/items?itemName=Continue.continue) and [JetBrains IDEs](https://plugins.jetbrains.com/plugin/22707-continue/edit). We will be greatly improving the experience over the next few releases, and it is always helpful to hear feedback. If you have any problems or suggestions, please let us know in our [Discord](https://discord.gg/vapESyrFmJ).

## Setting up with Starcoder 7b (recommended)

If you want to have the best autocomplete experience, we recommend using Starcoder 7b, which is available through [Fireworks AI](https://fireworks.ai/models/fireworks/starcoder-7b). To do this, obtain an API key and add it to your `config.json`:

```json
{
"tabAutocompleteModel": {
"title": "Starcoder 7b",
"provider": "openai",
"model": "accounts/fireworks/models/starcoder-7b",
"apiBase": "https://api.fireworks.ai/inference/v1",
"apiKey": "YOUR_API_KEY"
}
}
```

## Setting up with Ollama (default)

We recommend setting up tab-autocomplete with a local Ollama instance. To do this, first download the latest version of Ollama from [here](https://ollama.ai). Then, run the following command to download our recommended model:
Expand Down

0 comments on commit 9d042f8

Please sign in to comment.