indexify 0.2.1__tar.gz → 0.2.3__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.1 → indexify-0.2.3}/PKG-INFO +1 -1
- {indexify-0.2.1 → indexify-0.2.3}/indexify/functions_sdk/graph.py +1 -1
- {indexify-0.2.1 → indexify-0.2.3}/indexify/local_client.py +1 -1
- {indexify-0.2.1 → indexify-0.2.3}/pyproject.toml +1 -1
- {indexify-0.2.1 → indexify-0.2.3}/LICENSE.txt +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/README.md +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/__init__.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/base_client.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/cli.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/client.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/data_loaders/__init__.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/data_loaders/local_directory_loader.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/data_loaders/url_loader.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/error.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/agent.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/api_objects.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/downloader.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/executor_tasks.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/function_worker.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/indexify_executor.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/runtime_probes.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/task_reporter.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/executor/task_store.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/foo +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/functions_sdk/data_objects.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/functions_sdk/graph_validation.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/functions_sdk/image.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/functions_sdk/indexify_functions.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/functions_sdk/local_cache.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/functions_sdk/object_serializer.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/remote_client.py +0 -0
- {indexify-0.2.1 → indexify-0.2.3}/indexify/settings.py +0 -0
@@ -266,7 +266,7 @@ class Graph:
|
|
266
266
|
metadata_nodes[node_name] = NodeMetadata(
|
267
267
|
compute_fn=FunctionMetadata(
|
268
268
|
name=node_name,
|
269
|
-
fn_name=node.
|
269
|
+
fn_name=node.name,
|
270
270
|
description=node.description,
|
271
271
|
reducer=node.accumulate is not None,
|
272
272
|
image_name=node.image._image_name,
|
@@ -49,7 +49,7 @@ class LocalClient(IndexifyClient):
|
|
49
49
|
serializer = get_serializer(
|
50
50
|
g.get_function(k).indexify_function.payload_encoder
|
51
51
|
)
|
52
|
-
self._accumulators[k] = IndexifyData(payload=serializer.
|
52
|
+
self._accumulators[k] = IndexifyData(payload=serializer.serialize(v))
|
53
53
|
self._results[input.id] = outputs
|
54
54
|
self._run(g, input, outputs)
|
55
55
|
return input.id
|
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
|