NeuralNotwork's picture
Update get_key.py
7af0caa verified
raw
history blame
186 Bytes
"""Template for custom function or Pydantic model."""
import os
def get_key() -> str:
"""Get the key from environment variable."""
return os.environ.get("OPENAI_API_KEY", "")