Skip to content

DevoxxGenie is a plugin for IntelliJ IDEA that uses local LLM's (Ollama, LMStudio, GPT4All, Llama.cpp and Exo) and Cloud based LLMs to help review, test, explain your project code.

License

Notifications You must be signed in to change notification settings

devoxx/DevoxxGenieIDEAPlugin

Repository files navigation

Devoxx Genie

X

Devoxx Genie is a fully Java-based LLM Code Assistant plugin for IntelliJ IDEA, designed to integrate with local LLM providers such as Ollama, LMStudio, GPT4All, Llama.cpp and Exo but also cloud based LLM's such as OpenAI, Anthropic, Mistral, Groq, Gemini, DeepInfra, DeepSeek, OpenRouter and Azure OpenAI

We now also support RAG-based prompt context based on your vectorized project files. In addition to Git Dif viewer and LLM-driven web search with Google and Tavily.

With Claude 3.5 Sonnet, DevoxxGenie isn't just another developer tool... it's a glimpse into the future of software engineering. As we eagerly await Claude 3.5 Opus, one thing is clear: we're witnessing a paradigm shift in Ai Augmented Programming (AAP) 🐒

Marketplace

Hands-on with DevoxxGenie

DevoxxGenie Demo

More Video Tutorials:

Blog Posts:

Key Features:

  • 🧐 RAG Support (🔥 NEW): Retrieval-Augmented Generation (RAG) support for automatically incorporating project context into your prompts.
  • 💪🏻 Git Diff/Merge : Show Git Diff/Merge dialog to accept LLM suggestions.
  • 👀 Chat History: Your chats are stored locally, allowing you to easily restore them in the future.
  • 🧠 Project Scanner: Add source code (full project or by package) to prompt context when using Anthropic, OpenAI or Gemini.
  • 💰 Token Cost Calculator: Calculate the cost when using Cloud LLM providers.
  • 🔍 Web Search : Search the web for a given query using Google or Tavily.
  • 🏎️ Streaming responses: See each token as it's received from the LLM in real-time.
  • 🧐 Abstract Syntax Tree (AST) context: Automatically include parent class and class/field references in the prompt for better code analysis.
  • 💬 Chat Memory Size: Set the size of your chat memory, by default its set to a total of 10 messages (system + user & AI msgs).
  • ☕️ 100% Java: An IDEA plugin using local and cloud based LLM models. Fully developed in Java using Langchain4J
  • 👀 Code Highlighting: Supports highlighting of code blocks.
  • 💬 Chat conversations: Supports chat conversations with configurable memory size.
  • 📁 Add files & code snippets to context: You can add open files to the chat window context for producing better answers or code snippets if you want to have a super focused window

Start in 5 Minutes with local LLM

  • Download and start Ollama
  • Open terminal and download a model using command "ollama run llama3.2"
  • Start your IDEA and go to plugins > Marketplace and enter "Devoxx"
  • Select "DevoxxGenie" and install plugin
  • In the DevoxxGenie window select Ollama and available model
  • Start prompting

Start in 2 Minutes using Cloud LLM

  • Start your IDEA and go to plugins > Marketplace and enter "Devoxx"
  • Select "DevoxxGenie" and install plugin
  • Click on DevoxxGenie cog (settings) icon and click on Cloud Provider link icon to create API KEY
  • Paste API Key in Settings panel
  • In the DevoxxGenie window select your cloud provider and model
  • Start prompting

🔥 NEW RAG Feature

RAG

Devoxx Genie now includes starting from v0.4.0 a Retrieval-Augmented Generation (RAG) feature, which enables advanced code search and retrieval capabilities. This feature uses a combination of natural language processing (NLP) and machine learning algorithms to analyze code snippets and identify relevant results based on their semantic meaning.

With RAG, you can:

  • Search for code snippets using natural language queries
  • Retrieve relevant code examples that match your query's intent
  • Explore related concepts and ideas in the codebase

