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 latest folder metadata from the API
Folder
def get_info() -> FolderInfo
async def get_info() -> FolderInfo
FolderInfo
full_path
parent_id
depth
child_count
from morphik import Morphik db = Morphik() folder = db.get_folder("/projects/alpha") info = folder.get_info() print(info.full_path, info.child_count)
from morphik import AsyncMorphik async with AsyncMorphik() as db: folder = await db.get_folder("/projects/alpha") info = await folder.get_info() print(info.full_path, info.child_count)
Was this page helpful?