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>

20 lines (15 loc) 303 B
import { Field, ObjectType } from "type-graphql"; @ObjectType() export class Agent { @Field(() => String) id: string; @Field(() => String) name: string; @Field(() => String) description?: string; } @ObjectType() export class AgentsResponse { @Field(() => [Agent]) agents: Agent[]; }