vellum-ai 0.8.16__py3-none-any.whl → 0.8.17__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 (44) hide show
  1. vellum/__init__.py +50 -0
  2. vellum/client.py +223 -6
  3. vellum/core/client_wrapper.py +1 -1
  4. vellum/resources/__init__.py +2 -0
  5. vellum/resources/metric_definitions/__init__.py +2 -0
  6. vellum/resources/metric_definitions/client.py +178 -0
  7. vellum/resources/test_suites/client.py +8 -8
  8. vellum/types/__init__.py +52 -0
  9. vellum/types/array_input_request.py +36 -0
  10. vellum/types/code_execution_package_request.py +20 -0
  11. vellum/types/code_execution_runtime.py +5 -0
  12. vellum/types/code_executor_input_request.py +22 -0
  13. vellum/types/code_executor_response.py +27 -0
  14. vellum/types/condition_combinator.py +5 -0
  15. vellum/types/error_input_request.py +30 -0
  16. vellum/types/function_call_input_request.py +30 -0
  17. vellum/types/google_vertex_ai_vectorizer_config.py +20 -0
  18. vellum/types/google_vertex_ai_vectorizer_config_request.py +20 -0
  19. vellum/types/google_vertex_ai_vectorizer_text_embedding_004.py +21 -0
  20. vellum/types/google_vertex_ai_vectorizer_text_embedding_004_request.py +21 -0
  21. vellum/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py +21 -0
  22. vellum/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py +21 -0
  23. vellum/types/indexing_config_vectorizer.py +6 -0
  24. vellum/types/indexing_config_vectorizer_request.py +6 -0
  25. vellum/types/json_input_request.py +1 -1
  26. vellum/types/logical_operator.py +2 -0
  27. vellum/types/metadata_filter_config_request.py +4 -0
  28. vellum/types/metadata_filters_request.py +7 -0
  29. vellum/types/metric_definition_execution.py +20 -0
  30. vellum/types/metric_definition_input_request.py +11 -0
  31. vellum/types/number_input_request.py +29 -0
  32. vellum/types/search_filters_request.py +6 -2
  33. vellum/types/search_request_options_request.py +4 -0
  34. vellum/types/search_results_input_request.py +30 -0
  35. vellum/types/string_input_request.py +1 -1
  36. vellum/types/vellum_value.py +24 -0
  37. vellum/types/vellum_value_logical_condition_group_request.py +38 -0
  38. vellum/types/vellum_value_logical_condition_request.py +34 -0
  39. vellum/types/vellum_value_logical_expression_request.py +12 -0
  40. vellum/types/vellum_value_request.py +24 -0
  41. {vellum_ai-0.8.16.dist-info → vellum_ai-0.8.17.dist-info}/METADATA +1 -1
  42. {vellum_ai-0.8.16.dist-info → vellum_ai-0.8.17.dist-info}/RECORD +44 -18
  43. {vellum_ai-0.8.16.dist-info → vellum_ai-0.8.17.dist-info}/LICENSE +0 -0
  44. {vellum_ai-0.8.16.dist-info → vellum_ai-0.8.17.dist-info}/WHEEL +0 -0
@@ -0,0 +1,20 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ from .test_suite_run_metric_output import TestSuiteRunMetricOutput
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
7
+ import pydantic
8
+
9
+
10
+ class MetricDefinitionExecution(UniversalBaseModel):
11
+ outputs: typing.List[TestSuiteRunMetricOutput]
12
+
13
+ if IS_PYDANTIC_V2:
14
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
15
+ else:
16
+
17
+ class Config:
18
+ frozen = True
19
+ smart_union = True
20
+ extra = pydantic.Extra.allow
@@ -0,0 +1,11 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+ from .string_input_request import StringInputRequest
5
+ from .json_input_request import JsonInputRequest
6
+ from .chat_history_input_request import ChatHistoryInputRequest
7
+ from .number_input_request import NumberInputRequest
8
+
9
+ MetricDefinitionInputRequest = typing.Union[
10
+ StringInputRequest, JsonInputRequest, ChatHistoryInputRequest, NumberInputRequest
11
+ ]
@@ -0,0 +1,29 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ import typing
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
7
+
8
+
9
+ class NumberInputRequest(UniversalBaseModel):
10
+ """
11
+ A user input representing a number value
12
+ """
13
+
14
+ name: str = pydantic.Field()
15
+ """
16
+ The variable's name
17
+ """
18
+
19
+ type: typing.Literal["NUMBER"] = "NUMBER"
20
+ value: float
21
+
22
+ if IS_PYDANTIC_V2:
23
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
24
+ else:
25
+
26
+ class Config:
27
+ frozen = True
28
+ smart_union = True
29
+ extra = pydantic.Extra.allow
@@ -2,10 +2,12 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
+ from .array_vellum_value_request import ArrayVellumValueRequest
5
6
  from .metadata_filter_rule_request import MetadataFilterRuleRequest
7
+ from .vellum_value_logical_condition_group_request import VellumValueLogicalConditionGroupRequest
6
8
  import typing
7
9
  import pydantic
8
- from .metadata_filter_config_request import MetadataFilterConfigRequest
10
+ from .metadata_filters_request import MetadataFiltersRequest
9
11
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
12
  from ..core.pydantic_utilities import update_forward_refs
11
13
 
@@ -16,7 +18,7 @@ class SearchFiltersRequest(UniversalBaseModel):
16
18
  The document external IDs to filter by
