-
-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle arbitrary length StreamChunkPart #4630
Conversation
🦋 Changeset detectedLatest commit: 4513ae8 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
} | ||
} | ||
|
||
if (aiResponseParts.length === 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree that we should leave this logic in here for now, at least until I've gotten some test cases written for AiResponse
.
Co-authored-by: Tim <[email protected]>
Type
Description
This changes
OpenAiClient.StreamChunk.text
andOpenAiClient.StreamChunk.asAiResponse
getters to respect arbitrary lengththis.parts
instead of only considering the first part.After patching this locally, I was able to use Google's Gemini models via their OpenAI compatibility API.
Areas to Review:
I'm not sure what is expected when there's multiple "Content" parts, all I know is that Gemini delivers one "Usage" and one "Content" part in the same chunk. For now I've
.join()
-ed all content parts into a single string.I'm not certain why the
asAiReponse
implementation produces an empty string of content for the case when no parts are present (versus just providing an empty parts array).effect/packages/ai/openai/src/OpenAiClient.ts
Lines 293 to 298 in 9a88bb9
I've preserved this behavior in case, though I imagine it could be removed.
Related
@effect/ai-openai
discards meaningful content with multipleStreamChunkPart
#4629