NERDDISCO's picture
feat: calls to OpenAI API are done in the frontend only
65cfba9
raw
history blame
159 Bytes
import { Configuration, OpenAIApi } from "openai";
export const createClient = (apiKey: string) => {
return new OpenAIApi(new Configuration({ apiKey }));
};