@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
text/typescript
import { Field, InputType } from "type-graphql";
()
export class GuardrailsRuleInput {
(() => [String], { nullable: true })
allowList?: string[] = [];
(() => [String], { nullable: true })
denyList?: string[] = [];
}
()
export class GuardrailsInput {
(() => GuardrailsRuleInput, { nullable: false })
inputValidationRules: GuardrailsRuleInput;
}