17
19
  """
18
20
 
19
- metadata: typing.Optional[MetadataFilterConfigRequest] = pydantic.Field(default=None)
21
+ metadata: typing.Optional[MetadataFiltersRequest] = pydantic.Field(default=None)
20
22
  """
21
23
  The metadata filters to apply to the search
22
24
  """
@@ -31,4 +33,6 @@ class SearchFiltersRequest(UniversalBaseModel):
31
33
  extra = pydantic.Extra.allow
32
34
 
33
35
 
36
+ update_forward_refs(ArrayVellumValueRequest, SearchFiltersRequest=SearchFiltersRequest)
34
37
  update_forward_refs(MetadataFilterRuleRequest, SearchFiltersRequest=SearchFiltersRequest)
38
+ update_forward_refs(VellumValueLogicalConditionGroupRequest, SearchFiltersRequest=SearchFiltersRequest)
@@ -2,7 +2,9 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
+ from .array_vellum_value_request import ArrayVellumValueRequest
5
6
  from .metadata_filter_rule_request import MetadataFilterRuleRequest
7
+ from .vellum_value_logical_condition_group_request import VellumValueLogicalConditionGroupRequest
6
8
  import typing
7
9
  import pydantic
8
10
  from .search_weights_request import SearchWeightsRequest
@@ -43,4 +45,6 @@ class SearchRequestOptionsRequest(UniversalBaseModel):
43
45
  extra = pydantic.Extra.allow
44
46
 
45
47
 
48
+ update_forward_refs(ArrayVellumValueRequest, SearchRequestOptionsRequest=SearchRequestOptionsRequest)
46
49
  update_forward_refs(MetadataFilterRuleRequest, SearchRequestOptionsRequest=SearchRequestOptionsRequest)
50
+ update_forward_refs(VellumValueLogicalConditionGroupRequest, SearchRequestOptionsRequest=SearchRequestOptionsRequest)
@@ -0,0 +1,30 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ import typing
6
+ from .search_result_request import SearchResultRequest
7
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
8
+
9
+
10
+ class SearchResultsInputRequest(UniversalBaseModel):
11
+ """
12
+ A user input representing a search results value
13
+ """
14
+
15
+ name: str = pydantic.Field()
16
+ """
17
+ The variable's name
18
+ """
19
+
20
+ type: typing.Literal["SEARCH_RESULTS"] = "SEARCH_RESULTS"
21
+ value: typing.List[SearchResultRequest]
22
+
23
+ if IS_PYDANTIC_V2:
24
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
25
+ else:
26
+
27
+ class Config:
28
+ frozen = True
29
+ smart_union = True
30
+ extra = pydantic.Extra.allow
@@ -13,7 +13,7 @@ class StringInputRequest(UniversalBaseModel):
13
13
 
14
14
  name: str = pydantic.Field()
15
15
  """
