Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Fetch the stored summary for a folder
def get_folder_summary( folder_id_or_path: str, ) -> Summary
async def get_folder_summary( folder_id_or_path: str, ) -> Summary
folder_id_or_path
Summary
from morphik import Morphik db = Morphik() summary = db.get_folder_summary("/projects/alpha") print(summary.content)
from morphik import AsyncMorphik async with AsyncMorphik() as db: summary = await db.get_folder_summary("/projects/alpha") print(summary.content)
Was this page helpful?