mirror of
https://github.com/docling-project/docling-serve.git
synced 2025-11-29 08:33:50 +00:00
8 lines
143 B
Python
8 lines
143 B
Python
from pydantic import AnyUrl, BaseModel
|
|
|
|
|
|
class CallbackSpec(BaseModel):
|
|
url: AnyUrl
|
|
headers: dict[str, str] = {}
|
|
ca_cert: str = ""
|