Variable MJAIAgentHarnessSchemaConst
MJAIAgentHarnessSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
AIModel: ZodNullable<ZodString>;
AIModelID: ZodNullable<ZodString>;
AIVendor: ZodNullable<ZodString>;
AIVendorID: ZodNullable<ZodString>;
CapabilitySettings: ZodNullable<ZodAny>;
DefaultModel: ZodNullable<ZodString>;
Description: ZodNullable<ZodString>;
DriverClass: ZodString;
ExecutablePath: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Inactive">]>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
AIModel?: string;
AIModelID?: string;
AIVendor?: string;
AIVendorID?: string;
CapabilitySettings?: any;
DefaultModel?: string;
Description?: string;
DriverClass?: string;
ExecutablePath?: string;
ID?: string;
Name?: string;
Status?: "Active"
| "Inactive";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
AIModel?: string;
AIModelID?: string;
AIVendor?: string;
AIVendorID?: string;
CapabilitySettings?: any;
DefaultModel?: string;
Description?: string;
DriverClass?: string;
ExecutablePath?: string;
ID?: string;
Name?: string;
Status?: "Active"
| "Inactive";
},
> = ...
zod schema definition for the entity MJ: AI Agent Harnesses