Initial Commit

This commit is contained in:
2025-06-27 22:45:20 -05:00
parent f35b07ecca
commit 6a5c84b609
9 changed files with 5884 additions and 2 deletions

118
src/server.ts Normal file
View File

@@ -0,0 +1,118 @@
import http from 'http';
import { sendChat, sendChatStream } from './chatwrapper';
import { mapRequest, mapResponse, mapStreamChunk } from './mapper';
/* ── basic config ─────────────────────────────────────────────────── */
const PORT = Number(process.env.PORT ?? 11434);
/* ── CORS helper ──────────────────────────────────────────────────── */
function allowCors(res: http.ServerResponse) {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Headers', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET,POST,OPTIONS');
}
/* ── JSON body helper ─────────────────────────────────────────────── */
function readJSON(
req: http.IncomingMessage,
res: http.ServerResponse,
): Promise<any | null> {
return new Promise((resolve) => {
let data = '';
req.on('data', (c) => (data += c));
req.on('end', () => {
if (!data) {
if (req.method === 'POST') {
res.writeHead(400, { 'Content-Type': 'application/json' });
res.end(
JSON.stringify({
error: { message: 'Request body is missing for POST request' },
}),
);
}
return resolve(null);
}
try {
resolve(JSON.parse(data));
} catch {
res.writeHead(400, { 'Content-Type': 'application/json' }); // malformed JSON
res.end(JSON.stringify({ error: { message: 'Malformed JSON' } }));
resolve(null);
}
});
});
}
/* ── server ───────────────────────────────────────────────────────── */
http
.createServer(async (req, res) => {
allowCors(res);
const url = new URL(req.url ?? '/', `http://${req.headers.host}`);
const pathname = url.pathname.replace(/\/$/, '') || '/';
console.log(`[proxy] ${req.method} ${url.pathname}`);
/* -------- pre-flight ---------- */
if (req.method === 'OPTIONS') {
res.writeHead(204).end();
return;
}
/* -------- /v1/models ---------- */
if (pathname === "/v1/models" || pathname === "/models") {
res.writeHead(200, { "Content-Type": "application/json" });
res.end(
JSON.stringify({
data: [
{
id: "gemini-2.5-pro",
object: "model",
owned_by: "google",
},
],
})
);
return;
}
/* ---- /v1/chat/completions ---- */
if (
(pathname === "/chat/completions" ||
(pathname === "/v1/chat/completions" ) && req.method === "POST")
) {
const body = await readJSON(req, res);
console.log("Request body:", body);
if (!body) return;
try {
const { geminiReq, tools } = await mapRequest(body);
console.log("Mapped Gemini request:", geminiReq);
if (body.stream) {
res.writeHead(200, {
"Content-Type": "text/event-stream",
"Cache-Control": "no-cache",
Connection: "keep-alive",
});
for await (const chunk of sendChatStream({ ...geminiReq, tools })) {
console.log("Stream chunk:", chunk);
res.write(`data: ${JSON.stringify(mapStreamChunk(chunk))}\n\n`);
}
res.end("data: [DONE]\n\n");
} else {
const gResp = await sendChat({ ...geminiReq, tools });
res.writeHead(200, { "Content-Type": "application/json" });
res.end(JSON.stringify(mapResponse(gResp)));
}
} catch (err: any) {
console.error("Proxy error ➜", err);
res.writeHead(500, { "Content-Type": "application/json" });
res.end(JSON.stringify({ error: { message: err.message } }));
}
return;
}
/* ---- anything else ---------- */
res.writeHead(404).end();
})
.listen(PORT, () => console.log(`OpenAI proxy on :${PORT}`));