
//#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.cts.map