mirror of
https://github.com/docling-project/docling-serve.git
synced 2025-11-29 16:43:24 +00:00
8
docling_serve/settings.py
Normal file
8
docling_serve/settings.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from pydantic_settings import BaseSettings, SettingsConfigDict
|
||||
|
||||
|
||||
class Settings(BaseSettings):
|
||||
do_ocr: bool = True
|
||||
do_table_structure: bool = True
|
||||
|
||||
model_config = SettingsConfigDict(env_prefix="DOCLING_")
|
||||
Reference in New Issue
Block a user