File size: 272 Bytes
0883580
 
 
 
 
 
 
 
 
 
4312b6d
1
2
3
4
5
6
7
8
9
10
11
# app/config.py
from pydantic_settings import BaseSettings

class Settings(BaseSettings):
    MODEL_NAME: str = "flax-community/t5-recipe-generation"
    MAX_LENGTH: int = 512
    TEMPERATURE: float = 0.7
    TOP_P: float = 0.9

    class Config:
        env_file = ".env"