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>

17 lines (13 loc) 397 B
import { Field, InputType } from "type-graphql"; @InputType() export class GuardrailsRuleInput { @Field(() => [String], { nullable: true }) allowList?: string[] = []; @Field(() => [String], { nullable: true }) denyList?: string[] = []; } @InputType() export class GuardrailsInput { @Field(() => GuardrailsRuleInput, { nullable: false }) inputValidationRules: GuardrailsRuleInput; }