@monsoft/davinci-ai
Version:
Davinci AI Client
31 lines (30 loc) • 768 B
TypeScript
import z from 'zod';
export declare const messageRetrieveSuggestionsRoute: {
path: string;
input: z.ZodUndefined;
output: z.ZodObject<{
messages: z.ZodArray<z.ZodObject<{
content: z.ZodString;
uuid: z.ZodString;
}, "strip", z.ZodTypeAny, {
content: string;
uuid: string;
}, {
content: string;
uuid: string;
}>, "many">;
parentMessageId: z.ZodString;
}, "strip", z.ZodTypeAny, {
messages: {
content: string;
uuid: string;
}[];
parentMessageId: string;
}, {
messages: {
content: string;
uuid: string;
}[];
parentMessageId: string;
}>;
};