File size: 262 Bytes
b25c9d5
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from __future__ import annotations
from pydantic import BaseModel


class Settings(BaseModel):
    clip_model_id: str = "openai/clip-vit-base-patch32"
    max_image_mb: int = 8
    default_domain_top_n: int = 2
    default_top_k: int = 5


settings = Settings()