-
Notifications
You must be signed in to change notification settings - Fork 4
[V6] Migrating to LanguageModelV3 for AI SDK v6 support #105
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
Draft
minpeter
wants to merge
25
commits into
main
Choose a base branch
from
v6
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+21,430
−1,912
Draft
Changes from 5 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
58f6c51
chore: initialize pre-release configuration for canary builds
minpeter df62ec5
Update dependency packages to v6 (beta channel) (#99)
minpeter c96c293
feat: upgrade language model interfaces to V3 (#101)
minpeter 90f8384
feat: update changeset workflow to use dynamic branch reference
minpeter 5c46b85
Version Packages (canary) (#104)
github-actions[bot] 4c992c3
feat: configure Biome linter file patterns
minpeter 977676f
refactor: update package naming convention and dictionary
minpeter bb75fec
Revert "refactor: update package naming convention and dictionary"
minpeter 717f944
refactor: reorganize community middleware into separate files
minpeter 754a818
feat: upgrade to AI SDK v3 and add middleware specification
minpeter be0734b
chore: upgrade ai package from peer to direct dependency
minpeter a9d1a4f
chore: switch JSONC formatter to VS Code built-in
minpeter 5e31402
feat: typescript references (#106)
minpeter f558b93
refactor: reorganize test files and add reasoning extraction middleware
minpeter 946668a
refactor: extract helper functions in reasoning middleware
minpeter 59f9f4b
refactor: update mock location data in test file
minpeter 3461fc1
feat: adjust model parameters and add Korean system prompt
minpeter 2778586
feat: improve system prompt structure and tool usage guidelines
minpeter f529ac0
refactor: remove emoji characters from prompt examples
minpeter fe90395
feat: openai proxy server (#107)
minpeter e7089c2
chore: upgrade dependencies to latest versions
minpeter 93c6a8c
Adopt Ultracite code standards and strictNullChecks
minpeter 5c5564c
Add Ultracite code standards and pre-commit formatting hooks
minpeter fbadc14
Upgrade turbo to version 2.7.1
minpeter b48924c
refactor: remove internal barrel files and enable noBarrelFile lintin…
minpeter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@ai-sdk-tool/parser": major | ||
| --- | ||
|
|
||
| upgrade language model interfaces to V3 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "mode": "pre", | ||
| "tag": "canary", | ||
| "initialVersions": { | ||
| "@ai-sdk-tool/examples-eval-core": "0.0.0", | ||
| "@ai-sdk-tool/examples-parser-core": "0.0.0", | ||
| "@ai-sdk-tool/examples-rxml-core": "0.0.0", | ||
| "@ai-sdk-tool/eval": "0.1.8", | ||
| "@ai-sdk-tool/parser": "2.1.7", | ||
| "@ai-sdk-tool/rxml": "0.1.1" | ||
| }, | ||
| "changesets": [ | ||
| "late-ducks-think", | ||
| "spicy-ants-scream" | ||
| ] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| "@ai-sdk-tool/parser": major | ||
| "@ai-sdk-tool/eval": major | ||
| --- | ||
|
|
||
| bump ai v6 (middleware v3 not yet) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| version: 2 | ||
| updates: | ||
| # Root package dependencies (pnpm workspace) | ||
| # This covers all workspace packages in apps/*, packages/*, and internals/* | ||
| - package-ecosystem: "npm" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| time: "09:00" | ||
| timezone: "Asia/Seoul" | ||
| open-pull-requests-limit: 5 | ||
| versioning-strategy: increase | ||
| groups: | ||
| npm-all-updates: | ||
| patterns: | ||
| - "*" | ||
| labels: | ||
| - "dependencies" | ||
| - "automated" | ||
| - "npm" | ||
| commit-message: | ||
| prefix: "dependabot:" | ||
| include: "scope" | ||
|
|
||
| # GitHub Actions | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| time: "09:00" | ||
| timezone: "Asia/Seoul" | ||
| open-pull-requests-limit: 5 | ||
| groups: | ||
| github-actions: | ||
| patterns: | ||
| - "*" | ||
| labels: | ||
| - "dependencies" | ||
| - "automated" | ||
| - "github-actions" | ||
| commit-message: | ||
| prefix: "dependabot:" | ||
| include: "scope" |
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,17 +15,17 @@ | |
| "ci:version": "changeset version" | ||
| }, | ||
| "devDependencies": { | ||
| "@biomejs/biome": "2.3.1", | ||
| "@biomejs/biome": "2.3.3", | ||
| "@changesets/cli": "2.29.7", | ||
| "@types/node": "^24.9.1", | ||
| "@vitest/coverage-v8": "^4.0.4", | ||
| "vitest": "^4.0.4", | ||
| "globals": "^16.4.0", | ||
| "@types/node": "^24.10.0", | ||
| "@vitest/coverage-v8": "^4.0.6", | ||
| "globals": "^16.5.0", | ||
| "jiti": "^2.6.1", | ||
| "npm-run-all": "^4.1.5", | ||
| "turbo": "^2.5.8", | ||
| "turbo": "^2.6.0", | ||
| "typescript": "5.9.3", | ||
| "ultracite": "6.0.4" | ||
| "ultracite": "6.2.0", | ||
| "vitest": "^4.0.6" | ||
| }, | ||
| "packageManager": "[email protected]", | ||
| "engines": { | ||
|
|
||
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.