rwankar

Results 8 comments of rwankar

I've prepared a fiddle to demonstrate the issue. [https://jsfiddle.net/pjaczrv4/8/](url) Copy the image from the editor on the top and paste into the editor below. Only the "loaded" event is fired....

I'm using Azure OpenAI Here is the stack trace.. ``` java.lang.IllegalArgumentException: Content must not be null for SYSTEM or USER messages at org.springframework.util.Assert.notNull(Assert.java:181) ~[spring-core-6.2.2.jar!/:6.2.2] at org.springframework.ai.chat.messages.AbstractMessage.(AbstractMessage.java:69) ~[spring-ai-core-1.0.0-SNAPSHOT.jar!/:1.0.0-SNAPSHOT] at org.springframework.ai.chat.messages.UserMessage.(UserMessage.java:62) ~[spring-ai-core-1.0.0-SNAPSHOT.jar!/:1.0.0-SNAPSHOT]...

If you create prompt from text it works. You need to create Prompt from a list of messages which contains a UserMessage. I've mentioned this in my first post. The...

Here is a working example. It's a SpringBoot maven project. The example is a bit about getting the weather in a city. There are two tools provided. getZip() and getWeather()....

@dliubarskyi , when will this be done? Eagerly waiting for long!

This is how I'm doing it. So far I've not run into an issue with copy/merge.

Right. Usually I also remove the node_modules and run npm i again.