Shroominic
🧹 black cleanup
e0cbbfe
raw
history blame
336 Bytes
from pydantic import BaseSettings
from dotenv import load_dotenv
# .env file
load_dotenv()
class CodeInterpreterAPISettings(BaseSettings):
"""
CodeInterpreter API Config
"""
VERBOSE: bool = False
CODEBOX_API_KEY: str | None = None
OPENAI_API_KEY: str | None = None
settings = CodeInterpreterAPISettings()