@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
text/typescript
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.
*/
()
export class ExtensionsInput {
(() => OpenAIApiAssistantAPIInput, { nullable: true })
openaiAssistantAPI?: OpenAIApiAssistantAPIInput;
}
()
export class OpenAIApiAssistantAPIInput {
(() => String, { nullable: true })
runId?: string;
(() => String, { nullable: true })
threadId?: string;
}