indexify 0.2.20__tar.gz → 0.2.21__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {indexify-0.2.20 → indexify-0.2.21}/PKG-INFO +1 -1
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/task_reporter.py +1 -1
- {indexify-0.2.20 → indexify-0.2.21}/pyproject.toml +1 -1
- {indexify-0.2.20 → indexify-0.2.21}/LICENSE.txt +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/README.md +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/__init__.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/cli.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/data_loaders/__init__.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/data_loaders/local_directory_loader.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/data_loaders/url_loader.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/error.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/agent.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/api_objects.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/downloader.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/executor_tasks.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/function_worker.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/indexify_executor.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/runtime_probes.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/executor/task_store.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/data_objects.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/graph.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/graph_definition.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/graph_validation.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/image.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/indexify_functions.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/local_cache.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/object_serializer.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/functions_sdk/pipeline.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/http_client.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/remote_graph.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/remote_pipeline.py +0 -0
- {indexify-0.2.20 → indexify-0.2.21}/indexify/settings.py +0 -0
@@ -30,7 +30,7 @@ class TaskReporter:
|
|
30
30
|
fn_outputs = []
|
31
31
|
for output in completed_task.outputs or []:
|
32
32
|
print(
|
33
|
-
f"[bold]task-reporter[/bold] uploading output of size: {len(
|
33
|
+
f"[bold]task-reporter[/bold] uploading output of size: {len(output.payload)} bytes"
|
34
34
|
)
|
35
35
|
output_bytes = MsgPackSerializer.serialize(output)
|
36
36
|
fn_outputs.append(
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|