remove min/max in tool schemas
publish / publish (push) Has been cancelled

This commit is contained in:
Dax Raad
2025-07-29 17:39:31 -04:00
parent f30b5c0ec4
commit c9b9c844db
4 changed files with 3 additions and 12 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import DESCRIPTION_WRITE from "./todowrite.txt"
import { App } from "../app/app"
const TodoInfo = z.object({
content: z.string().min(1).describe("Brief description of the task"),
content: z.string().describe("Brief description of the task"),
status: z.enum(["pending", "in_progress", "completed", "cancelled"]).describe("Current status of the task"),
priority: z.enum(["high", "medium", "low"]).describe("Priority level of the task"),
id: z.string().describe("Unique identifier for the todo item"),