@copilotkit/runtime
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
19 lines (14 loc) • 443 B
text/typescript
import { Field, InputType } from "type-graphql";
import { MetaEventName } from "../types/meta-events.type";
import { MessageInput } from "./message.input";
()
export class MetaEventInput {
(() => MetaEventName)
name: MetaEventName;
(() => String)
value?: string;
(() => String, { nullable: true })
response?: string;
(() => [MessageInput], { nullable: true })
messages?: MessageInput[];
}