2
0

♻️ (mistral) Use new ai sdk Mistral core

This commit is contained in:
Baptiste Arnaud
2024-05-21 16:08:35 +02:00
parent e91fced41d
commit 15b2901f8a
26 changed files with 191 additions and 645 deletions

View File

@ -101,7 +101,7 @@ export type FetcherDefinition<A extends AuthDefinition, T = {}> = {
*/
dependencies: (keyof T)[]
fetch: (params: {
credentials: CredentialsFromAuthDef<A>
credentials: CredentialsFromAuthDef<A> | undefined
options: T
}) => Promise<(string | { label: string; value: string })[]>
}