18 lines
499 B
TypeScript
18 lines
499 B
TypeScript
import { z } from 'zod';
|
|
import { createJsonErrorResponseHandler } from '../spec';
|
|
|
|
const mistralErrorDataSchema = z.object({
|
|
object: z.literal('error'),
|
|
message: z.string(),
|
|
type: z.string(),
|
|
param: z.string().nullable(),
|
|
code: z.string().nullable(),
|
|
});
|
|
|
|
export type MistralErrorData = z.infer<typeof mistralErrorDataSchema>;
|
|
|
|
export const mistralFailedResponseHandler = createJsonErrorResponseHandler({
|
|
errorSchema: mistralErrorDataSchema,
|
|
errorToMessage: data => data.message,
|
|
});
|