Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.nomadicml.com/llms.txt

Use this file to discover all available pages before exploring further.

create_folder()

Create a new folder in a specific scope. Raises an error if a folder with the same name already exists in the target scope.
marketing = client.create_folder("marketing", description="Q1 campaign")
Parameters:
ParameterTypeDefaultDescription
namestrFolder name to create
scope'user' | 'org''user'Target scope for creation
descriptionstr | NoneNoneOptional folder description
Returns: Dict with folder id, name, org_id, created_at, and description

get_folder()

Lookup a folder by name. Defaults to your personal scope; pass scope="org" for organization folders.
folder = client.get_folder("fleet_uploads")
org_folder = client.get_folder("fleet_uploads", scope="org")
Parameters:
ParameterTypeDefaultDescription
namestrFolder name to look up
scope'user' | 'org''user'Scope to search within
Returns: Dict with folder id, name, org_id, scope, created_at, created_by, description, and video_count