UNPKG

@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>

18 lines (13 loc) 344 B
import { Field, ObjectType } from "type-graphql"; import { BaseMessageOutput } from "./copilot-response.type"; @ObjectType() export class LoadAgentStateResponse { @Field(() => String) threadId: string; @Field(() => Boolean) threadExists: boolean; @Field(() => String) state: string; @Field(() => String) messages: string; }