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>

23 lines (16 loc) 511 B
import { Field, InputType } from "type-graphql"; @InputType() export class ForwardedParametersInput { @Field(() => String, { nullable: true }) model?: string; @Field(() => Number, { nullable: true }) maxTokens?: number; @Field(() => [String], { nullable: true }) stop?: string[]; @Field(() => String, { nullable: true }) toolChoice?: String; @Field(() => String, { nullable: true }) toolChoiceFunctionName?: string; @Field(() => Number, { nullable: true }) temperature?: number; }