Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abdibrahem
/
ai-agent
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f8328ff
ai-agent
/
config.py
abdibrahem
Add authorization to the project
4339866
28 days ago
raw
Copy download link
history
blame
Safe
217 Bytes
from
pydantic_settings
import
BaseSettings
class
Settings
(
BaseSettings
):
SECRET_KEY:
str
ALGORITHM:
str
ACCESS_TOKEN_EXPIRE_MINUTES:
int
class
Config
:
env_file =
".env"
settings = Settings()