feat(core): migrate native provider config

This commit is contained in:
Shoubhit Dash 2026-06-25 00:17:32 +05:30
commit 62e44a80e7
16 changed files with 358 additions and 99 deletions

View file

@ -4002,6 +4002,7 @@ export type ModelV2Info = {
| {
id: string
type: "native"
package?: string
url?: string
settings: {
[key: string]: unknown
@ -4036,6 +4037,9 @@ export type ModelV2Info = {
}
variants: Array<{
id: string
settings?: {
[key: string]: unknown
}
headers: {
[key: string]: string
}
@ -4096,6 +4100,7 @@ export type ProviderV2Info = {
}
| {
type: "native"
package?: string
url?: string
settings: {
[key: string]: unknown