UNPKG

@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;" />

18 lines 634 B
import "reflect-metadata"; //#region src/graphql/types/extensions-response.type.d.ts /** * 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. */ declare class OpenAIApiAssistantAPIResponse { runId?: string; threadId?: string; } declare class ExtensionsResponse { openaiAssistantAPI?: OpenAIApiAssistantAPIResponse; } //#endregion export { ExtensionsResponse }; //# sourceMappingURL=extensions-response.type.d.mts.map