remove secondary codegen

This commit is contained in:
Dax Raad
2025-05-29 11:32:55 -04:00
parent 42c1cd6a85
commit 6f604bd0f9
14 changed files with 512 additions and 246 deletions

View File

@@ -11,7 +11,6 @@ import {
streamText,
} from "ai";
import { z } from "zod";
import { z as zv4 } from "zod/v4";
import * as tools from "../tool";
import { Decimal } from "decimal.js";
@@ -35,8 +34,8 @@ export namespace Session {
export const Event = {
Updated: Bus.event(
"session.updated",
zv4.object({
sessionID: zv4.string(),
z.object({
sessionID: z.string(),
}),
),
};