Fady Matar
Fady Matar
The wizard form doesn't allow processing Widgets that do not contain BlocFields. I'm trying to add a step to the wizard (for now we'll keep it as text), since the...
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...
**Is your feature request related to a problem? Please describe.** I frequently need to serialize/deserialize the underlying model classes of ai4j using Jackson, but I'm encountering issues due to missing...
The PGVector extension is broken with Quarkus 3.13.2 Reference code: https://github.com/fmatar/rag-playground Looking at the PgVectorAgroalPoolInterceptor ```java public class PgVectorAgroalPoolInterceptor implements AgroalPoolInterceptor { @Override public void onConnectionCreate(Connection connection) { try (Statement...
``` @SystemMessage(value = "", fromResource = "large_prompt.txt") String chat(@MemoryId String cid, @UserMessage String userMessage); ``` If the file is large (mine is around 87kb) I get the following exception. io.vertx.core.impl.NoStackTraceException...