# List all requests
leap-bundle list
# Example output
Bundle Requests (50 most recent)
βββββββββ³βββββββββββββββββββββββββββ³βββββββββββββ³βββββββββββββββββββββββ³ββββββββββββββββββββββββββββββ
β ID β Input Path β Status β Creation β Notes β
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β 18734 β /path/to/model/directory β completed β 2024-01-15T10:30:00Z β Processing completed. β
β 18733 β /path/to/other/directory β processing β 2024-01-15T09:15:00Z β Request is being processed. β
βββββββββ΄βββββββββββββββββββββββββββ΄βββββββββββββ΄βββββββββββββββββββββββ΄ββββββββββββββββββββββββββββββ
β Found 2 bundle requests.
# Get details for specific request
leap-bundle list 18734
# Example output
β Request Details:
ID: 18734
Input Path: /path/to/model/directory
Status: completed
Creation: 2024-01-15T10:30:00Z
Update: 2024-01-15T10:45:00Z
Notes: Processing completed. Run "leap-bundle download 18734" to download the bundle.
# Get details with JSON output
leap-bundle list 18734 --json
# Example JSON output
{
"request_id": "18734",
"input_path": "/path/to/model/directory",
"status": "completed",
"created_at": "2024-01-15T10:30:00Z",
"user_message": "Processing completed. Run \"leap-bundle download 18734\" to download the bundle."
}
# List all requests with JSON output
leap-bundle list --json
# Example JSON output
{
"requests": [
{
"request_id": "18734",
"input_path": "/path/to/model/directory",
"status": "completed",
"created_at": "2024-01-15T10:30:00Z",
"user_message": "Processing completed."
},
{
"request_id": "18733",
"input_path": "/path/to/other/directory",
"status": "processing",
"created_at": "2024-01-15T09:15:00Z",
"user_message": "Request is being processed."
}
]
}
# Show only the most recent request
leap-bundle list --last
# Example output
Most Recent Bundle Request
βββββββββ³βββββββββββββββββββββββββββ³βββββββββββββ³βββββββββββββββββββββββ³ββββββββββββββββββββββββββββββ
β ID β Input Path β Status β Creation β Notes β
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β 18734 β /path/to/model/directory β completed β 2024-01-15T10:30:00Z β Processing completed. β
βββββββββ΄βββββββββββββββββββββββββββ΄βββββββββββββ΄βββββββββββββββββββββββ΄ββββββββββββββββββββββββββββββ
β Found 1 bundle request.
# Show most recent request with JSON output
leap-bundle list --last --json
# Example JSON output
{
"requests": [
{
"request_id": "18734",
"input_path": "/path/to/model/directory",
"status": "completed",
"created_at": "2024-01-15T10:30:00Z",
"user_message": "Processing completed."
}
]
}