Stephan Janssen

Results 105 comments of Stephan Janssen

Similar to what Claude Desktop provides

DevoxxGenie will try to pull/start ChromaDB, same for pulling Nomic embed model from Ollama. Can you share some screenshots and/or logs?

Just to be sure, the Docker service is running right?

Maybe you can try this code in a standalone Java app using Gradle dependencies : ``` implementation("com.github.docker-java:docker-java:3.4.0") implementation("com.github.docker-java:docker-java-transport-httpclient5:3.4.0") ``` or maven... and then run the getDockerClient method logic. And see...

Adding a hostname+port where ChromaDB is installed could ofc also work, we accept PR's :)

> ProjectScannerService The scanProject uses scanContent method which in its turn does the scanDirectory calls. So I guess this is correct. But you can easily debug this in your own...

> No, didn't manage to resolve it unfortunately :( I've made a new (standalone) RAG prototype implementation using GraphRAG and Neo4J which will replace ChromaDB. This is why I'm not...

I assume you're referring to the RAG embedding using nomic-embed-text ? [com.devoxx.genie.service.chromadb.ChromaEmbeddingService.java](https://github.com/devoxx/DevoxxGenieIDEAPlugin/blob/master/src/main/java/com/devoxx/genie/service/chromadb/ChromaEmbeddingService.java) ```java private void initEmbeddingModel() { this.embeddingModel = OllamaEmbeddingModel.builder() .baseUrl(stateService.getOllamaModelUrl()) .modelName("nomic-embed-text") .build(); } ```

Looking forward to the integration!

> [@stephanj](https://github.com/stephanj) I also have some questions regarding "Abstract Syntax Tree (AST) context: Automatically include parent class and class/field references in the prompt for better code analysis." > > Does...