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) 272 B
import { Field, InputType } from "type-graphql"; @InputType() export class AgentSessionInput { @Field(() => String) agentName: string; @Field(() => String, { nullable: true }) threadId?: string; @Field(() => String, { nullable: true }) nodeName?: string; }