indexify 0.2.46__tar.gz → 0.2.47__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.46 → indexify-0.2.47}/PKG-INFO +1 -1
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/indexify_functions.py +4 -0
- {indexify-0.2.46 → indexify-0.2.47}/pyproject.toml +1 -1
- {indexify-0.2.46 → indexify-0.2.47}/LICENSE.txt +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/README.md +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/__init__.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/cli.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/common_util.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/data_loaders/__init__.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/data_loaders/local_directory_loader.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/data_loaders/url_loader.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/error.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/api_objects.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/downloader.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/executor.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/function_executor.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/function_executor_state.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/invocation_state_client.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/server/function_executor_server.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/server/function_executor_server_factory.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/server/subprocess_function_executor_server.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/server/subprocess_function_executor_server_factory.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/single_task_runner.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/task_input.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/task_output.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/runtime_probes.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/task_fetcher.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/task_reporter.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/executor/task_runner.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/function_executor_service.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/function_inputs_loader.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/handler.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/request_validator.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/response_helper.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/initialize_request_validator.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/invocation_state/invocation_state_proxy_server.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/invocation_state/proxied_invocation_state.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/invocation_state/response_validator.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/configuration.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor.proto +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2.pyi +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2_grpc.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/message_validator.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/server.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/data_objects.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/graph.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/graph_definition.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/graph_validation.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/image.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/invocation_state/invocation_state.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/invocation_state/local_invocation_state.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/object_serializer.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/pipeline.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/http_client.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/logging.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/remote_graph.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/remote_pipeline.py +0 -0
- {indexify-0.2.46 → indexify-0.2.47}/indexify/settings.py +0 -0
@@ -267,6 +267,8 @@ class IndexifyFunctionWrapper:
|
|
267
267
|
# with json encoding which won't deserialize in tuple.
|
268
268
|
if isinstance(input, tuple) or isinstance(input, list):
|
269
269
|
args += input
|
270
|
+
elif isinstance(input, dict):
|
271
|
+
kwargs.update(input)
|
270
272
|
else:
|
271
273
|
args.append(input)
|
272
274
|
extracted_data = self.indexify_function._call_run(*args, **kwargs)
|
@@ -292,6 +294,8 @@ class IndexifyFunctionWrapper:
|
|
292
294
|
# with json encoding which won't deserialize in tuple.
|
293
295
|
if isinstance(input, tuple) or isinstance(input, list):
|
294
296
|
args += input
|
297
|
+
elif isinstance(input, dict):
|
298
|
+
kwargs.update(input)
|
295
299
|
else:
|
296
300
|
args.append(input)
|
297
301
|
|
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
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/function_executor.py
RENAMED
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/function_executor_state.py
RENAMED
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/invocation_state_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/executor/function_executor/single_task_runner.py
RENAMED
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
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/handler.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/initialize_request_validator.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor.proto
RENAMED
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2.py
RENAMED
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2.pyi
RENAMED
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2_grpc.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{indexify-0.2.46 → indexify-0.2.47}/indexify/functions_sdk/invocation_state/invocation_state.py
RENAMED
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
|