Files
biz-bud/tests/stubs/docling/document_converter.py
Travis Vasceannie 8ad47a7640 Modernize research graph metadata for LangGraph v1 (#60)
* Modernize research graph metadata for LangGraph v1

* Update src/biz_bud/core/langgraph/graph_builder.py

Co-authored-by: qodo-merge-pro[bot] <151058649+qodo-merge-pro[bot]@users.noreply.github.com>

---------

Co-authored-by: qodo-merge-pro[bot] <151058649+qodo-merge-pro[bot]@users.noreply.github.com>
2025-09-19 03:01:18 -04:00

14 lines
336 B
Python

"""Minimal stub for :mod:`docling.document_converter`."""
from __future__ import annotations
class DocumentConverter:
"""Very small shim returning placeholder text."""
def convert(self, file_path: str) -> str: # pragma: no cover - trivial
return f"Converted document: {file_path}"
__all__ = ["DocumentConverter"]