vellum-ai 0.14.65__py3-none-any.whl → 0.14.67__py3-none-any.whl

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 (33) hide show
  1. vellum/client/README.md +1 -1
  2. vellum/client/core/client_wrapper.py +1 -1
  3. vellum/client/reference.md +2767 -0
  4. vellum/client/types/document_read.py +0 -1
  5. vellum/client/types/folder_entity_prompt_sandbox_data.py +1 -0
  6. vellum/client/types/folder_entity_workflow_sandbox_data.py +1 -0
  7. vellum/workflows/expressions/accessor.py +22 -5
  8. vellum/workflows/expressions/tests/test_accessor.py +189 -0
  9. vellum/workflows/nodes/bases/base.py +30 -39
  10. vellum/workflows/nodes/bases/tests/test_base_node.py +48 -2
  11. vellum/workflows/nodes/displayable/api_node/node.py +3 -1
  12. vellum/workflows/nodes/displayable/api_node/tests/test_api_node.py +32 -0
  13. vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py +28 -0
  14. vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/test_inline_prompt_node.py +26 -23
  15. vellum/workflows/nodes/displayable/conditional_node/node.py +1 -2
  16. vellum/workflows/nodes/displayable/final_output_node/node.py +2 -0
  17. vellum/workflows/nodes/displayable/inline_prompt_node/node.py +4 -14
  18. vellum/workflows/nodes/displayable/search_node/node.py +8 -0
  19. vellum/workflows/nodes/displayable/search_node/tests/test_node.py +19 -0
  20. vellum/workflows/nodes/experimental/tool_calling_node/utils.py +4 -13
  21. vellum/workflows/runner/runner.py +13 -17
  22. vellum/workflows/state/base.py +0 -4
  23. {vellum_ai-0.14.65.dist-info → vellum_ai-0.14.67.dist-info}/METADATA +2 -2
  24. {vellum_ai-0.14.65.dist-info → vellum_ai-0.14.67.dist-info}/RECORD +33 -30
  25. vellum_cli/image_push.py +62 -7
  26. vellum_cli/pull.py +38 -9
  27. vellum_cli/tests/test_image_push_error_handling.py +184 -0
  28. vellum_cli/tests/test_pull.py +12 -9
  29. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py +661 -0
  30. vellum_ee/workflows/display/utils/expressions.py +17 -0
  31. {vellum_ai-0.14.65.dist-info → vellum_ai-0.14.67.dist-info}/LICENSE +0 -0
  32. {vellum_ai-0.14.65.dist-info → vellum_ai-0.14.67.dist-info}/WHEEL +0 -0
  33. {vellum_ai-0.14.65.dist-info → vellum_ai-0.14.67.dist-info}/entry_points.txt +0 -0
vellum/client/README.md CHANGED
@@ -20,7 +20,7 @@ pip install vellum-ai
20
20
 
21
21
  ## Reference
22
22
 
23
- A full reference for this library is available [here](./reference.md).
23
+ A full reference for this library is available [here](https://github.com/vellum-ai/vellum-python-sdks/blob/HEAD/./reference.md).
24
24
 
25
25
  ## Usage
26
26
 
@@ -18,7 +18,7 @@ class BaseClientWrapper:
18
18
  headers: typing.Dict[str, str] = {
19
19
  "X-Fern-Language": "Python",
20
20
  "X-Fern-SDK-Name": "vellum-ai",
21
- "X-Fern-SDK-Version": "0.14.65",
21
+ "X-Fern-SDK-Version": "0.14.67",
22
22
  }
23
23
  headers["X-API-KEY"] = self.api_key
24
24
  return headers