Determine supported user byok providers from Vercel metadata instead of model prefix#556
Merged
chrarnoldus merged 10 commits intomainfrom Feb 25, 2026
Merged
Determine supported user byok providers from Vercel metadata instead of model prefix#556chrarnoldus merged 10 commits intomainfrom
chrarnoldus merged 10 commits intomainfrom
Conversation
Contributor
Code Review SummaryStatus: 1 New Issue Found | Recommendation: Address before merge Overview
Issue Details (click to expand)SUGGESTION
Other Observations (not in diff)
Files Reviewed (6 files)
|
| import { readDb, type db } from '@/lib/drizzle'; | ||
| import { byok_api_keys, modelsByProvider } from '@/db/schema'; | ||
| import { eq, and, inArray } from 'drizzle-orm'; | ||
| import { desc } from 'drizzle-orm'; |
Contributor
There was a problem hiding this comment.
SUGGESTION: Duplicate drizzle-orm import — desc can be combined with the import on line 3.
Suggested change
| import { desc } from 'drizzle-orm'; | |
| import { eq, and, inArray, desc } from 'drizzle-orm'; |
markijbema
approved these changes
Feb 25, 2026
lambertjosh
approved these changes
Feb 25, 2026
kilo-code-bot bot
added a commit
that referenced
this pull request
Feb 25, 2026
Merge the separate 'desc' import into the existing drizzle-orm import as suggested in PR #556 review comment.
chrarnoldus
added a commit
that referenced
this pull request
Feb 25, 2026
Addresses the review suggestion from PR #556 ([comment](#556 (comment))): combine the duplicate `drizzle-orm` import — `desc` is now merged into the existing import on line 3. --- Built for [Christiaan](https://kilo-code.slack.com/archives/C08H16KGBUK/p1772026359129719) by [Kilo for Slack](https://kilo.ai/features/slack-integration)
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.
No description provided.