Guillaume Laforge

Results 75 comments of Guillaume Laforge

Hi, which model do you use? Out of curiosity, what happens if you use an `int[]` array instead?

Nice! You could create a new LangChain4j module and create a PR.

Definitely something I want to have a look at! Unless you want to have a go at it and contribute it?

@leduckhc did you implement this?

I think the classic Gemini SDK doesn't support the parameter right now, and I'm not sure it will ever support it. So this might be only in a new module...

The `thinkingBudget` has been added to the `google-ai-gemini` module, so it'll be available in the next release. For `vertex-ai-gemini` it's a little trickier as the underlying Gemini SDK used for...

Hi @luyi404, this is a very good point, and indeed, sometimes Gemini doesn't work as well with the JSON prompting approach. So it's definitely something that needs to be addressed....

Could you please move to the new console at https://groovyconsole.dev/ ? We're not maintaining this old version anymore.

I like the suggestion of the tweaked `contentRetriever()` method to which we could pass the prompt template string directly. It'd be less verbose. I think I'd add a variant that...

I suggest to add the following test method to `ToolSpecificationsTest`: ```java static class Customer { public String name; public Address billingAddress; public Address shippingAddress; } static class CustomerRegistration { @Tool("register...