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>

14 lines (10 loc) 244 B
import { Field, InputType } from "type-graphql"; @InputType() export class AgentStateInput { @Field(() => String) agentName: string; @Field(() => String) state: string; @Field(() => String, { nullable: true }) config?: string; }