feat(core): sync models.dev reasoning options
This commit is contained in:
parent
80c0b06980
commit
a47ff5c746
9 changed files with 112 additions and 2 deletions
|
|
@ -2082,6 +2082,9 @@ export type Model = {
|
|||
capabilities: {
|
||||
temperature: boolean
|
||||
reasoning: boolean
|
||||
reasoningOptions?: Array<{
|
||||
[key: string]: unknown
|
||||
}>
|
||||
attachment: boolean
|
||||
toolcall: boolean
|
||||
input: {
|
||||
|
|
@ -2878,6 +2881,9 @@ export type ModelV2Info = {
|
|||
}
|
||||
capabilities: {
|
||||
tools: boolean
|
||||
reasoningOptions?: Array<{
|
||||
[key: string]: unknown
|
||||
}>
|
||||
input: Array<string>
|
||||
output: Array<string>
|
||||
}
|
||||
|
|
@ -4230,6 +4236,9 @@ export type ModelV2Info1 = {
|
|||
}
|
||||
capabilities: {
|
||||
tools: boolean
|
||||
reasoningOptions?: Array<{
|
||||
[key: string]: unknown
|
||||
}>
|
||||
input: Array<string>
|
||||
output: Array<string>
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue