You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { ActionOutput, AgentActionDefinition } from "@/types";
export const CompleteAction = z
.object({
success: z
.boolean()
.describe("Whether the task was completed successfully."),
text: z
.string()
.nullable()
.describe(
"The text to complete the task with, make this answer the ultimate goal of the task. Be sure to include all the information requested in the task in explicit detail."
),
})
.describe("Complete the task, this must be the final action in the sequence");
export type CompleteActionType = z.infer<typeof CompleteAction>;