mirror of
https://github.com/docling-project/docling-serve.git
synced 2025-11-29 08:33:50 +00:00
9 lines
217 B
Python
9 lines
217 B
Python
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
do_ocr: bool = True
|
|
do_table_structure: bool = True
|
|
|
|
model_config = SettingsConfigDict(env_prefix="DOCLING_")
|