mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-07 14:22:38 +02:00
77 lines
No EOL
2.4 KiB
TypeScript
77 lines
No EOL
2.4 KiB
TypeScript
import { getCustomerIdForProject, logUsage } from "@/app/lib/billing";
|
|
import { USE_BILLING } from "@/app/lib/feature_flags";
|
|
import { redisClient } from "@/app/lib/redis";
|
|
import { CopilotAPIRequest } from "@/app/lib/types/copilot_types";
|
|
|
|
export async function GET(request: Request, props: { params: Promise<{ streamId: string }> }) {
|
|
const params = await props.params;
|
|
// get the payload from redis
|
|
const payload = await redisClient.get(`copilot-stream-${params.streamId}`);
|
|
if (!payload) {
|
|
return new Response("Stream not found", { status: 404 });
|
|
}
|
|
|
|
// parse the payload
|
|
const parsedPayload = CopilotAPIRequest.parse(JSON.parse(payload));
|
|
|
|
// fetch billing customer id
|
|
let billingCustomerId: string | null = null;
|
|
if (USE_BILLING) {
|
|
billingCustomerId = await getCustomerIdForProject(parsedPayload.projectId);
|
|
}
|
|
|
|
// Fetch the upstream SSE stream.
|
|
const upstreamResponse = await fetch(`${process.env.COPILOT_API_URL}/chat_stream`, {
|
|
method: 'POST',
|
|
body: payload,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Authorization': `Bearer ${process.env.COPILOT_API_KEY || 'test'}`,
|
|
},
|
|
cache: 'no-store',
|
|
});
|
|
|
|
// If the upstream request fails, return a 502 Bad Gateway.
|
|
if (!upstreamResponse.ok || !upstreamResponse.body) {
|
|
return new Response("Error connecting to upstream SSE stream", { status: 502 });
|
|
}
|
|
|
|
const reader = upstreamResponse.body.getReader();
|
|
|
|
const stream = new ReadableStream({
|
|
async start(controller) {
|
|
try {
|
|
// Read from the upstream stream continuously.
|
|
while (true) {
|
|
const { done, value } = await reader.read();
|
|
if (done) break;
|
|
// Immediately enqueue each received chunk.
|
|
controller.enqueue(value);
|
|
}
|
|
controller.close();
|
|
|
|
// increment copilot request count in billing
|
|
if (USE_BILLING && billingCustomerId) {
|
|
try {
|
|
await logUsage(billingCustomerId, {
|
|
type: "copilot_requests",
|
|
amount: 1,
|
|
});
|
|
} catch (error) {
|
|
console.error("Error logging usage", error);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
controller.error(error);
|
|
}
|
|
},
|
|
});
|
|
|
|
return new Response(stream, {
|
|
headers: {
|
|
"Content-Type": "text/event-stream",
|
|
"Cache-Control": "no-cache",
|
|
"Connection": "keep-alive",
|
|
},
|
|
});
|
|
} |