Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.56 KB

coding-assistant.adoc

File metadata and controls

33 lines (28 loc) · 1.56 KB
Table of Contents

Coding Assistant

The Coding Assistant is an AI-powered tool that helps you write and edit code more efficiently. It offers features like code suggestions, autocompletion, and error detection, improving productivity and reducing mistakes. It can be easily integrated into your development environment for smarter coding support.

Continue

Continue is a leading open-source AI code assistant. It comes with features like Chat, Autocomplete, Edit and Actions. Currently, the plugin is available for Intellij and VSCode. With IDEasy, we aim to keep the configuration process simple and provide the option to pre-configure the code assistant via ide-settings

A possible pre-configuration file can be found here: .continuerc.json

The config is set so that your model runs via vllm. The only action you have to take is to override the apiBase key with your server url. Telemetry is also disabled by default. There is a variety of different configurations that can be done with continue plugin. You can find the latest information and documentation here: https://docs.continue.dev/

{
  "models": [
    {
      "title": "My vLLM OpenAI-compatible server",
      "apiBase": "http://localhost:8000/v1"
    }
  ],

  "allowAnonymousTelemetry": false
}