https://github.com/sbcd90/code-generator-intellij-plugin
A cursor like toy Intellij Idea plugin which generates code using Ollama qwen2.5-coder:1.5b model and Groq llama-3.3-70b-versatile model
https://github.com/sbcd90/code-generator-intellij-plugin
code-generation codeium cursor groq intellij-plugin llama-3-3-70b-versatile ollama qwen2-5-coder
Last synced: 16 days ago
JSON representation
A cursor like toy Intellij Idea plugin which generates code using Ollama qwen2.5-coder:1.5b model and Groq llama-3.3-70b-versatile model
- Host: GitHub
- URL: https://github.com/sbcd90/code-generator-intellij-plugin
- Owner: sbcd90
- Created: 2026-06-20T15:17:05.000Z (24 days ago)
- Default Branch: main
- Last Pushed: 2026-06-23T07:38:53.000Z (21 days ago)
- Last Synced: 2026-06-23T09:23:24.616Z (21 days ago)
- Topics: code-generation, codeium, cursor, groq, intellij-plugin, llama-3-3-70b-versatile, ollama, qwen2-5-coder
- Language: Kotlin
- Homepage:
- Size: 454 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
code-generator-intellij-plugin
==============================
A cursor like Toy Intellij Idea plugin which generates code using `Ollama qwen2.5-coder:1.5b model` and `Groq llama-3.3-70b-versatile model`.
## Getting Started
- Install Ollama from [here](https://ollama.com/download/mac)
- Install `qwen2.5-coder:1.5b model` using command
```
ollama pull qwen2.5-coder:1.5b
```
- Create an account and get a token from `Groq` following instructions from [here](https://console.groq.com/docs/quickstart)
## Run plugin in Developer Mode
- Run following gradle commands to open a `new Ide window` with the plugin installed.
```
./gradlew clean
./gradlew runIde
```
## Install plugin (not required if running in developer mode)
- Run following gradle command to build the plugin
```
./gradlew build
```
- Now go to `Intellij Idea` -> `Settings` -> `Plugins` -> `Install Plugin from disk`.
- Choose `jar file` from `build` -> `libs` -> `jar file`.
## Configure Settings
- Visit `Intellij Idea` -> `Settings` -> `Tools` -> `Codegen`. The page should look like this.

- Change to Groq like 
## Use it
- Open a code file in intellij idea and press `tab` to generate code.
## Design
