123456789101112131415161718192021222324252627282930313233343536 |
- import { OpenAIApi, Configuration } from "openai";
- import { ChatRequest } from "./typing";
- const isProd = process.env.NODE_ENV === "production";
- let apiKey = process.env.OPENAI_API_KEY;
- const openai = new OpenAIApi(
- new Configuration({
- apiKey,
- })
- );
- export async function POST(req: Request) {
- try {
- const requestBody = (await req.json()) as ChatRequest;
- const completion = await openai!.createChatCompletion(
- {
- ...requestBody,
- },
- isProd
- ? {}
- : {
- proxy: {
- protocol: "socks",
- host: "127.0.0.1",
- port: 7890,
- },
- }
- );
- return new Response(JSON.stringify(completion.data));
- } catch (e) {
- return new Response(JSON.stringify(e));
- }
- }
|