Skip to main content
def get_document_summary(
    document_id: str,
) -> Summary

Parameters

  • document_id (str): ID of the document

Returns

  • Summary: Stored summary payload for the document

Examples

from morphik import Morphik

db = Morphik()
summary = db.get_document_summary("doc_123")
print(summary.content)