We currently use Ollama and Nomic Text embedding to generates vector representations of your project files. These embedding vectors are then stored in a Chroma DB running locally within Docker. The vectors are used to compute similarity scores between search queries and your code all running locally.

The RAG feature is a significant enhancement to Devoxx Genie's code search capabilities, enabling developers to quickly find relevant code examples and accelerate their coding workflow.

See also Demo

LLM Settings

In the IDEA settings you can modify the REST endpoints and the LLM parameters. Make sure to press enter and apply to save your changes.

We now also support Cloud based LLMs, you can paste the API keys on the Settings page.

Settings

Smart Model Selection and Cost Estimation

The language model dropdown is not just a list anymore, it's your compass for smart model selection.

Models

See available context window sizes for each cloud model View associated costs upfront Make data-driven decisions on which model to use for your project

Add Project to prompt & clipboard

You can now add the full project to your prompt IF your selected cloud LLM has a big enough window context.

AddFull

Calc Cost

Leverage the prompt cost calculator for precise budget management. Get real-time updates on how much of the context window you're using.

AddCalcProject

See the input/output costs and window context per Cloud LLM. Eventually we'll also allow you to edit these values.

Cost

Handling Massive Projects?

"But wait," you might say, "my project is HUGE!" 😅

Fear not! We've got options:

  1. Leverage Gemini's Massive Context:

Gemini's colossal 1 million token window isn't just big, it's massive. We're talking about the capacity to digest approximately 30,000 lines of code in a single go. That's enough to digest most codebases whole, from the tiniest scripts to some decent projects.

But if that's not enough you have more options...

  1. Smart Filtering:

The new "Copy Project" panel lets you:

Exclude specific directories Filter by file extensions Remove JavaDocs to slim down your context

ScanProject
  1. Selective Inclusion

Right-click to add only the most relevant parts of your project to the context.

RightClick

Git Diff viewer

Starting from v0.3.0, you can enable a Git diff/merge viewer to directly review and accept LLM-generated code changes without needing to copy and paste them from the LLM's response. To activate this feature, navigate to Settings and select "LLM Git Diff Merge." You can then choose between a two-panel or three-panel Git diff view.

git_diff diff_merge

For example, the two-panel Git diff view works seamlessly with the local Ollama LLM provider and the Llama 3.2 3B model.

JavadocGitSimple.mp4

The Power of Full Context: A Real-World Example

The DevoxxGenie project itself, at about 70K tokens, fits comfortably within most high-end LLM context windows. This allows for incredibly nuanced interactions – we're talking advanced queries and feature requests that leave tools like GitHub Copilot scratching their virtual heads!

Support for JLama & LLama3.java

DevoxxGenie now also supports the 100% Modern Java LLM inference engines: JLama.

JLama offers a REST API compatible with the widely-used OpenAI API.

image

You can also integrate it seamlessly with Llama3.java but using the Spring Boot OpenAI API wrapper coupled with the JLama DevoxxGenie option.

Local LLM Cluster with Exo

V0.2.7 also supports Exo, a local LLM cluster for Apple Silicon which allows you to run Llama 3.1 8b, 70b and 405b on your own Apple computers 🤩

image

Installation:

  • From IntelliJ IDEA: Go to Settings -> Plugins -> Marketplace -> Enter 'Devoxx' to find plugin OR Install plugin from Disk
  • From Source Code: Clone the repository, build the plugin using ./gradlew buildPlugin, and install the plugin from the build/distributions directory and select file 'DevoxxGenie-X.Y.Z.zip'

Requirements:

  • IntelliJ minimum version is 2023.3.4
  • Java minimum version is JDK 17

Build

Gradle IntelliJ Plugin prepares a ZIP archive when running the buildPlugin task.
You'll find it in the build/distributions/ directory

./gradlew buildPlugin 

Publish plugin

It is recommended to use the publishPlugin task for releasing the plugin

./gradlew publishPlugin

Usage:

  1. Select an LLM provider from the DevoxxGenie panel (right corner)
  2. Select some code
  3. Enter shortcode command review, explain, generate unit tests of the selected code or enter a custom prompt.

Enjoy!