Guillaume Laforge

Results 75 comments of Guillaume Laforge

Feel free to get started on this and start a PR. No need for assigning the issue.

Great idea! I'll add a configurable timeout: I'll update the client as follows: ```java OkHttpClient okHttpClient = new OkHttpClient.Builder() .addInterceptor(logging) .callTimeout(this.timeout) .build(); ``` And then, when using the model builder,...

I'd love to see the agentic module to support multimodality as well. As I played with _Nano Banana_ (Gemini 2.5 Flash Image), which is a chat model but that can...

I'm also curious if we can somehow use the sqlite-vec extension. Can the extension be loaded somehow, without having to modify sqlite-jdbc in any way? Or does it require some...

Already reviewed the associated PRs

Oh just saw your comment @SandraAhlgrimm I added `Audio`/`AudioContent` and `Video`/`VideoContent` classes based on the same structure as `Image` and `ImageContent`. I've added those in #1464

Could you try using the new response type method on the builder to specify that you want application/json?

Gemini [supports](https://ai.google.dev/gemini-api/docs/structured-output#json-schemas) some of these JSON schema constraints: * string -> enum, format, nullable * integer -> format, minimum, maximum, enum, nullable * number -> format, minimum, maximum, enum, nullable...

I have a quick question: I see there's some specific handling for Anthropic, its caching approach, and tool use... but could this model also be used with other Vertex AI...

Also, CI fails currently, because of split package and source code formatting. Could you please update those two aspects as well? 🙏