Spaces:
Runtime error
Runtime error
File size: 167 Bytes
b432a1e |
1 2 3 4 5 6 7 8 9 10 |
from pydantic import BaseSettings
import os
class settings (BaseSettings):
huggingface_key : str = os.environ.get('HUGGINGFACE_API_KEY')
settings = settings()
|