import { z } from "zod";
export const sendMessageInputSchema = {
message: z
.string()
.min(1)
.describe(
"The message to send to human users. Supports Markdown features such as bold, italics, strikethrough, bullet lists, and code blocks. "
),
requires_response: z
.boolean()
.describe(
"Waits for a reply from the human user. A response often takes several minutes, and it will timeout if no reply is received."
),
};
export const sendMessageOutputSchema = {
message: z.string().describe("The response from human users, if any."),
username: z
.string()
.describe("The username of the human user who responded."),
};