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>

22 lines (17 loc) 543 B
import { Field, InputType } from "type-graphql"; /** * The extensions input is used to pass additional information to the copilot runtime, specific to a * service adapter or agent framework. */ @InputType() export class ExtensionsInput { @Field(() => OpenAIApiAssistantAPIInput, { nullable: true }) openaiAssistantAPI?: OpenAIApiAssistantAPIInput; } @InputType() export class OpenAIApiAssistantAPIInput { @Field(() => String, { nullable: true }) runId?: string; @Field(() => String, { nullable: true }) threadId?: string; }