mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import { z } from "zod";
|
|
|
|
export const AgentSchema = z.object({
|
|
name: z.string().nonempty("Name is required"),
|
|
description: z.string(),
|
|
});
|
|
|
|
export type AgentType = z.infer<typeof AgentSchema>;
|