All files / ragchat-api/validationSchemes AI.js

100% Statements 29/29
100% Branches 0/0
100% Functions 0/0
100% Lines 29/29

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 291x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x
import { z } from 'zod';
 
// GET MODELS
export const getModelsSchema = z.object({
  filter: z.string(),
});
 
// GET MODEL
export const getModelSchema = z.object({
  model: z.string().min(1),
});
 
// INSTALL MODEL
export const installModelSchema = z.object({
  model: z.string().min(1),
  stream: z.boolean().optional(),
});
 
// DELETE MODEL
export const deleteModelSchema = z.object({
  model: z.string().min(1),
});
 
// CHAT
export const chatSchema = z.object({
  model: z.string().min(1),
  input: z.string().min(1),
  chatId: z.string().min(1).optional(),
});