Chatbot-Documents / src /openai_client.py
amitcoolll's picture
Initial RAG document chatbot deployment
c4233b7
raw
history blame contribute delete
259 Bytes
import os
from openai import OpenAI
def get_client() -> OpenAI:
key = os.getenv("OPENAI_API_KEY")
if not key:
raise RuntimeError("OPENAI_API_KEY not set. Add it in Hugging Face Space -> Settings -> Secrets.")
return OpenAI(api_key=key)