You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importOpenAIfrom"openai";constbaseURL=`${process.env.GATEWAY_URL??"http://localhost:8000"}/v1`;constapiKey=process.env.KEYCHAIN_KEY;if(!apiKey)thrownewError("Set KEYCHAIN_KEY");constclient=newOpenAI({ baseURL, apiKey });constresponse=awaitclient.chat.completions.create({model: "keychain-medium",messages: [{role: "user",content: "Draft a launch tweet for an API gateway."}],});console.log(response.choices[0]?.message?.content);