Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clarifeye.ai/llms.txt

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

Warehouse Import/Export

Export and import entire warehouses for backup or migration:
# Export a warehouse
zip_path = warehouse.export_warehouse(
    output_path="/path/to/export/warehouse_backup.zip"
)
print(f"Exported to: {zip_path}")

# Import a warehouse
new_warehouse = client.import_warehouse(
    zip_path="/path/to/export/warehouse_backup.zip"
)
print(f"Imported warehouse: {new_warehouse.id}")