Stéphane Épardaud
Stéphane Épardaud
In DEV mode, I just got those logs: ``` 2021-04-02 09:40:02,743 WARN [org.hib.eng.jdb.spi.SqlExceptionHelper] (Quarkus Main Thread) SQL Warning Code: 0, SQLState: 00000 2021-04-02 09:40:02,744 WARN [org.hib.eng.jdb.spi.SqlExceptionHelper] (Quarkus Main Thread) relation...
See https://docs.jboss.org/hibernate/orm/6.5/javadocs/org/hibernate/query/SelectionQuery.html#getResultCount()
`ResponseBuilder.lastModified()` and friends, as well as `Request.evaluatePreconditions(Date)` and friends only accept the `Date` type. They should probably also accept more modern Java date/time types, no?
We should chunk it if it's too large.
``` 2024-05-06 08:17:52,025 koholint [60417] ERROR [io.qua.ver.htt.run.QuarkusErrorHandler] (executor-thread-710) HTTP Request to /_renarde/backoffice/Talk/create failed, error id: 9aa04c33-9d79-4036-8d6d-335bb0c2742d-10: jakarta.validation.ConstraintViolationException: Validation failed for classes [model.Talk] during persist time for groups [jakarta.validation.groups.Default, ] List...
That's what I get:  But this is using the `https` remote, when I really want the `ssh` remote: `[email protected]:FroMage/issue671.git`. I always just copy the `clone` command,...
This page https://quarkus.io/brand/ lists `Icon Reversed SVG` at https://quarkus.io/assets/images/brand/quarkus_icon_256px_reverse.svg but it's a 404 :(
The current RAG model for pgvector is to store the documents in their own table. In my application my source documents already have a table: ```java @Entity public class Talk...
The docs at https://docs.quarkiverse.io/quarkus-langchain4j/dev/ai-services.html#_ai_method_return_type say I should be able to get a structured return type from my service, but it does not seem to support anything but a `String`. ```java...
This allows users to create RSA pairs easier than the current `openssl` usage we document: ```shell $ openssl genrsa -out rsaPrivateKey.pem 2048 $ openssl rsa -pubout -in rsaPrivateKey.pem -out src/main/resources/publicKey.pem...