chore(deps-dev): bump ai from 4.3.19 to 6.0.159#11
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
There was a problem hiding this comment.
No issues found across 3 files
Architecture diagram
sequenceDiagram
participant Client as Client UI
participant Svr as packages/server
participant Wrapper as packages/ai-sdk
participant SDK as ai (Vercel AI SDK v6)
participant GW as @ai-sdk/gateway
participant LLM as External Provider (e.g. Vertex/Anthropic)
Note over Client,LLM: Runtime Flow with AI SDK v6 Upgrade
Client->>Svr: POST /api/chat
Svr->>Wrapper: Call AI utility
Wrapper->>SDK: CHANGED: execute generateText/streamText (v6)
alt Use AI Gateway
SDK->>GW: NEW: Route via @ai-sdk/gateway (v3.x logic)
GW->>LLM: Forward request with enhanced settings
else Direct Provider Call
SDK->>SDK: CHANGED: Apply updated provider-utils formatting
opt Google Vertex AI
SDK->>SDK: NEW: Format serviceTier for Vertex requests
end
SDK->>LLM: Request completion
end
LLM-->>SDK: Model response
alt Streaming Response
SDK-->>Wrapper: ReadableStream
Wrapper-->>Svr: Stream data
Svr-->>Client: Server-Sent Events (SSE)
else Standard Response
SDK-->>Wrapper: Structured Object (v6 spec)
Wrapper-->>Svr: Processed data
Svr-->>Client: JSON Response
end
Note over SDK,LLM: CHANGED: v6 handles provider-specific <br/> edge cases (Anthropic geo, Vertex streaming)
f17f813 to
45c8cc6
Compare
Bumps [ai](https://github.com/vercel/ai) from 4.3.19 to 6.0.159. - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/compare/ai@4.3.19...ai@6.0.159) --- updated-dependencies: - dependency-name: ai dependency-version: 6.0.159 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
45c8cc6 to
7827243
Compare
Contributor
Author
|
Superseded by #22. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps ai from 4.3.19 to 6.0.159.
Release notes
Sourced from ai's releases.
Commits
9c45cd6Version Packages (#14405)a0d9373Backport: chore(provider/gateway): update gateway model settings files v6 (#1...e3fb093Version Packages (#14400)1e1a5abBackport: fix(google): fixserviceTierto be correctly formatted for Vertex...534a4f1Version Packages (#14355)46a3584Backport: fix(google-vertex): don't send streamFunctionCallArguments for vert...5d213eaVersion Packages (#14346)61f1a61Backport: feat (provider/anthropic): add support for inference_geo provider o...78dd62fVersion Packages (#14335)295bebaBackport: fix(ai): fixlastAssistantMessageIsCompleteWithApprovalResponses...