continue icon indicating copy to clipboard operation
continue copied to clipboard

my Custom Continue Plugin is not working in Intelllij editor. I have downloaded the different version of code from github like 1.0.8-jetbrains,1.0.10-jetbrai,v1.1.22-vscode etc,

Open rohitttttt opened this issue 6 months ago • 5 comments

Before submitting your bug report

Relevant environment info

- OS:Windows 11
- Continue version:1.0.8-jetbrains,1.0.10-jetbrai,v1.1.22-vscode
- IDE version:IntelliJ IDEA 2024.3.5 (Community Edition)
- Model:OpenAI
- config:
{
  "models": [
    {
      "model": "AUTODETECT",
      "title": "openAI",
      "apiBase": "XXXX",
      "apiKey": "XXX",
      "provider": "openai"
    }
  ],
  "systemMessage": "",
  "completionOptions": {
    "temperature": 0
  },
  "contextProviders": [
    {
      "name": "codebase",
      "params": {
        "nRetrieve": 25,
        "nFinal": 5,
        "useReranking": true
      }
    },
    {
      "name": "tree"
    },
    {
      "name": "code",
      "params": {}
    },
    {
      "name": "docs",
      "params": {}
    }
  ]
}
  

models:
  - name: GPT-4
    provider: openai
    model: gpt-4
    apiBase: xxxx
    apiKey: xxxx
    defaultCompletionOptions:
      temperature: 0.5
      maxTokens: 2000
    roles:
      - chat
      - edit

  - name: My Voyage Reranker
    provider: voyage
    apiKey: <YOUR_VOYAGE_KEY>
    roles:
      - rerank

  - name: My Starcoder
    provider: ollama
    model: starcoder2:3b
    roles:
      - autocomplete

  - name: My Ada Embedder
    provider: openai
    apiKey: <YOUR_ADA_API_KEY>
    roles:
      - embed
    embedOptions:
      - maxChunkSize: 256
      - maxBatchSize: 5

  - name: openAI
    provider: openai
    model: AUTODETECT
    apiBase: xxxxx
    apiKey: xxxx


  - name: My Open AI Compatible Model - Apply
    provider: openai
    model: my-openai-compatible-model
    apiBase: http://3.3.3.3/v1
    requestOptions:
      headers:
        X-Auth-Token: <MY_API_KEY>
    roles:
      - chat
      - apply
  
  OR link to assistant in Continue hub:

Description

Hello Team,

I have downloaded the code from Github for different version like 1.0.8-jetbrains,1.0.10-jetbrai,v1.1.22-vscode etc,. I have compiled the code and ran the required command to build the plugin for VS code and jetbrains(Intellij). But when i am installing the plugin from zip file continue-intellij-extension-1.0.8.zip in intellij it got successfully installed but nothing is happening when i am clicking plus icon it is coming blank. Although when i have created the plugin from latest version v1.1.22 or similar version but in that case chat screen is coming but i am unable to click on config file locally from intellij and nothing was happening when i am clicking on config file. I have tried to put config.yaml file in c/users// it still not working. For VS code my plugin is working fine. It is only not working for intellij.

Image

Image

Image

To reproduce

No response

Log output

i have deleted the previous logs and did the fresh installation but no logs printed in log folder.

rohitttttt avatar Apr 18 '25 07:04 rohitttttt