indexify 0.2.45__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.
Files changed (59) hide show
  1. {indexify-0.2.45 → indexify-0.2.47}/PKG-INFO +2 -2
  2. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/indexify_functions.py +4 -0
  3. {indexify-0.2.45 → indexify-0.2.47}/pyproject.toml +2 -2
  4. {indexify-0.2.45 → indexify-0.2.47}/LICENSE.txt +0 -0
  5. {indexify-0.2.45 → indexify-0.2.47}/README.md +0 -0
  6. {indexify-0.2.45 → indexify-0.2.47}/indexify/__init__.py +0 -0
  7. {indexify-0.2.45 → indexify-0.2.47}/indexify/cli.py +0 -0
  8. {indexify-0.2.45 → indexify-0.2.47}/indexify/common_util.py +0 -0
  9. {indexify-0.2.45 → indexify-0.2.47}/indexify/data_loaders/__init__.py +0 -0
  10. {indexify-0.2.45 → indexify-0.2.47}/indexify/data_loaders/local_directory_loader.py +0 -0
  11. {indexify-0.2.45 → indexify-0.2.47}/indexify/data_loaders/url_loader.py +0 -0
  12. {indexify-0.2.45 → indexify-0.2.47}/indexify/error.py +0 -0
  13. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/api_objects.py +0 -0
  14. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/downloader.py +0 -0
  15. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/executor.py +0 -0
  16. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/function_executor.py +0 -0
  17. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/function_executor_state.py +0 -0
  18. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/invocation_state_client.py +0 -0
  19. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/server/function_executor_server.py +0 -0
  20. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/server/function_executor_server_factory.py +0 -0
  21. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/server/subprocess_function_executor_server.py +0 -0
  22. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/server/subprocess_function_executor_server_factory.py +0 -0
  23. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/single_task_runner.py +0 -0
  24. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/task_input.py +0 -0
  25. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/function_executor/task_output.py +0 -0
  26. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/runtime_probes.py +0 -0
  27. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/task_fetcher.py +0 -0
  28. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/task_reporter.py +0 -0
  29. {indexify-0.2.45 → indexify-0.2.47}/indexify/executor/task_runner.py +0 -0
  30. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/function_executor_service.py +0 -0
  31. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/function_inputs_loader.py +0 -0
  32. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/handler.py +0 -0
  33. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/request_validator.py +0 -0
  34. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/handlers/run_function/response_helper.py +0 -0
  35. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/initialize_request_validator.py +0 -0
  36. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/invocation_state/invocation_state_proxy_server.py +0 -0
  37. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/invocation_state/proxied_invocation_state.py +0 -0
  38. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/invocation_state/response_validator.py +0 -0
  39. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/proto/configuration.py +0 -0
  40. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/proto/function_executor.proto +0 -0
  41. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2.py +0 -0
  42. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2.pyi +0 -0
  43. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/proto/function_executor_pb2_grpc.py +0 -0
  44. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/proto/message_validator.py +0 -0
  45. {indexify-0.2.45 → indexify-0.2.47}/indexify/function_executor/server.py +0 -0
  46. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/data_objects.py +0 -0
  47. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/graph.py +0 -0
  48. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/graph_definition.py +0 -0
  49. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/graph_validation.py +0 -0
  50. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/image.py +0 -0
  51. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/invocation_state/invocation_state.py +0 -0
  52. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/invocation_state/local_invocation_state.py +0 -0
  53. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/object_serializer.py +0 -0
  54. {indexify-0.2.45 → indexify-0.2.47}/indexify/functions_sdk/pipeline.py +0 -0
  55. {indexify-0.2.45 → indexify-0.2.47}/indexify/http_client.py +0 -0
  56. {indexify-0.2.45 → indexify-0.2.47}/indexify/logging.py +0 -0
  57. {indexify-0.2.45 → indexify-0.2.47}/indexify/remote_graph.py +0 -0
  58. {indexify-0.2.45 → indexify-0.2.47}/indexify/remote_pipeline.py +0 -0
  59. {indexify-0.2.45 → indexify-0.2.47}/indexify/settings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: indexify
3
- Version: 0.2.45
3
+ Version: 0.2.47
4
4
  Summary: Python Client for Indexify
5
5
  Home-page: https://github.com/tensorlakeai/indexify
6
6
  License: Apache 2.0
@@ -21,7 +21,7 @@ Requires-Dist: grpcio-tools (==1.68.1)
21
21
  Requires-Dist: httpx-sse (>=0.4.0,<0.5.0)
22
22
  Requires-Dist: httpx[http2] (==0.27.2)
23
23
  Requires-Dist: nanoid (>=2.0.0,<3.0.0)
24
- Requires-Dist: pydantic (>=2.10.2,<3.0.0)
24
+ Requires-Dist: pydantic (==2.10.4)
25
25
  Requires-Dist: pyyaml (>=6,<7)
26
26
  Requires-Dist: rich (>=13.9.2,<14.0.0)
27
27
  Requires-Dist: structlog (>=24.4.0,<25.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
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "indexify"
3
- version = "0.2.45"
3
+ version = "0.2.47"
4
4
  description = "Python Client for Indexify"
5
5
  authors = ["Tensorlake Inc. <support@tensorlake.ai>"]
6
6
  license = "Apache 2.0"
@@ -15,7 +15,7 @@ indexify-cli = "indexify.cli:app"
15
15
  python = "^3.9"
16
16
  httpx = { version = "0.27.2", extras = ["http2"] }
17
17
  pyyaml = "^6"
18
- pydantic = "^2.10.2"
18
+ pydantic = "2.10.4"
19
19
  cloudpickle = "^3.1.0"
20
20
  rich = "^13.9.2"
21
21
  nanoid = "^2.0.0"
File without changes
File without changes
File without changes
File without changes
File without changes