/** * Parses the response from the https://chat.openai.com/backend-api/conversation endpoint * The response is of content-type: text/event-stream and not JSON. * That's why we need to get the raw text from the response first and parse it manually. * The final response is the last chunk of the stream. * @param data */ export default function parseStreamedGptResponse(data: string): { message: any; messageId: any; conversationId: any; isDone: boolean; } | null; //# sourceMappingURL=parseStreamedGptResponse.d.ts.map