initial version of tui

This commit is contained in:
Ramnique Singh 2025-12-16 14:48:04 +05:30
parent 89a2fc583e
commit d0d0a3612e
14 changed files with 2079 additions and 70 deletions

View file

@ -1,6 +1,6 @@
import z from "zod"
import { Agent } from "../agents/agents.js"
import { McpServerDefinition } from "../mcp/mcp.js";
import { McpServerDefinition } from "../mcp/schema.js";
export const Example = z.object({
id: z.string(),
@ -9,4 +9,4 @@ export const Example = z.object({
entryAgent: z.string().optional(),
agents: z.array(Agent).optional(),
mcpServers: z.record(z.string(), McpServerDefinition).optional(),
});
});