mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-30 10:56:29 +02:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
|
|
import z from "zod";
|
||
|
|
|
||
|
|
import { RunEvent } from "../entities/run-events.js";
|
||
|
|
|
||
|
|
export const Run = z.object({
|
||
|
|
id: z.string(),
|
||
|
|
createdAt: z.iso.datetime(),
|
||
|
|
agentId: z.string(),
|
||
|
|
log: z.array(RunEvent),
|
||
|
|
});
|