-
Notifications
You must be signed in to change notification settings - Fork 1
fix: update benchmark questions for CLI and databases #13
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3bf6fec
fix: update benchmark questions for CLI and databases
ChiragAgg5k bf82989
add some more questions
ChiragAgg5k 6015c6e
finalize new questions
Meldiron 5083753
Use Open Router SDK
Meldiron f91b595
Merge branch 'main' into fix-benchmark-questions
Meldiron 32945d9
Fix OpenRouter integration
Meldiron d3b8749
Suppot hardcoded providers
Meldiron 83c4a8b
Streaming support
Meldiron 678037c
Finalize design, finalize benchmarks
Meldiron 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
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.
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.
🧩 Analysis chain
🌐 Web query:
OpenRouter TypeScript SDK official documentation version pinning recommendations💡 Result:
OpenRouter’s official TypeScript SDK is explicitly labeled beta, and the maintainers warn that there may be breaking changes between versions without a major-version bump—so they recommend pinning to a specific
@openrouter/sdkversion (i.e., don’t rely on floating ranges like^if you want reproducible installs). [1][2]Practical implication: install/update intentionally (e.g.,
npm i@openrouter/sdk@<exact-version>) and keep that exact version in yourpackage.jsonso repeated installs don’t unexpectedly pick up breaking changes. [1]🌐 Web query:
OpenRouter SDK beta status GitHub releases💡 Result:
OpenRouterTeam/typescript-sdk): latest release v0.9.11 published Feb 23, 2026. [3]OpenRouterTeam/python-sdk): latest release v0.7.11 published Feb 23, 2026. [4]Sources
[1] (github.com)
[2] (github.com)
[3] (github.com)
[4] (github.com)
Citations:
Pin
@openrouter/sdkto an exact version for reproducible benchmark runs.The OpenRouter SDK is explicitly labeled as beta with potential breaking changes between versions without major-version bumps. The maintainers recommend pinning to an exact version. Using
^0.9.11allows minor and patch updates that could alter benchmark scores; change to0.9.11for consistent results across runs.🔧 Proposed change
"dependencies": { - "@openrouter/sdk": "^0.9.11" + "@openrouter/sdk": "0.9.11" }📝 Committable suggestion
🤖 Prompt for AI Agents