quarkus-langchain4j
quarkus-langchain4j copied to clipboard
Quarkus Langchain4j extension
I have moved my prompt content to a file named `my_prompt.txt` to `resources/dev/langchain4j/services` My service looks as follows: ```java interface MyService { @SystemMessage(fromResource = "my_prompt.txt") String chat(); } ``` The...
Replace quarkus PGVectorEmbeddingStore with new Langchain4J PGVectorEmbeddingStore Allow metadata filtering and remove features @jmartisk @sebastienblanc @geoand @langchain4j this PR replaces https://github.com/quarkiverse/quarkus-langchain4j/pull/410
Hi there! Are there any plans to support the langchain4j AWS bedrock integrations? Would be great if it could be added at some point..
…idate if the default base url is used then the api key must be provided
change the success message as some opensource models like empower-functions-medium (can be tested with baseUrl: https://app.empower.dev/api/v1/functions/) accepts Tool Message as Json only
Bumps [org.wiremock:wiremock-standalone](https://github.com/wiremock/wiremock) from 3.5.4 to 3.6.0. Release notes Sourced from org.wiremock:wiremock-standalone's releases. 3.6.0 🚀 New features and improvements arrayJoin - Handlebar helper (#2725) @dieppa Added arrayAdd, arrayRemove and val helpers...
This is done using the new `@ToolBox` annotation - Closes: #42
Resolves: #581 The pull request introduces the following: - A new Open WebUI card under langchain4j extension (when using OpenAI or Ollama). - The Open WebUI card allows starting, stoping...
Draft PR for a secure-fraud-detection demo. The startup issue described here earlier was resolved as advised by Georgios
When trying to do embedding on ollama like in the code below: ```java package prv.duchamk.quarkus.test.main; import dev.langchain4j.model.embedding.EmbeddingModel; import io.quarkus.runtime.QuarkusApplication; import jakarta.enterprise.context.control.ActivateRequestContext; import jakarta.inject.Inject; @ActivateRequestContext public class MyQuarkusApplication implements QuarkusApplication {...