unchained / src /llm /openai /openai.mts
barton
Duplicate from jbilcke-hf/VideoChain-API
53aa97a
raw
history blame
158 Bytes
import { Configuration, OpenAIApi } from "openai"
export const openai = new OpenAIApi(
new Configuration({
apiKey: process.env.VC_OPENAI_API_KEY
})
)