* 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>
14 lines
336 B
Python
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"]
|