16
- The variable's name, as defined in the deployment.
16
+ The variable's name
17
17
  """
18
18
 
19
19
  type: typing.Literal["STRING"] = "STRING"
@@ -0,0 +1,24 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+ from .string_vellum_value import StringVellumValue
5
+ from .number_vellum_value import NumberVellumValue
6
+ from .json_vellum_value import JsonVellumValue
7
+ from .image_vellum_value import ImageVellumValue
8
+ from .function_call_vellum_value import FunctionCallVellumValue
9
+ from .error_vellum_value import ErrorVellumValue
10
+ from .array_vellum_value import ArrayVellumValue
11
+ from .chat_history_vellum_value import ChatHistoryVellumValue
12
+ from .search_results_vellum_value import SearchResultsVellumValue
13
+
14
+ VellumValue = typing.Union[
15
+ StringVellumValue,
16
+ NumberVellumValue,
17
+ JsonVellumValue,
18
+ ImageVellumValue,
19
+ FunctionCallVellumValue,
20
+ ErrorVellumValue,
21
+ ArrayVellumValue,
22
+ ChatHistoryVellumValue,
23
+ SearchResultsVellumValue,
24
+ ]
@@ -0,0 +1,38 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from __future__ import annotations
4
+ from ..core.pydantic_utilities import UniversalBaseModel
5
+ from .array_vellum_value_request import ArrayVellumValueRequest
6
+ import typing
7
+ from .condition_combinator import ConditionCombinator
8
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
+ import pydantic
10
+ from ..core.pydantic_utilities import update_forward_refs
11
+
12
+
13
+ class VellumValueLogicalConditionGroupRequest(UniversalBaseModel):
14
+ """
15
+ A higher-order condition that combines one or more basic conditions or other higher-order conditions.
16
+ """
17
+
18
+ type: typing.Literal["LOGICAL_CONDITION_GROUP"] = "LOGICAL_CONDITION_GROUP"
19
+ conditions: typing.List["VellumValueLogicalExpressionRequest"]
20
+ combinator: ConditionCombinator
21
+ negated: bool
22
+
23
+ if IS_PYDANTIC_V2:
24
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
25
+ else:
26
+
27
+ class Config:
28
+ frozen = True
29
+ smart_union = True
30
+ extra = pydantic.Extra.allow
31
+
32
+
33
+ from .vellum_value_logical_expression_request import VellumValueLogicalExpressionRequest # noqa: E402
34
+
35
+ update_forward_refs(
36
+ ArrayVellumValueRequest, VellumValueLogicalConditionGroupRequest=VellumValueLogicalConditionGroupRequest
37
+ )
38
+ update_forward_refs(VellumValueLogicalConditionGroupRequest)
@@ -0,0 +1,34 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from __future__ import annotations
4
+ from ..core.pydantic_utilities import UniversalBaseModel
5
+ from .array_vellum_value_request import ArrayVellumValueRequest
6
+ import typing
7
+ from .vellum_value_request import VellumValueRequest
8
+ from .logical_operator import LogicalOperator
9
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
+ import pydantic
11
+ from ..core.pydantic_utilities import update_forward_refs
12
+
13
+
14
+ class VellumValueLogicalConditionRequest(UniversalBaseModel):
15
+ """
16
+ A basic condition comparing two Vellum values.
17
+ """
18
+
19
+ type: typing.Literal["LOGICAL_CONDITION"] = "LOGICAL_CONDITION"
20
+ lhs_variable: VellumValueRequest
21
+ operator: LogicalOperator
22
+ rhs_variable: VellumValueRequest
23
+
24
+ if IS_PYDANTIC_V2:
25
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
26
+ else:
27
+
28
+ class Config:
29
+ frozen = True
30
+ smart_union = True
31
+ extra = pydantic.Extra.allow
32
+
33
+
34
+ update_forward_refs(ArrayVellumValueRequest, VellumValueLogicalConditionRequest=VellumValueLogicalConditionRequest)
@@ -0,0 +1,12 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from __future__ import annotations
4
+ import typing
5
+ from .vellum_value_logical_condition_request import VellumValueLogicalConditionRequest
6
+ import typing
7
+
8
+ if typing.TYPE_CHECKING:
9
+ from .vellum_value_logical_condition_group_request import VellumValueLogicalConditionGroupRequest
10
+ VellumValueLogicalExpressionRequest = typing.Union[
11
+ VellumValueLogicalConditionRequest, "VellumValueLogicalConditionGroupRequest"
12
+ ]
@@ -0,0 +1,24 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+ from .string_vellum_value_request import StringVellumValueRequest
5
+ from .number_vellum_value_request import NumberVellumValueRequest
6
+ from .json_vellum_value_request import JsonVellumValueRequest
7
+ from .image_vellum_value_request import ImageVellumValueRequest
8
+ from .function_call_vellum_value_request import FunctionCallVellumValueRequest
9
+ from .error_vellum_value_request import ErrorVellumValueRequest
10
+ from .array_vellum_value_request import ArrayVellumValueRequest
11
+ from .chat_history_vellum_value_request import ChatHistoryVellumValueRequest
12
+ from .search_results_vellum_value_request import SearchResultsVellumValueRequest
13
+
14
+ VellumValueRequest = typing.Union[
15
+ StringVellumValueRequest,
16
+ NumberVellumValueRequest,
17
+ JsonVellumValueRequest,
18
+ ImageVellumValueRequest,
19
+ FunctionCallVellumValueRequest,
20
+ ErrorVellumValueRequest,
21
+ ArrayVellumValueRequest,
22
+ ChatHistoryVellumValueRequest,
23
+ SearchResultsVellumValueRequest,
24
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.8.16
3
+ Version: 0.8.17
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.8,<4.0
@@ -1,8 +1,8 @@
1
- vellum/__init__.py,sha256=lbUhjH2L_tzm-0Vaouz3lHOKIUoLcRKN5dgCbl64AMs,30700
2
- vellum/client.py,sha256=n9AlNDHYObmRUM5hX_iiFj6eYDzjIca3cdKVGuRjUSA,106566
1
+ vellum/__init__.py,sha256=PG9ISesfvQQmx7-qVqykfsnsriAmWhGEMcei9F3HrII,32462
2
+ vellum/client.py,sha256=cMrzyQ7GUnByOLvgoe9lCf569uk5e17I4TIgA74awKg,114255
3
3
  vellum/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
4
4
  vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
- vellum/core/client_wrapper.py,sha256=qqJD0dazy9fuf_v6c3WLU__j8ntDe27g5C1WOVwTPUQ,1890
5
+ vellum/core/client_wrapper.py,sha256=R2eH_q9YDpjSPO8aVh5OMO8D1KeymKSpIRt-_5ub6Lw,1890
6
6
  vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  vellum/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
8
8
  vellum/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
@@ -28,7 +28,7 @@ vellum/lib/utils/env.py,sha256=ySl859lYBfls8hmlaU_RFdquHa_A_7SzaC6KEdFqh1Y,298
28
28
  vellum/lib/utils/exceptions.py,sha256=dXMAkzqbHV_AP5FjjbegPlfUE0zQDlpA3qOsoOJUxfg,49
29
29
  vellum/lib/utils/paginator.py,sha256=yDvgehocYBDclLt5SewZH4hCIyq0yLHdBzkyPCoYPjs,698
30
30
  vellum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- vellum/resources/__init__.py,sha256=iaTrngunVag3wUnyP3TlA8lG55RUCYw4qgdlZXzhi2Q,806
31
+ vellum/resources/__init__.py,sha256=rrkswsofiS3xbyO4ufcrbY2qrQ_tlQ-Kdby2UiWfGyw,856
32
32
  vellum/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
33
33
  vellum/resources/ad_hoc/client.py,sha256=JVEf85pJJ1u_Vie-kEIvqv1Qx0BPA73DFEpBu7iyKK8,15590
34
34
  vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
@@ -43,12 +43,14 @@ vellum/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roe
43
43
  vellum/resources/documents/client.py,sha256=TRptBN1FG4wyTYOq0TpmkXlQL63Owbvsa539E1VXs6s,27574
44
44
  vellum/resources/folder_entities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
45
  vellum/resources/folder_entities/client.py,sha256=yxkHRAx8frCk-WvgcRD-WzMhA2kxvY_j42S436-j4EQ,4440
46
+ vellum/resources/metric_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
47
+ vellum/resources/metric_definitions/client.py,sha256=Q0hrwTmjaUUVYPKM7wqRdWMzQwZszn5i_ons5mAsIXY,6009
46
48
  vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
47
49
  vellum/resources/sandboxes/client.py,sha256=i-6DHap5k6gFcYS-kWI8ayJFVZxb-GENRft6BJwVam4,17158
48
50
  vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
49
51
  vellum/resources/test_suite_runs/client.py,sha256=AwSx890RssSN3mSpeFxWdVv-GR30Av5oMEVshh9Sauw,14562
50
52
  vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
51
- vellum/resources/test_suites/client.py,sha256=waf3-2XIuXnFAumcus0Z1jfat_YMQANBxvDHHbL0sVM,25039
53
+ vellum/resources/test_suites/client.py,sha256=XOSXVzgcnyescVX02aKdRzLSxY32xS0ULXbwc9XFAE8,25063
52
54
  vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
53
55
  vellum/resources/workflow_deployments/client.py,sha256=ezSg3EDA5UszvrT15jx7-RoSO8pXRwAIDlqMCJXkNOY,17393
54
56
  vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
@@ -66,7 +68,7 @@ vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw
66
68
  vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
67
69
  vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
68
70
  vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
69
- vellum/types/__init__.py,sha256=KElHI6efKADf3gYpMQ-f6R3qmeFpQknKQx3dD_TOA1I,46921
71
+ vellum/types/__init__.py,sha256=SCFFlXguYlBQMTTtQF1AnhrS4b_AEtytXm0oUBsjVIo,49638
70
72
  vellum/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
71
73
  vellum/types/ad_hoc_expand_meta_request.py,sha256=hS8PC3hC--OKvRKi2ZFj_RJPQ1bxo2GXno8qJq1kk28,1338
72
74
  vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
@@ -80,6 +82,7 @@ vellum/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx
80
82
  vellum/types/array_chat_message_content_item.py,sha256=XyWDIqVeWoqLzUIvZO_qj_-iwCr6SBcvQJoVxKAjmDs,421
81
83
  vellum/types/array_chat_message_content_item_request.py,sha256=AUFfh6CQfrD4MdwpS3KhGpalaYpEj_hAlF_lePDDdbU,494
82
84
  vellum/types/array_chat_message_content_request.py,sha256=vpPV0KmM_uui7vFHY6f6kE1yj7iOwqOjxEuGhh1ZxFM,809
85
+ vellum/types/array_input_request.py,sha256=GJ4HOZq7FqGGKk6HaKb23eGdr63Av7lqCXkMEz5JtkA,1098
83
86
  vellum/types/array_variable_value.py,sha256=_BQX5Kk1OLJaAyk3CPgsIgiLR_FI2pvbe5Ne8q9gsqY,876
84
87
  vellum/types/array_variable_value_item.py,sha256=UeEoHg9zOjYi9MPez8CAeZuRQy5RSu3KEiEyF-t2Nng,963
85
88
  vellum/types/array_vellum_value.py,sha256=O8XGxsYqQdW3-Kffw8JbujyaGX_yp19FyVCmBCBzJlg,944
@@ -114,10 +117,15 @@ vellum/types/code_execution_node_result_data.py,sha256=HNfHjaIQouX9uI1_voP_9dfzB
114
117
  vellum/types/code_execution_node_result_output.py,sha256=ZddnayoP01i5alC12OaoNdSgLoXr_Y4Nl343xGJvJeU,1069
115
118
  vellum/types/code_execution_node_search_results_result.py,sha256=yPh94v7pgFL-4x1JPSnXXGihUi42i-OfOaNVHLN4jE8,740
116
119
  vellum/types/code_execution_node_string_result.py,sha256=uH6KO57muMko4u_xISchhvP0E-VzJfhKD_rijXgisZ8,655
120
+ vellum/types/code_execution_package_request.py,sha256=QmFfT5BYXNZI-mVBVSJS8nxt-lrWizXqbyJ4-YXOKe0,587
121
+ vellum/types/code_execution_runtime.py,sha256=ucMXj7mUYl9-B_KentTfRuRIeDq33PV3OV_GWKiG-lo,181
122
+ vellum/types/code_executor_input_request.py,sha256=c8lJqgBrh2ar7yE8zmDnN8dc1JCqpoJ0vX8-_XW-34U,784
123
+ vellum/types/code_executor_response.py,sha256=iG3q95G7sXABhdkh81DhBYKHKrgZAFK1SvOa3Su6giM,849
117
124
  vellum/types/compile_prompt_deployment_expand_meta_request.py,sha256=z0iMR9nLGz5h2MbqamIwUxB8EiXGvqdf0tlYAQsBFbA,1136
118
125
  vellum/types/compile_prompt_meta.py,sha256=lQOFdrhMpzMOf_hasn4vb1AKnX2VuASr-1evaugJ4ro,848
119
126
  vellum/types/components_schemas_pdf_search_result_meta_source.py,sha256=WEB3B__R6zLakrJMMn_1z9FIylBcxencQ6JHVPs7HSg,206
120
127
  vellum/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=FbgAsvMARYuSub2QQwFEkkbVeYwKkNmVi98nk7CxC-Q,235
128
+ vellum/types/condition_combinator.py,sha256=NQ6-F85juf21jsRuZRA6PjIFv7ITVWG5myuuZdLxeQI,156
121
129
  vellum/types/conditional_node_result.py,sha256=vx8xo9F1KoJqOnYPtSevfOcBxKYAk8J8JGWFr1c4UO8,784
122
130
  vellum/types/conditional_node_result_data.py,sha256=yk4E7KHSzmKlweI9ce9eN_iW08V70KGmG1Z0K5455T0,604
123
131
  vellum/types/create_test_suite_test_case_request.py,sha256=SYUz7_aZMQlin_c1C0-B0W14YB0kC3cn21oPE4_64Ys,1711
@@ -139,6 +147,7 @@ vellum/types/entity_status.py,sha256=bY0jEpISwXqFnbWd3PSb3yXEr-ounPXlAO_fyvHV7l8
139
147
  vellum/types/environment_enum.py,sha256=Wcewxp1cpGAMDIAZbTp4Y0GGfvy2Bq_Qu_67f_wBDGA,179
140
148
  vellum/types/ephemeral_prompt_cache_config_request.py,sha256=cWJIUY6Y4StTLszPeGRlwgvSkmL9OvFT9IrcbCDcI6g,719
141
149
  vellum/types/ephemeral_prompt_cache_config_type_enum.py,sha256=houFyNbNr9r2uXTBoRTA0eZJaBDe0CFTIUbsDyWK2e4,145
150
+ vellum/types/error_input_request.py,sha256=iWHzxp5DBkVPsinv8sDkf5m51YxzNCyQzRoO-ULaSz0,815
142
151
  vellum/types/error_variable_value.py,sha256=ULT_D9h8dKeHTnXEDv6UHxNlpmwQ3iDHTGU6Zg8a6H0,676
143
152
  vellum/types/error_vellum_value.py,sha256=Y7yO8Y1eOlbRyOqbOh6MyPRNHYKH48gIhlZIRcw1UaA,726
144
153
  vellum/types/error_vellum_value_request.py,sha256=o0aSn34dRcpnAwAfwW_sgwP7CkODGd5448w2Olg-spg,755
@@ -170,6 +179,7 @@ vellum/types/function_call_chat_message_content.py,sha256=qXbrMQeXn_CLjfDzQvv9ll
170
179
  vellum/types/function_call_chat_message_content_request.py,sha256=HVGxHs6jc4EBgW7rdJXlF8KRlugY5YHa0ujDrEQqPCo,860
171
180
  vellum/types/function_call_chat_message_content_value.py,sha256=DHRZYAMc4Y5MerUS_6CIxQBtORftKn-gBx8Skgivm_A,736
172
181
  vellum/types/function_call_chat_message_content_value_request.py,sha256=67EZ3qSR9zO5akOgloswRE0Pv8BcjtWhdTRJIwuQU04,743
182
+ vellum/types/function_call_input_request.py,sha256=yexfv6eO53Lw9A8zPEz4O9o4sQSh4XQwaBCYNrM68Ao,849
173
183
  vellum/types/function_call_request.py,sha256=eJBIN-wLkkkDUIwAy1nMeWHu3MZ5aJpOXyWtBa39RFA,811
174
184
  vellum/types/function_call_variable_value.py,sha256=VQKCiEtJsmIK3i7CtFV_2ZpxeX70rqpUViXIvAci8L0,702
175
185
  vellum/types/function_call_vellum_value.py,sha256=lLJb-S_-S_UXm6una1BMyCbqLpMhbbMcaVIYNO45h5o,759
@@ -185,6 +195,12 @@ vellum/types/generate_result_error.py,sha256=GRk7lWoWxbPi-ikLRNZ9BnhXutTUdHfBAml
185
195
  vellum/types/generate_stream_response.py,sha256=IPwhHPN9KYQXV9Ow8uXnDIAL0QUf4R6J9wZOQht4Gy8,640
186
196
  vellum/types/generate_stream_result.py,sha256=d661Ptq-XDyoKGYYUgs7htUkuRocQ9GDaV9ePbAxdoc,807
187
197
  vellum/types/generate_stream_result_data.py,sha256=-wzHLPkJrCNL_7vQuX-nZKi3wKxJ8v1j8DRzLmagVNU,697
198
+ vellum/types/google_vertex_ai_vectorizer_config.py,sha256=okGOJl721ONG1_aq1cphZ23WAJfi0FwLdwEoiuMMJP4,595
199
+ vellum/types/google_vertex_ai_vectorizer_config_request.py,sha256=0SnNAz4PAgzCjB_BChH1AYwwkOXbW9ed1EO2KXuDwCo,602
200
+ vellum/types/google_vertex_ai_vectorizer_text_embedding_004.py,sha256=V2owWci9ffII48PKfqOalDSliBA1JLholvPQYhknJ9o,767
201
+ vellum/types/google_vertex_ai_vectorizer_text_embedding_004_request.py,sha256=L_3gq3pe8JKvGg9ufsrhvHekQAveyzD9uzoxl2arwkE,796
202
+ vellum/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py,sha256=MoukrZZsuDVze43vuS5bEYygI6Jpok5QJTYPjHEz0tg,805
203
+ vellum/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py,sha256=Z6FliV8Efl9h-9L7kicfDlztu3utQPnRR5qXDVlx8C4,834
188
204
  vellum/types/hkunlp_instructor_xl_vectorizer.py,sha256=0wDZyilAQD3SQYIOBxfzBRxtt7wR4vVRIdcdb8cbnaA,803
189
205
  vellum/types/hkunlp_instructor_xl_vectorizer_request.py,sha256=Mtg_hl-IIfa134LWBonkxOQ1dhjXkGkz7maDZ57o_d4,832
190
206
  vellum/types/image_chat_message_content.py,sha256=1jHmNuLY2kuuSgJCqNmc4wUMw5aot6GLU6_hQ_99r2g,725
@@ -192,8 +208,8 @@ vellum/types/image_chat_message_content_request.py,sha256=b0K1NnY-NneG_V3JAnyr4H
192
208
  vellum/types/image_variable_value.py,sha256=njfgKYFU5lTCeosINThWziVE_jpuBjcgntZ3xAALT58,750
193
209
  vellum/types/image_vellum_value.py,sha256=69XnqE9m-bd3dOdMD73WtfDm_kDrVg-y3fi35akuqsk,748
194
210
  vellum/types/image_vellum_value_request.py,sha256=-Q66T8M6fAf9K_v0LeRwZjB_6pkBUSyMUQc6plRRK5E,777
195
- vellum/types/indexing_config_vectorizer.py,sha256=K0I_7iGsn1c-GJvmd0szjoGyT9HxXSkJg2QciiYb0Rs,1196
196
- vellum/types/indexing_config_vectorizer_request.py,sha256=RRefqRCoEsO814SIUF2ZlPpCLvuct6frgbqcSElNIeE,1357
211
+ vellum/types/indexing_config_vectorizer.py,sha256=vmRzRs1xMOhPTaKijFkhqVn8sITxHQCADwNVTp9ZBsk,1536
212
+ vellum/types/indexing_config_vectorizer_request.py,sha256=6csvEVzlZwv5rXhuMLW9bO1L4y6qbdZaMFX_cahlHSA,1741
197
213
  vellum/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwFYiel1U,213
198
214
  vellum/types/initiated_ad_hoc_execute_prompt_event.py,sha256=B34Q2aU2vj9qpjpWXIieN839iB7t4EWCD9mmCfbkwpo,915
199
215
  vellum/types/initiated_execute_prompt_event.py,sha256=tHt80ZIuKk6B85IQqSF3MQqiSSiBsSP2Aw3XuD5xk6E,893
@@ -204,19 +220,22 @@ vellum/types/instructor_vectorizer_config_request.py,sha256=6LGFFQKntMfX7bdetUqE
204
220
  vellum/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
205
221
  vellum/types/jinja_prompt_block_properties_request.py,sha256=2nb9gp224ADPi0aNTKNMaOe159EDB8JSHzDkMzR0QxI,719
206
222
  vellum/types/jinja_prompt_block_request.py,sha256=VQPrZOZJaEw2ILrebKT53CM8hRyQ5RuUeZZt0mzRd3Q,1097
207
- vellum/types/json_input_request.py,sha256=pnOWSzeBSz1pYtQPxYrUVFGW1_8bQAH_VpAQLjGEdj4,799
223
+ vellum/types/json_input_request.py,sha256=x5sA-VXxF4QH-98xRcIKPZhsMVbnJNUQofiUQqyfGk4,768
208
224
  vellum/types/json_variable_value.py,sha256=X7eBEWxuozfvIdqD5sIZ5L-L77Ou6IIsZaQVNXh5G2k,634
209
225
  vellum/types/json_vellum_value.py,sha256=8irlw6NkRRVafysfTc1Q5BFFhRrWJYzdwrDYTdJK4JY,689
210
226
  vellum/types/json_vellum_value_request.py,sha256=IUlkdwFGgBeLl9sCmAJhoaxomWiEMpWgRcLa_WnlK8g,696
211
- vellum/types/logical_operator.py,sha256=MuuMZ1-gOCDvy1WDQkMFfiBNHsRCqKgJei-b3727sKc,487
227
+ vellum/types/logical_operator.py,sha256=D8Chij23T00hdFAC4VUU0BcAPkLmx8SxwvxsEFYo918,524
212
228
  vellum/types/logprobs_enum.py,sha256=D_458cZX2CAb6dX_ovrQ6HARlJkYcZRadKwsi1Cr-JM,151
213
229
  vellum/types/map_node_result.py,sha256=e2YqEP-aKig2TbbZIlfn5LCeVEVhEJJBR7o7xTBKXaY,752
214
230
  vellum/types/map_node_result_data.py,sha256=3xJXC1JrS9lo3-3_u1S79sYwLxMknNntDyspN24vQzY,699
215
231
  vellum/types/merge_node_result.py,sha256=h8iEDQgiEjVASom_lAyIi9iErh9rU0_Am7awyzIarnc,742
216
232
  vellum/types/merge_node_result_data.py,sha256=BM3bmwFhTDiY5HchT-5uRl0o6qmJ5KH-NHRb9huGRoA,640
217
- vellum/types/metadata_filter_config_request.py,sha256=Vg9Yd2VJltbiVYadCk55RTHcaW-3hBYtAe_Ksqs_WeM,1260
233
+ vellum/types/metadata_filter_config_request.py,sha256=eFmoTIVv4RB6DRaxqyDcgB8F5SZSIOsREHqvcczs0Os,1365
218
234
  vellum/types/metadata_filter_rule_combinator.py,sha256=3Vpp1Mnv3As7efkxWTeV8qd4gdJ6OLoLhz_UeVBHAX8,165
219
235
  vellum/types/metadata_filter_rule_request.py,sha256=Pcs0TsU7CRnsEUoH0DWb-c9DTP2UW67lJKXlsTLXV48,1135
236
+ vellum/types/metadata_filters_request.py,sha256=Yaiu7rkcrV2bCFk6HrZSjuF6V-6JYjZTpzxv7_MFe70,345
237
+ vellum/types/metric_definition_execution.py,sha256=xwr5VJTo32k77isUtz2uzHGmtRm6K_VyOlTCbJr0JNU,672
238
+ vellum/types/metric_definition_input_request.py,sha256=HEPp4yiG54IEb0XxicOwCltj7X-1JaUtXqPC3JPAhBc,432
220
239
  vellum/types/metric_node_result.py,sha256=YdKq1DZiBD1RBtjyMejImylv3BqrwY8B_UF4Ij-6_64,660
221
240
  vellum/types/ml_model_usage.py,sha256=WcZ2F1hfxyTwe-spOVwv-qJYDjs4hf9sn7BF2abawPo,910
222
241
  vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=aVZmAxu-47c34NyhSkfi9tQqIPy29cdJ7Pb4MIgKeNw,862
@@ -261,6 +280,7 @@ vellum/types/node_output_compiled_string_value.py,sha256=pR_ku51KL_gwplMCiy6oT4s
261
280
  vellum/types/node_output_compiled_value.py,sha256=ADqSZuj1Gk0OdV9xrAfV--cW-6VrbBSZ7YZ_qFa0REs,1063
262
281
  vellum/types/normalized_log_probs.py,sha256=XNfwhKgK9vPlJQh9dcup2Rl5mTlmV154rrIRsf3dYx8,706
263
282
  vellum/types/normalized_token_log_probs.py,sha256=C0VHuRQbbcCFzQ9fJNbNjXAc2aUMUT5MxIt929-KMEA,714
283
+ vellum/types/number_input_request.py,sha256=jRU6KWTcC979sOx0OyK_v-n_VtNs22vUZwfaPTcHUJs,746
264
284
  vellum/types/number_variable_value.py,sha256=L2WKopg_1l8Uq1WZVhpcK1wztzRCxauE-ALameuEqRs,635
265
285
  vellum/types/number_vellum_value.py,sha256=LWQuMygk1Ai5Gjk_2bcp2idsEtzliotMolIyk_hgtnI,685
266
286
  vellum/types/number_vellum_value_request.py,sha256=vdp8WZpc_YvITT7g3bzIVIxDUYQgfNIzPTIyk2Sem-I,692
@@ -318,10 +338,10 @@ vellum/types/scenario_input.py,sha256=caC8p5ZnuXhv2ZiHvzTvKL3Ebtr4NXP9Q8UcJEVB8-
318
338
  vellum/types/scenario_input_chat_history_variable_value.py,sha256=ihgJktmZpz_12wx2yPtyrSrBjcBcSg9fby7h_eLoXgI,835
319
339
  vellum/types/scenario_input_json_variable_value.py,sha256=aKbQK2Q8IPOZq9QyjhECLqR1y42eqtddmkvH-jzPEhk,752
320
340
  vellum/types/scenario_input_string_variable_value.py,sha256=Y9UtkeqM-oBtPXGw_RXbgZNcmQiLvSUH8utTiv0a2qo,753
321
- vellum/types/search_filters_request.py,sha256=gAE5CHxGUNR1-fu5M5L1gYll0NXE8j5fwD2wriCRJUk,1171
341
+ vellum/types/search_filters_request.py,sha256=IGIhgEznpV46H_N1LuDRuDnRKHP9J_eJAnF3P9OSHCg,1509
322
342
  vellum/types/search_node_result.py,sha256=eJaAWXzEZ-CzySXXlI51MEgdO35H7bK5NTPFJ6zLbJ0,749
323
343
  vellum/types/search_node_result_data.py,sha256=IWal6uJbfP6JpKXxeiNsKCyqjrwkN2XUxH-Bz-n6uAg,846
324
- vellum/types/search_request_options_request.py,sha256=U-71mBhO105e_fLDYMrys9VKXAuIWkAM1aMXzQUv5eM,1583
344
+ vellum/types/search_request_options_request.py,sha256=oqo26xlWZN6ENOxNpgrMum-X5ALlB-lsafPtvaTvVpw,1965
325
345
  vellum/types/search_response.py,sha256=b5301wpC3L7QUBLYAHya_JJy2BdmDvFWA0UluNJc1ig,750
326
346
  vellum/types/search_result.py,sha256=kixaodfGe19x9UFF2Axe2xawmxhnTGWXq3zE6jrkGgE,1194
327
347
  vellum/types/search_result_document.py,sha256=sbhpvfZ2wgvZx2auwOFRn92i5JZEiB2HJVPr9KGRSg0,1177
@@ -330,6 +350,7 @@ vellum/types/search_result_merging_request.py,sha256=YiAgNuwvrpjwJBVS5_F6-UHmOLO
330
350
  vellum/types/search_result_meta.py,sha256=A8xNQbxbkwgT_VbHLPXgMYPAmwuHC6BZG0o7Dy7W8_k,729
331
351
  vellum/types/search_result_meta_request.py,sha256=e0Mg1XAdqGtBFJ9zj8YYLfctZLP2d2AQr3GGjtXQBfY,758
332
352
  vellum/types/search_result_request.py,sha256=cfKvzUCes4TxH757bu1D8ieM3nuW6A4yu1J00tAjhDQ,1245
353
+ vellum/types/search_results_input_request.py,sha256=tS4jUeXN55fR_ELSDYRRtMaNOM0CHdjeVM-YKNjYoRM,859
333
354
  vellum/types/search_results_variable_value.py,sha256=zUnHDpyT_OgC9ZQkmeUUn_oYaDxK8z-ztURkHqG8i_8,718
334
355
  vellum/types/search_results_vellum_value.py,sha256=i_7d5cANsjuFSRwI3qUgzNdz6ZyrhakuxP4lMQeUFu4,774
335
356
  vellum/types/search_results_vellum_value_request.py,sha256=Y36g5iLmweV4k_UiTDI9gSXf9Pn_aCwho0Z7dUNiVZU,803
@@ -347,7 +368,7 @@ vellum/types/streaming_prompt_execution_meta.py,sha256=vFLNQAVbbuvQamO9NeKDDTLQD
347
368
  vellum/types/streaming_workflow_node_result_event.py,sha256=qlVlVirDOp0Yre-Htp98ZDBzYy2iS7ulnRQCbZPsJ7s,1573
348
369
  vellum/types/string_chat_message_content.py,sha256=6ZVl5cofQXFV2RlEJvVdWWYa9WVe172DPOZ-Uk82lDM,682
349
370
  vellum/types/string_chat_message_content_request.py,sha256=qFB_JJvI4FgbW7bB60tyGChWDNINnHqa7hW13rlOvak,689
350
- vellum/types/string_input_request.py,sha256=XC2gFAa93kB8yOv_OsTte1yLMfed4cpnQeNIyxjPYhU,775
371
+ vellum/types/string_input_request.py,sha256=6GjNnhuK2krO_8U-id0TOqNyND2GfNpDm7OWd60DyqE,744
351
372
  vellum/types/string_variable_value.py,sha256=KNYKEGdChEIbGhyJHE6__5lKU1ybfjoNPxKvRlH36lc,633
352
373
  vellum/types/string_vellum_value.py,sha256=qnMmHG0Mo6T27JtMSr3qFxqsmTfX8xlXE2gqENHWg88,683
353
374
  vellum/types/string_vellum_value_request.py,sha256=qdlhoiJbiss2f-wMmtMsJ4B1otlZYDtyRTCPm8kJBYc,690
@@ -448,6 +469,11 @@ vellum/types/vellum_error_code_enum.py,sha256=87F6QjCk6b6x-fcIsf0qGpKTZsn6zn984T
448
469
  vellum/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
449
470
  vellum/types/vellum_image.py,sha256=wkFRgxOkxFPrmRdWTO58_41_vk0HYn5k4xsc-5ywxEs,637
450
471
  vellum/types/vellum_image_request.py,sha256=_Gr4L7PSY8PNQINyTy04hPdwLc8_bR1RTUWZ73RQRYM,644
472
+ vellum/types/vellum_value.py,sha256=edQfVkLNI_6lqd84XFigqx8MBOupTDdDPZORBJfXsHs,818
473
+ vellum/types/vellum_value_logical_condition_group_request.py,sha256=vyr6lhHuS-6YtcFL5TTmPGtKRoNI9w63N7N2RPQwKVQ,1402
474
+ vellum/types/vellum_value_logical_condition_request.py,sha256=HkZfj4X48UHFrPDHgUi3lp0MUGBMfroC0noNqZ_rW8o,1177
475
+ vellum/types/vellum_value_logical_expression_request.py,sha256=vjNsI1NUAkwxLwIXJM_DVXTObyAM63gOfHj6aHw7osc,479
476
+ vellum/types/vellum_value_request.py,sha256=K09IU8tuC07_8WFjNVhvsPGdNAsJi_aBCg7UihwT--Y,1023
451
477
  vellum/types/vellum_variable.py,sha256=yOKGSO-XD3YFpsy113Kvw7VCTdxgqlBXCIprU7MazNA,650
452
478
  vellum/types/vellum_variable_request.py,sha256=6wznEZu51wGCX_DKr5R_1jvX6BprveXuRF2y8eWmoU4,657
453
479
  vellum/types/vellum_variable_type.py,sha256=uHeBCGi7U_SksgKOxtvI4KxYffD4BD2TlddTPo_LUSM,281
@@ -493,7 +519,7 @@ vellum/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7Zv
493
519
  vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
494
520
  vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
495
521
  vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
496
- vellum_ai-0.8.16.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
497
- vellum_ai-0.8.16.dist-info/METADATA,sha256=wvj5V6u5anFSM3xlxTueyzFc3bRX7va4B953YO3JHdM,4395
498
- vellum_ai-0.8.16.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
499
- vellum_ai-0.8.16.dist-info/RECORD,,
522
+ vellum_ai-0.8.17.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
523
+ vellum_ai-0.8.17.dist-info/METADATA,sha256=zpKpdDbNfdsCuXChK4R_1Gn6j8qCZ27s5Jjan7BoJbc,4395
524
+ vellum_ai-0.8.17.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
525
+ vellum_ai-0.8.17.dist-info/RECORD,,