File size: 177 Bytes
6fc15d0
 
b432a1e
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from pydantic_settings import BaseSettings

import os


class settings (BaseSettings):
    huggingface_key : str = os.environ.get('HUGGINGFACE_API_KEY')


settings = settings()