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
Ability to issue or configure an API key inside Lingo. Users should be able to secure Lingo by requiring an OpenAI API key. This should be compatible with using OpenAI client like this:
import os
from openai import OpenAI
client = OpenAI(
# This is the default and can be omitted
api_key=os.environ.get("OPENAI_API_KEY"),
)
The text was updated successfully, but these errors were encountered:
Ability to issue or configure an API key inside Lingo. Users should be able to secure Lingo by requiring an OpenAI API key. This should be compatible with using OpenAI client like this:
The text was updated successfully, but these errors were encountered: