PG Thinker

Results 3 issues of PG Thinker

![](https://cdn.staticaly.com/gh/NingNing0111/picx-images-hosting@master/issue/8e22b4f544b1eea3fb4820a4e00ac4bb.26vmbj2og4nw.png)

**Bug description** I'm attempting to return the ImageResponse as a ModelResponse, which passes successfully in unit tests but fails on Spring MVC. **Environment** - Spring AI 0.8.1-SNAPSHOT - Java 17...

bug

## Test Code ```dart test('chat stream', () async { OpenAI.baseUrl = "https://api.openai.com"; OpenAI.apiKey = "sk-**********"; var createStream = OpenAI.instance.chat.createStream(model: "gpt-3.5-turbo", messages: [ OpenAIChatCompletionChoiceMessageModel( role: OpenAIChatMessageRole.user, content: [ OpenAIChatCompletionChoiceMessageContentItemModel.text("Hi!") ]) ]);...