File size: 1,041 Bytes
6a37520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { OpenAIApi, Configuration } from "openai";
import { ChatImageRequest } from "../openai-image/typing";
import { NextRequest, NextResponse } from "next/server";
import { auth } from "../auth";

export async function POST(req: NextRequest) {
  const authResult = auth(req);
  if (authResult.error) {
    return NextResponse.json(authResult, {
      status: 401,
    });
  }
  try {
    let apiKey = process.env.OPENAI_API_KEY;

    const userApiKey = req.headers.get("token");
    if (userApiKey) {
      apiKey = userApiKey;
      console.log("user api key:" + apiKey);
    }

    const openai = new OpenAIApi(
      new Configuration({
        apiKey,
      }),
    );

    const requestBody = (await req.json()) as ChatImageRequest;
    const response = await openai.createImage({
      ...requestBody,
    });
    console.log("[Chat-image]" + response.data.data[0].url);
    return new Response(JSON.stringify(response.data));
  } catch (e) {
    console.error("[Chat-image] ", e);
    return new Response(JSON.stringify(e));
  }
}