@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
text/typescript
import { Field, InputType } from "type-graphql";
()
export class ForwardedParametersInput {
(() => String, { nullable: true })
model?: string;
(() => Number, { nullable: true })
maxTokens?: number;
(() => [String], { nullable: true })
stop?: string[];
(() => String, { nullable: true })
toolChoice?: String;
(() => String, { nullable: true })
toolChoiceFunctionName?: string;
(() => Number, { nullable: true })
temperature?: number;
}