Claude-Space / settings.py
ReyDev's picture
🔧 refactor(ai.py): reorder imports and improve code readability
42cdc8f unverified
raw
history blame
118 Bytes
import os
class Settings:
ANTHROPIC_API_KEY: str = os.environ.get("ANTHROPIC_API_KEY")
settings = Settings()