@copilotkit/runtime
Version:
<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />
24 lines (19 loc) • 682 B
text/typescript
import { Field, ObjectType } from "type-graphql";
/**
* The extensions response is used to receive additional information from the copilot runtime, specific to a
* service adapter or agent framework.
*
* Next time a request to the runtime is made, the extensions response will be included in the request as input.
*/
()
export class ExtensionsResponse {
(() => OpenAIApiAssistantAPIResponse, { nullable: true })
openaiAssistantAPI?: OpenAIApiAssistantAPIResponse;
}
()
export class OpenAIApiAssistantAPIResponse {
(() => String, { nullable: true })
runId?: string;
(() => String, { nullable: true })
threadId?: string;
}