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>

15 lines (11 loc) 336 B
import { Field, InputType } from "type-graphql"; import { ActionInput } from "./action.input"; @InputType() export class FrontendInput { @Field(() => String, { nullable: true }) toDeprecate_fullContext?: string; @Field(() => [ActionInput]) actions: ActionInput[]; @Field(() => String, { nullable: true }) url?: string; }