forked from eraycc/ossapi-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.ts
More file actions
279 lines (258 loc) · 6.94 KB
/
main.ts
File metadata and controls
279 lines (258 loc) · 6.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
import { GPTOSS } from "./gptoss.ts";
// Supported models
const models = {
"gpt-oss-120b": {
id: "gpt-oss-120b",
object: "model",
created: Date.now(),
owned_by: "gpt-oss"
},
"gpt-oss-20b": {
id: "gpt-oss-20b",
object: "model",
created: Date.now(),
owned_by: "gpt-oss"
}
};
const defaultModel = "gpt-oss-120b";
// Handle /v1/models endpoint
function handleModelsRequest(): Response {
return new Response(
JSON.stringify({
object: "list",
data: Object.values(models)
}),
{
status: 200,
headers: { "Content-Type": "application/json" }
}
);
}
// Handle /v1/chat/completions endpoint
async function handleChatRequest(request: Request): Promise<Response> {
if (request.method !== "POST") {
return new Response(
JSON.stringify({
error: {
message: "Method not allowed",
type: "invalid_request_error"
}
}),
{
status: 405,
headers: { "Content-Type": "application/json" }
}
);
}
try {
const body = await request.json();
const stream = body.stream || false;
const model = body.model || defaultModel;
const messages = body.messages || [];
// Validate model
if (!Object.keys(models).includes(model)) {
return new Response(
JSON.stringify({
error: {
message: `Model '${model}' not found`,
type: "invalid_request_error"
}
}),
{
status: 400,
headers: { "Content-Type": "application/json" }
}
);
}
// Validate messages
if (!Array.isArray(messages) || messages.length === 0) {
return new Response(
JSON.stringify({
error: {
message: "Messages must be a non-empty array",
type: "invalid_request_error"
}
}),
{
status: 400,
headers: { "Content-Type": "application/json" }
}
);
}
const gptoss = new GPTOSS();
const response = await gptoss.chatCompletion({
model,
messages,
stream
});
if (stream) {
// Create SSE stream
const readable = new ReadableStream({
async start(controller) {
try {
const encoder = new TextEncoder();
for await (const chunk of response) {
const data = {
id: `chatcmpl-${crypto.randomUUID()}`,
object: "chat.completion.chunk",
created: Math.floor(Date.now() / 1000),
model,
choices: [{
index: 0,
delta: {
content: chunk
},
finish_reason: null
}]
};
controller.enqueue(encoder.encode(`data: ${JSON.stringify(data)}\n\n`));
}
// Send done event
const doneData = {
id: `chatcmpl-${crypto.randomUUID()}`,
object: "chat.completion.chunk",
created: Math.floor(Date.now() / 1000),
model,
choices: [{
index: 0,
delta: {},
finish_reason: "stop"
}]
};
controller.enqueue(encoder.encode(`data: ${JSON.stringify(doneData)}\n\n`));
controller.enqueue(encoder.encode("data: [DONE]\n\n"));
controller.close();
} catch (error) {
console.error("Stream error:", error);
controller.error(error);
}
}
});
return new Response(readable, {
status: 200,
headers: {
"Content-Type": "text/event-stream",
"Cache-Control": "no-cache",
"Connection": "keep-alive"
}
});
} else {
// Non-streaming response
let fullResponse = "";
for await (const chunk of response) {
fullResponse += chunk;
}
return new Response(
JSON.stringify({
id: `chatcmpl-${crypto.randomUUID()}`,
object: "chat.completion",
created: Math.floor(Date.now() / 1000),
model,
choices: [{
index: 0,
message: {
role: "assistant",
content: fullResponse
},
finish_reason: "stop"
}],
usage: {
prompt_tokens: 0,
completion_tokens: 0,
total_tokens: 0
}
}),
{
status: 200,
headers: { "Content-Type": "application/json" }
}
);
}
} catch (error) {
console.error("Chat completion error:", error);
return new Response(
JSON.stringify({
error: {
message: "Internal server error",
type: "server_error"
}
}),
{
status: 500,
headers: { "Content-Type": "application/json" }
}
);
}
}
// Main request handler
async function handler(request: Request): Promise<Response> {
const url = new URL(request.url);
// Add CORS headers if needed
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type, Authorization"
};
// Handle OPTIONS request for CORS
if (request.method === "OPTIONS") {
return new Response(null, {
status: 204,
headers: corsHeaders
});
}
try {
let response: Response;
if (url.pathname === "/v1/models" && request.method === "GET") {
response = handleModelsRequest();
} else if (url.pathname === "/v1/chat/completions" && request.method === "POST") {
response = await handleChatRequest(request);
} else if (url.pathname === "/" && request.method === "GET") {
response = new Response(
JSON.stringify({
status: "ok",
message: "GPT-OSS API Proxy is running",
endpoints: ["/v1/models", "/v1/chat/completions"]
}),
{
status: 200,
headers: { "Content-Type": "application/json" }
}
);
} else {
response = new Response(
JSON.stringify({
error: {
message: `Path ${url.pathname} not found`,
type: "invalid_request_error"
}
}),
{
status: 404,
headers: { "Content-Type": "application/json" }
}
);
}
// Add CORS headers to response
Object.entries(corsHeaders).forEach(([key, value]) => {
response.headers.set(key, value);
});
return response;
} catch (e) {
console.error("Error in handler:", e);
return new Response(
JSON.stringify({
error: {
message: "Internal server error",
type: "server_error"
}
}),
{
status: 500,
headers: { "Content-Type": "application/json", ...corsHeaders }
}
);
}
}
// Start server
console.log("Server starting...");
Deno.serve(handler);