Spaces:
Configuration error
Configuration error
File size: 217 Bytes
44657b5 |
1 2 3 4 5 6 7 8 9 |
from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
do_ocr: bool = True
do_table_structure: bool = True
model_config = SettingsConfigDict(env_prefix="DOCLING_")
|