Stephan Janssen
Stephan Janssen
Sounds like a plan, thanks for the update.
Langchain4J v1.0.0 beta2 breaks LMStudio integration, so we need to wait for beta 3.
Applying Prism.js for markdown rendering in the DevoxxGenie plugin would be a great way to enhance code highlighting and improve the overall user experience. Let's go through the steps to...
IDEA Darcula theme https://github.com/LucaScorpion/prismjs-darcula-theme
Light theme @ https://github.com/joseluisgp/Prism-IntelliJ-Light
Would be a great feature to have!
Thanks for the PR, will have a closer look at it first
## Findings: ### The MCP Implementation: - The plugin uses the langchain4j-mcp library to create tool providers for external processes - The MCPExecutionService is responsible for initializing MCP clients using...
Going back to stoppign the MCP execution, can't we just simply do : ```java public void cancelExecutingQuery() { CompletableFuture future = currentQueryFuture.get(); if (future != null && !future.isDone()) { future.cancel(true);...
My suggested fix using the Closeable method doesn't work. Will need to check with LC4J if they have a way to stop a running tool chain...