Variable MJAIAgentPromptSchemaConst
MJAIAgentPromptSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Agent: ZodNullable<ZodString>;
AgentID: ZodString;
Configuration: ZodNullable<ZodString>;
ConfigurationID: ZodNullable<ZodString>;
ContextBehavior: ZodUnion<
[
ZodLiteral<"Complete">,
ZodLiteral<"Custom">,
ZodLiteral<"InitialMessages">,
ZodLiteral<"None">,
ZodLiteral<"RecentMessages">,
ZodLiteral<"Smart">,
],
>;
ContextMessageCount: ZodNullable<ZodNumber>;
ExecutionOrder: ZodNumber;
ID: ZodString;
Prompt: ZodString;
PromptID: ZodString;
Purpose: ZodNullable<ZodString>;
Status: ZodUnion<
[
ZodLiteral<"Active">,
ZodLiteral<"Deprecated">,
ZodLiteral<"Inactive">,
ZodLiteral<"Preview">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Agent?: string;
AgentID?: string;
Configuration?: string;
ConfigurationID?: string;
ContextBehavior?: | "Custom"
| "None"
| "Complete"
| "InitialMessages"
| "RecentMessages"
| "Smart";
ContextMessageCount?: number;
ExecutionOrder?: number;
ID?: string;
Prompt?: string;
PromptID?: string;
Purpose?: string;
Status?: "Active"
| "Deprecated"
| "Inactive"
| "Preview";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Agent?: string;
AgentID?: string;
Configuration?: string;
ConfigurationID?: string;
ContextBehavior?: | "Custom"
| "None"
| "Complete"
| "InitialMessages"
| "RecentMessages"
| "Smart";
ContextMessageCount?: number;
ExecutionOrder?: number;
ID?: string;
Prompt?: string;
PromptID?: string;
Purpose?: string;
Status?: "Active"
| "Deprecated"
| "Inactive"
| "Preview";
},
> = ...
zod schema definition for the entity MJ: AI Agent Prompts