File size: 159 Bytes
65567a2
2f65818
 
 
 
1
2
3
4
5
6
import { Configuration, OpenAIApi } from "openai";

export const createClient = (apiKey: string) => {
	return new OpenAIApi(new Configuration({ apiKey }));
};