File size: 186 Bytes
7af0caa
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"""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", "")