vellum-ai 0.1.13__py3-none-any.whl → 0.2.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. vellum/__init__.py +172 -4
  2. vellum/client.py +214 -10
  3. vellum/core/client_wrapper.py +1 -1
  4. vellum/resources/__init__.py +15 -1
  5. vellum/resources/deployments/__init__.py +3 -0
  6. vellum/resources/deployments/client.py +113 -2
  7. vellum/resources/deployments/types/__init__.py +5 -0
  8. vellum/resources/deployments/types/deployments_list_request_status.py +17 -0
  9. vellum/resources/document_indexes/client.py +55 -9
  10. vellum/resources/documents/client.py +22 -2
  11. vellum/resources/model_versions/client.py +18 -0
  12. vellum/resources/registered_prompts/client.py +104 -0
  13. vellum/resources/sandboxes/client.py +66 -4
  14. vellum/resources/test_suites/client.py +6 -6
  15. vellum/resources/workflow_deployments/__init__.py +5 -0
  16. vellum/resources/workflow_deployments/client.py +116 -0
  17. vellum/resources/workflow_deployments/types/__init__.py +5 -0
  18. vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py +17 -0
  19. vellum/types/__init__.py +180 -4
  20. vellum/types/array_chat_message_content.py +33 -0
  21. vellum/types/array_chat_message_content_item.py +43 -0
  22. vellum/types/array_chat_message_content_item_request.py +45 -0
  23. vellum/types/array_chat_message_content_request.py +33 -0
  24. vellum/types/array_enum.py +5 -0
  25. vellum/types/array_variable_value.py +35 -0
  26. vellum/types/chat_history_enum.py +5 -0
  27. vellum/types/chat_history_input_request.py +4 -0
  28. vellum/types/chat_history_variable_value.py +29 -0
  29. vellum/types/chat_message.py +3 -1
  30. vellum/types/chat_message_content.py +53 -0
  31. vellum/types/chat_message_content_request.py +56 -0
  32. vellum/types/chat_message_request.py +3 -1
  33. vellum/types/deployment_read.py +5 -11
  34. vellum/types/document_index_read.py +2 -2
  35. vellum/types/{document_index_status.py → entity_status.py} +3 -3
  36. vellum/types/error_enum.py +5 -0
  37. vellum/types/execute_workflow_error_response.py +28 -0
  38. vellum/types/execute_workflow_response.py +32 -0
  39. vellum/types/execute_workflow_workflow_result_event.py +33 -0
  40. vellum/types/fulfilled_execute_workflow_workflow_result_event.py +35 -0
  41. vellum/types/function_call_chat_message_content.py +33 -0
  42. vellum/types/function_call_chat_message_content_request.py +33 -0
  43. vellum/types/function_call_chat_message_content_value.py +34 -0
  44. vellum/types/function_call_chat_message_content_value_request.py +34 -0
  45. vellum/types/function_call_enum.py +5 -0
  46. vellum/types/image_chat_message_content.py +33 -0
  47. vellum/types/image_chat_message_content_request.py +33 -0
  48. vellum/types/image_enum.py +5 -0
  49. vellum/types/json_enum.py +5 -0
  50. vellum/types/json_input_request.py +4 -0
  51. vellum/types/model_version_exec_config_parameters.py +1 -0
  52. vellum/types/number_enum.py +5 -0
  53. vellum/types/number_variable_value.py +28 -0
  54. vellum/types/paginated_slim_deployment_read_list.py +32 -0
  55. vellum/types/paginated_slim_workflow_deployment_list.py +32 -0
  56. vellum/types/register_prompt_model_parameters_request.py +1 -0
  57. vellum/types/rejected_execute_workflow_workflow_result_event.py +35 -0
  58. vellum/types/scenario_input_type_enum.py +2 -2
  59. vellum/types/search_results_enum.py +5 -0
  60. vellum/types/search_results_variable_value.py +29 -0
  61. vellum/types/slim_deployment_read.py +48 -0
  62. vellum/types/slim_workflow_deployment.py +57 -0
  63. vellum/types/string_chat_message_content.py +32 -0
  64. vellum/types/string_chat_message_content_request.py +32 -0
  65. vellum/types/string_enum.py +5 -0
  66. vellum/types/string_input_request.py +4 -0
  67. vellum/types/variable_value.py +102 -0
  68. vellum/types/vellum_image.py +29 -0
  69. vellum/types/vellum_image_request.py +29 -0
  70. vellum/types/vellum_variable_type.py +5 -0
  71. vellum/types/workflow_output.py +111 -0
  72. vellum/types/workflow_output_array.py +35 -0
  73. vellum/types/workflow_output_chat_history.py +35 -0
  74. vellum/types/workflow_output_error.py +35 -0
  75. vellum/types/workflow_output_function_call.py +35 -0
  76. vellum/types/workflow_output_image.py +35 -0
  77. vellum/types/workflow_output_json.py +34 -0
  78. vellum/types/workflow_output_number.py +34 -0
  79. vellum/types/workflow_output_search_results.py +35 -0
  80. vellum/types/workflow_output_string.py +34 -0
  81. vellum/types/workflow_result_event.py +2 -0
  82. {vellum_ai-0.1.13.dist-info → vellum_ai-0.2.1.dist-info}/METADATA +1 -1
  83. {vellum_ai-0.1.13.dist-info → vellum_ai-0.2.1.dist-info}/RECORD +85 -31
  84. vellum/types/deployment_status.py +0 -31
  85. {vellum_ai-0.1.13.dist-info → vellum_ai-0.2.1.dist-info}/LICENSE +0 -0
  86. {vellum_ai-0.1.13.dist-info → vellum_ai-0.2.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,35 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .function_call import FunctionCall
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class WorkflowOutputFunctionCall(pydantic.BaseModel):
16
+ """
17
+ A function call output from a Workflow execution.
18
+ """
19
+
20
+ id: str
21
+ name: str = pydantic.Field(description="The output's name, as defined in the workflow")
22
+ value: FunctionCall
23
+
24
+ def json(self, **kwargs: typing.Any) -> str:
25
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
26
+ return super().json(**kwargs_with_defaults)
27
+
28
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
29
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
30
+ return super().dict(**kwargs_with_defaults)
31
+
32
+ class Config:
33
+ frozen = True
34
+ smart_union = True
35
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,35 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .vellum_image import VellumImage
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class WorkflowOutputImage(pydantic.BaseModel):
16
+ """
17
+ An image output from a Workflow execution.
18
+ """
19
+
20
+ id: str
21
+ name: str = pydantic.Field(description="The output's name, as defined in the workflow")
22
+ value: VellumImage
23
+
24
+ def json(self, **kwargs: typing.Any) -> str:
25
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
26
+ return super().json(**kwargs_with_defaults)
27
+
28
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
29
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
30
+ return super().dict(**kwargs_with_defaults)
31
+
32
+ class Config:
33
+ frozen = True
34
+ smart_union = True
35
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,34 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic.v1 as pydantic # type: ignore
10
+ except ImportError:
11
+ import pydantic # type: ignore
12
+
13
+
14
+ class WorkflowOutputJson(pydantic.BaseModel):
15
+ """
16
+ A JSON output from a Workflow execution.
17
+ """
18
+
19
+ id: str
20
+ name: str = pydantic.Field(description="The output's name, as defined in the workflow")
21
+ value: typing.Dict[str, typing.Any]
22
+
23
+ def json(self, **kwargs: typing.Any) -> str:
24
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
25
+ return super().json(**kwargs_with_defaults)
26
+
27
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().dict(**kwargs_with_defaults)
30
+
31
+ class Config:
32
+ frozen = True
33
+ smart_union = True
34
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,34 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic.v1 as pydantic # type: ignore
10
+ except ImportError:
11
+ import pydantic # type: ignore
12
+
13
+
14
+ class WorkflowOutputNumber(pydantic.BaseModel):
15
+ """
16
+ A number output from a Workflow execution.
17
+ """
18
+
19
+ id: str
20
+ name: str = pydantic.Field(description="The output's name, as defined in the workflow")
21
+ value: float
22
+
23
+ def json(self, **kwargs: typing.Any) -> str:
24
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
25
+ return super().json(**kwargs_with_defaults)
26
+
27
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().dict(**kwargs_with_defaults)
30
+
31
+ class Config:
32
+ frozen = True
33
+ smart_union = True
34
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,35 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .search_result import SearchResult
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class WorkflowOutputSearchResults(pydantic.BaseModel):
16
+ """
17
+ A search results output from a Workflow execution.
18
+ """
19
+
20
+ id: str
21
+ name: str = pydantic.Field(description="The output's name, as defined in the workflow")
22
+ value: typing.List[SearchResult]
23
+
24
+ def json(self, **kwargs: typing.Any) -> str:
25
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
26
+ return super().json(**kwargs_with_defaults)
27
+
28
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
29
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
30
+ return super().dict(**kwargs_with_defaults)
31
+
32
+ class Config:
33
+ frozen = True
34
+ smart_union = True
35
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,34 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic.v1 as pydantic # type: ignore
10
+ except ImportError:
11
+ import pydantic # type: ignore
12
+
13
+
14
+ class WorkflowOutputString(pydantic.BaseModel):
15
+ """
16
+ A string output from a Workflow execution.
17
+ """
18
+
19
+ id: str
20
+ name: str = pydantic.Field(description="The output's name, as defined in the workflow")
21
+ value: str
22
+
23
+ def json(self, **kwargs: typing.Any) -> str:
24
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
25
+ return super().json(**kwargs_with_defaults)
26
+
27
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().dict(**kwargs_with_defaults)
30
+
31
+ class Config:
32
+ frozen = True
33
+ smart_union = True
34
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -6,6 +6,7 @@ import typing
6
6
  from ..core.datetime_utils import serialize_datetime
7
7
  from .workflow_event_error import WorkflowEventError
8
8
  from .workflow_node_result_event_state import WorkflowNodeResultEventState
9
+ from .workflow_output import WorkflowOutput
9
10
  from .workflow_result_event_output_data import WorkflowResultEventOutputData
10
11
 
11
12
  try:
@@ -20,6 +21,7 @@ class WorkflowResultEvent(pydantic.BaseModel):
20
21
  ts: dt.datetime
21
22
  output: typing.Optional[WorkflowResultEventOutputData]
22
23
  error: typing.Optional[WorkflowEventError]
24
+ outputs: typing.Optional[typing.List[WorkflowOutput]]
23
25
 
24
26
  def json(self, **kwargs: typing.Any) -> str:
25
27
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.1.13
3
+ Version: 0.2.1
4
4
  Summary:
5
5
  Requires-Python: >=3.7,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,8 +1,8 @@
1
- vellum/__init__.py,sha256=u_BoPxw9hJ2eFHB1spRk6IVZRk6rnU7XUIDJW7gPbm4,19437
2
- vellum/client.py,sha256=oz0l_KYFAQq3VI2uGHdAluuk3iac0c45XCdyRg055Bw,55245
1
+ vellum/__init__.py,sha256=r2xz-ftFT8S6r4O0P0VDwuoCWvJkGmq3-jpWGXuPGtg,24851
2
+ vellum/client.py,sha256=gLkXgzirHxRjv9M4TaHGiSijihtTi_FdkNQvNYWOLxY,65068
3
3
  vellum/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
4
4
  vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
- vellum/core/client_wrapper.py,sha256=ZDifXeGaoivzpdnMr_qHKjes9Cu-BblUsRxwxwJdcHQ,1214
5
+ vellum/core/client_wrapper.py,sha256=oI43_TPY-7y9gbSprNEp4sZQ1h2b3sk5jz89y6wgfrM,1213
6
6
  vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  vellum/core/jsonable_encoder.py,sha256=MTYkDov2EryHgee4QM46uZiBOuOXK9KTHlBdBwU-CpU,3799
8
8
  vellum/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
@@ -14,28 +14,44 @@ vellum/errors/forbidden_error.py,sha256=dgnatOGair3CvxljCE45_qwN_yefzcw2G0vw88wr
14
14
  vellum/errors/internal_server_error.py,sha256=E0rgqJC0-LcetLi1HmSi92KpvNkGSRCIdBeEqT_ln1s,252
15
15
  vellum/errors/not_found_error.py,sha256=P65k-Lm2RuefAVSNLER5hH-4P99SGohKy2cOPSrIxNk,246
16
16
  vellum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- vellum/resources/__init__.py,sha256=ceVGZa6cItlSHYeXoDUeCJuYVs73cUxghmL6MTL3Vp4,339
18
- vellum/resources/deployments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
19
- vellum/resources/deployments/client.py,sha256=abtSfd_9XCrpOhxQ0kUWyDab9FRzGLTL-DZPWQP9Fr4,6625
17
+ vellum/resources/__init__.py,sha256=vtYfeQ0Owhn3uLX2j7Y16vrh6-8Y4QkZ1IDu9Dne9Po,631
18
+ vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
19
+ vellum/resources/deployments/client.py,sha256=GWzoeAESKJod82dOuUcYySWDw44DoS8Ih2j4WNsGIuM,11410
20
+ vellum/resources/deployments/types/__init__.py,sha256=IhwnmoXJ0r_QEhh1b2tBcaAm_x3fWMVuIhYmAapp_ZA,183
21
+ vellum/resources/deployments/types/deployments_list_request_status.py,sha256=phuWe_3mJi4tJh2XR9BFw5QimgzBBWKzKRG2huILy8o,518
20
22
  vellum/resources/document_indexes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
21
- vellum/resources/document_indexes/client.py,sha256=O3kun7NPMNFhpEBovL0wryJUxlIf2qbVzkOvg6gCvdI,8231
23
+ vellum/resources/document_indexes/client.py,sha256=j-j4eS9ObnyjOUE_kw_zq2Kkv-atO93L8xwRDMrvFT8,9520
22
24
  vellum/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
23
- vellum/resources/documents/client.py,sha256=lK41TE_cpTex8H-HT2WnXLPb7jSw3YA1DmanJIVs8xA,15550
25
+ vellum/resources/documents/client.py,sha256=EKxG4yR68bwU3fiuWkeiYAm_B9lI4xDHzr-0fQefNTg,16034
24
26
  vellum/resources/model_versions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
25
- vellum/resources/model_versions/client.py,sha256=S7nsjdWVK61gpB0Lp1Dbmst5SIb3IVJ7WdkNlHEVKSQ,2645
27
+ vellum/resources/model_versions/client.py,sha256=QJX7PNuR1fqyP1lzhOUpuPfgQFDz80Qcbxpe1QJDob0,3061
26
28
  vellum/resources/registered_prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
- vellum/resources/registered_prompts/client.py,sha256=5WC2vm4735IxuB67QPEBjUGUnu7SivYJOYQLtnGP_Ws,9401
29
+ vellum/resources/registered_prompts/client.py,sha256=qJx0meBnC3wbcHBhkToaz_a7SRkSGL4rf0MQsjYA5CE,13185
28
30
  vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
29
- vellum/resources/sandboxes/client.py,sha256=RkMHXuNGblYEMDdbUeFHzJDGEIxJd9HGiThXUbR1MNg,8201
31
+ vellum/resources/sandboxes/client.py,sha256=QnaGKDddlgbC-PLUODgLmiwunAA66STr0dnMvivUO6Q,10125
30
32
  vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
31
- vellum/resources/test_suites/client.py,sha256=FuO3i0gkjdCddUfygXiGvqoB1BxbS-GvS_Qpf2dt1Kk,8693
32
- vellum/types/__init__.py,sha256=X0xTGtWGJM0VH_6jA-JRzMnLK3nok1oR8ChQp4On2fc,26358
33
+ vellum/resources/test_suites/client.py,sha256=461l3pHhlSkYfv9toWersX-XcOhku0glsRDE68n3akg,8697
34
+ vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
35
+ vellum/resources/workflow_deployments/client.py,sha256=3yvvXvB4axl592Djv3QKMcnhNcJw7tHZtR0COq5TjIg,5050
36
+ vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
37
+ vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=8-G1SalBR6-AfRnb6POOR9M3tvZa3CGwFIs1ArZb6uw,542
38
+ vellum/types/__init__.py,sha256=K3MVziBlD-iHotByC5KnRAJH8AG6q_9EjkAW0qKiqnI,33290
33
39
  vellum/types/api_node_result.py,sha256=1zAcNznjyVkTQM2V--UE1lYFzRWbYEogoChZBGcsliE,936
34
40
  vellum/types/api_node_result_data.py,sha256=HvpZaAKYXsoBOnobACIYCmIdxbRc7Zp-ibIohiz_Nzc,1125
41
+ vellum/types/array_chat_message_content.py,sha256=9aHCzT66f7zTX0oWEL-yvIL8L81joe2Qe5L_DaRDqnU,1050
42
+ vellum/types/array_chat_message_content_item.py,sha256=a383gaeYCucVDvnY1Xk1z8INbPt-qch4VCT6i_JD3OA,1221
43
+ vellum/types/array_chat_message_content_item_request.py,sha256=Plg6Ny8pwn-na1r1vPeJSdg1IovFcJqcyT_0UiYqfWs,1345
44
+ vellum/types/array_chat_message_content_request.py,sha256=nXvKOArX2Bx_T2S4-ZK_09bfsSkCQb69OahL1Q_h3bU,1079
45
+ vellum/types/array_enum.py,sha256=ZpwcTHF6WuYeP8QlVfkuJ_YSyPH0iYjeydvHV5kF0HU,138
46
+ vellum/types/array_variable_value.py,sha256=jRrS3CTLXxO44b6Q7ReH4WEOJCdjKQj6dXgLcmiY_Cs,1035
35
47
  vellum/types/block_type_enum.py,sha256=w6z5D3RTe75YQBG6HpX8NCbO_kSZxIL0Xy1xss2RKS8,1051
36
- vellum/types/chat_history_input_request.py,sha256=zZ3_qj0vPCBcAc5fMaxJjGibGCqYXv6yeSQy6VCHIc0,1059
37
- vellum/types/chat_message.py,sha256=dvII2EkChDp2zuPnSU5ycmqm2SMGoqttGha00HC9ETs,941
38
- vellum/types/chat_message_request.py,sha256=9wgnG0Q36jUNTr7vS0FASRFrsXzgIccrjNiC7M_PwkM,948
48
+ vellum/types/chat_history_enum.py,sha256=aiUhxKMC4D83EjGnKNPSzSwoBT5J6G0O-TvBTKr4Oek,151
49
+ vellum/types/chat_history_input_request.py,sha256=VyGS0Mv_He-fI2d22ygpC2k5ddXKnzWDRFc7-Xkryog,1130
50
+ vellum/types/chat_history_variable_value.py,sha256=koLGjfczUqLz56JWV0lWFXfE0NkjHFHfbIX1qdD7im0,958
51
+ vellum/types/chat_message.py,sha256=oQAvsjlhbLWANAiQgdNCOpU1OBRDa9RyiywRklG5M9I,1060
52
+ vellum/types/chat_message_content.py,sha256=2NQqu8qgDlsYs5-ka7OMYAyZXA0Ft2n2I2efvNDBFg8,1466
53
+ vellum/types/chat_message_content_request.py,sha256=V0Q4CI4TYeqD4b7flSI69L1XkLSxrgadK4GpMhWo8Yg,1630
54
+ vellum/types/chat_message_request.py,sha256=Z94aauMvBusbYc90H7bzg53OJ0250cOj0BpuzcQmZfg,1089
39
55
  vellum/types/chat_message_role.py,sha256=IXfZXOw62Y6k6TMGpGWz1DCSdl44bRJzYEIRasKl26o,914
40
56
  vellum/types/code_execution_node_chat_history_result.py,sha256=9lybuGFqXaTrlf8r5m5mnmuDZ46gqR31nzA_S2hXdPY,980
41
57
  vellum/types/code_execution_node_error_result.py,sha256=PGGBH6brCG_eomL8aiBj2M2SwK5FBghElxg8MGtN2YQ,961
@@ -49,29 +65,38 @@ vellum/types/code_execution_node_string_result.py,sha256=lJeXmeW81lFsObggD-lw5bw
49
65
  vellum/types/conditional_node_result.py,sha256=u2Rx3LOY0rNwdSb6vZnOmMRcDvl83uKXccVQv2kzS7g,968
50
66
  vellum/types/conditional_node_result_data.py,sha256=IT6PnM2N4q8JJ4srk9ushri4GnCvxMz9VuEcbhmo_rs,911
51
67
  vellum/types/deployment_provider_payload_response.py,sha256=R8X-oE1hydzE4qgLO0HS6NwlW157if4ecCPJPCLyPHY,918
52
- vellum/types/deployment_read.py,sha256=1zXZD7ELTwwVKNnyc7tCrR_B_phbWKWNB6kg2tF3S9A,2110
53
- vellum/types/deployment_status.py,sha256=gguF4j9-7WcCarUh4tBYK7DTJDdNCe0WmWJp4NFV21w,761
68
+ vellum/types/deployment_read.py,sha256=gAO7m-BWVHc4HUW4lWgb9f3Soy5WnSyNmbtw_eVuG0s,2000
54
69
  vellum/types/document_document_to_document_index.py,sha256=At_H6ipv8Sbft5fnyr4aE3D5LMZ34sxrxta3TJYiuqc,1634
55
- vellum/types/document_index_read.py,sha256=3sJ3ERq48qk2BUjys-XrcY_TavKFTEthWuyByYg6n2o,1889
56
- vellum/types/document_index_status.py,sha256=GRzG3AidlGKqXQ1ZIScUJofpNi35jTO49SiV48aBRyU,560
70
+ vellum/types/document_index_read.py,sha256=Jq-oKq5ioQW5iZ3o9kU6RaYMvMwM8APaSK4rRxbeZEE,1867
57
71
  vellum/types/document_read.py,sha256=375oQM5G2nChgoUw6nzMZSclXrYCY9K2urQej2twvsw,2264
58
72
  vellum/types/document_status.py,sha256=dkotle2rykOxF1QxqcM8af2ORzmFjZR5a7pHXP6SjDQ,144
59
73
  vellum/types/enriched_normalized_completion.py,sha256=uaWn20XfRO2Wvtkj_C_6EejC9YAz4s0UR9tJoOhzouI,2135
74
+ vellum/types/entity_status.py,sha256=mOmg4bcQlLH1OZ1dV5TIHGqgHrG89XhAC-dailkM1s0,539
60
75
  vellum/types/environment_enum.py,sha256=4BOiy38qQQfcoSHJyfAGaC4QMOo8Zc-9TdNP7z9q2iw,799
76
+ vellum/types/error_enum.py,sha256=39AQMEUAKc9vBN6i7Xq7JeKyYEtGiN7YdW0DfYfiag8,138
61
77
  vellum/types/error_variable_value.py,sha256=uI1rYCfZZsTs683lrirH1Jctn_W4AvgQfBA4hMWNfnw,939
62
78
  vellum/types/evaluation_params.py,sha256=Ey-RgV4uKVv8G4Dj6lmX_qiBsLcPo1NmoY2xcFW_qDQ,1048
63
79
  vellum/types/evaluation_params_request.py,sha256=izDbrQHT7QFYjxXX9bkeZnoCle3teShaodbnV_11sJo,1055
64
80
  vellum/types/execute_prompt_api_error_response.py,sha256=f0peA0yIyF1dqh2PclsVEaiCCoLK73KEwYq32cj82Nw,958
65
81
  vellum/types/execute_prompt_event.py,sha256=NzJU6TyaA5C7Ks-52mnjv7yNPRmlW8_1HIFI3_TlEiE,1523
66
82
  vellum/types/execute_prompt_response.py,sha256=SqL28HqVlaAnxjK05k9oYHxrzI3F96WPdAO7mujXwGM,871
83
+ vellum/types/execute_workflow_error_response.py,sha256=kxMiLUezrkBaDsgBzQSkC5EqGAyXruI8IXxNXdly3oc,957
84
+ vellum/types/execute_workflow_response.py,sha256=guQjJrVYohQKKC3obN0K6VWFjwa1Q2lofx2z8r3WE4g,1091
67
85
  vellum/types/execute_workflow_stream_error_response.py,sha256=WHSu333maVV2Nbxs43QCxlW6wjbkPdm-97DP1tzglAA,963
86
+ vellum/types/execute_workflow_workflow_result_event.py,sha256=z8zlB1HZv6Wvhdsc-XY51Tv6dSqIFKGVy_20pmKAfN4,1024
68
87
  vellum/types/finish_reason_enum.py,sha256=zAvOLiq2ngmDILEftziwCGYb4z-wlih0XHRNOo35FzM,726
69
88
  vellum/types/fulfilled_enum.py,sha256=mMP8i4YCkFeJXZ5SqOLGNercErechFzpEs8Gs_sIWto,146
70
89
  vellum/types/fulfilled_execute_prompt_event.py,sha256=VFPXczMrjnwXi5oEG3r_jVnK2wM-pmlclddvn5GaRwk,1248
71
90
  vellum/types/fulfilled_execute_prompt_response.py,sha256=YAvwKdFuo_uT8G2LqOOjtkwu9zVYtXBYm_RsxYgIN5M,1450
91
+ vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=TK8fgst0AlvtZXM1SstNvmiWlrz5yJuwI0c4S3FAE4g,1109
72
92
  vellum/types/fulfilled_function_call.py,sha256=fZrTh53XN3dO5bvdtVWGtQ91VgLPKzeMY-b-Z53-uKo,1012
73
93
  vellum/types/fulfilled_prompt_execution_meta.py,sha256=FDCQoqisV2SzUVD_Yw0lMv9tM7gW_6wHTbobUBz9Jwk,1145
74
94
  vellum/types/function_call.py,sha256=-eKu1NTK3WevQDZVVwaMzYkctl8KErZq9bh1qOxc4MA,770
95
+ vellum/types/function_call_chat_message_content.py,sha256=23LvUR_xUKOylDGjal0JIhdY5BEkvj_aZ64iZxRKZxM,1085
96
+ vellum/types/function_call_chat_message_content_request.py,sha256=XS0Hu4KsSixRG0TN5u7OUhMJXlOtCpwUv86MR3yQUwc,1114
97
+ vellum/types/function_call_chat_message_content_value.py,sha256=OoxQyybIAhOwgS3cPshH3dof7sqJ2-GB4r5B8SLPPoI,1026
98
+ vellum/types/function_call_chat_message_content_value_request.py,sha256=viRFBnqgNEry_d3NU9CV1usQF84GP_9UG6HjKneX7BM,1033
99
+ vellum/types/function_call_enum.py,sha256=lZBEEFornevJE_dyUkeoeR4MNR-4SEY1Mdu2F57NuVo,153
75
100
  vellum/types/function_call_variable_value.py,sha256=tS-nHSwuue4EWOLXEuLI4xSjSNGVoHBK15Dd0C4hu30,932
76
101
  vellum/types/generate_error_response.py,sha256=auz4NPbyceabCe0eN89lavEwotWbqsTSbkJtI_lgXJs,950
77
102
  vellum/types/generate_options_request.py,sha256=iqmaim-vkUgVsPMmDJ7sMmSl1WOGB4Psgfg-GvNe0ik,1117
@@ -83,11 +108,15 @@ vellum/types/generate_result_error.py,sha256=UkxmkHaGueCqvWwhBpCpp4bl7ijgfRFHsHv
83
108
  vellum/types/generate_stream_response.py,sha256=mbaw11ScmPmSgih02qE2pLDN0fjILc3LY1KiSX6txRE,954
84
109
  vellum/types/generate_stream_result.py,sha256=NevSf70_mbODDRPnauYobl41PNbPVcNKyWTe2gg-lxI,1107
85
110
  vellum/types/generate_stream_result_data.py,sha256=lyAvxY714Zo5W1i4WkuIbKjyP3rLGJAQ_pL2jkDL7Pg,1011
111
+ vellum/types/image_chat_message_content.py,sha256=1b9g-yESgYCT9JVeNEvkpSdP483zac83yvsqYUhYAy4,995
112
+ vellum/types/image_chat_message_content_request.py,sha256=DEHXr7I9Ei5wrVP2PC1iRwLAwbrO7xDnNdJMmaTvVQE,1024
113
+ vellum/types/image_enum.py,sha256=wbwM5geMGBoG_Lyb7-YOcd7LNZWtTGaA2HTPAmSX-j4,138
86
114
  vellum/types/indexing_state_enum.py,sha256=uzSb7J75Ge0vxH_WQ2WHKQbZIjvfluyZ2IjqyJjVCrs,1181
87
115
  vellum/types/initiated_enum.py,sha256=WitSWqhr_zFsxu2mxpl3lTVKYJApUT0YrVLSAK6ZJGY,146
88
116
  vellum/types/initiated_execute_prompt_event.py,sha256=MJFmfVzldEDwnnM_RW0gOsEuN1pUzBcyWPzCqfBUAic,1147
89
117
  vellum/types/initiated_prompt_execution_meta.py,sha256=ZVno9in1xXbxsOg7WuJmnIWdB6yVHfGI-8hUqMhWLeo,1173
90
- vellum/types/json_input_request.py,sha256=x3aGIGpjqG8aPxRWfneeWalR2mOdQJKlviF72URrnMg,996
118
+ vellum/types/json_enum.py,sha256=H2EVEuwMW8VUcLhN3fRxbH15yre0hIvZ0eI3A78E7lY,136
119
+ vellum/types/json_input_request.py,sha256=9eUhL2wKld-1T7DPoisa61IIBqQXFrydxaX_kGRtElQ,1057
91
120
  vellum/types/json_variable_value.py,sha256=khIv0GUMx3sTl2Y8LtRe3PAFWRYXejThDBYMolVbA6Y,917
92
121
  vellum/types/logical_operator.py,sha256=kS7lccMbnTqBzcpJQz_vP100yoG4DE2npIjoQud_GAk,4282
93
122
  vellum/types/logprobs_enum.py,sha256=9jlz9zInPYZxjd5ciVTewWyNJeJK5s1HLSe-aPdZ3Ro,490
@@ -96,7 +125,7 @@ vellum/types/metadata_filter_rule_combinator.py,sha256=hmfQ3drGlGYqRA78iZr7ek8qZ
96
125
  vellum/types/metadata_filter_rule_request.py,sha256=Bo_IQiMfNKx7qzEU36WovvPQoYhxIWn1zQFHN6kEevs,1349
97
126
  vellum/types/model_version_build_config.py,sha256=qxHpUjgguJ3HX4V4VYfYSCMwoQC-S8sP1DG_X5orMHs,1356
98
127
  vellum/types/model_version_exec_config.py,sha256=14gVZNz-Hxg7ocEZQs3LQ3BUAL3Vcxo-SxAYC64beIQ,1632
99
- vellum/types/model_version_exec_config_parameters.py,sha256=RzhbO7holFFrAmT3crLUPpIPDJm-QDBHT65Kuhnmvek,1178
128
+ vellum/types/model_version_exec_config_parameters.py,sha256=lqcsauboroPdTdoertqsCcLAjoQnBb7wJD7dHxSrf6w,1247
100
129
  vellum/types/model_version_read.py,sha256=y9ASO4CWwmfsoarLXSMW6an3BdQy0H1mLKvV4WDpCT0,2575
101
130
  vellum/types/model_version_read_status_enum.py,sha256=uQCzeBoMqn29-V2b6fiq5rv9G3yBApaHWQLMMRRL-Hs,1032
102
131
  vellum/types/model_version_sandbox_snapshot.py,sha256=yxan0nnKQh8YKZgYCV8H2VrtA7_OlQEtbHMVpGwcgW0,1217
@@ -116,7 +145,11 @@ vellum/types/node_input_compiled_string_value.py,sha256=lrOr8WhK5wZrsUb1-7bYQ7M2
116
145
  vellum/types/node_input_variable_compiled_value.py,sha256=6PhquhSskdpslUfbS0roxl8H2iQC_WLOGy3IagsZLQs,2381
117
146
  vellum/types/normalized_log_probs.py,sha256=XhiqVdoFYWbVhYWinsiDzkIRSs1t2DCMEX18EwK-c24,1013
118
147
  vellum/types/normalized_token_log_probs.py,sha256=ZIEr6evXULAv5GFhkekr1Qc6QsJjr2vsTdumMooO4oc,1014
148
+ vellum/types/number_enum.py,sha256=NBfcHwHjWrS5-SSV82JsoX7EW-SU9yKcHHYAemRt_Gs,140
149
+ vellum/types/number_variable_value.py,sha256=fKWlCu-Roel4CYQ7go_cPok0bvTEbU6JOaReymrUjSU,896
150
+ vellum/types/paginated_slim_deployment_read_list.py,sha256=MeOByJstYNcBpqfnsmZ7NIOMilo5DerIALc01FNrU0Q,1087
119
151
  vellum/types/paginated_slim_document_list.py,sha256=rfm_k539tWn6jVBjtgUG1M0AqtPvxtwPXwBJLPBiE6Q,1062
152
+ vellum/types/paginated_slim_workflow_deployment_list.py,sha256=HSnI0CeB7-gJuCkjCvFZVE2Om00OYCTOs4I5Rzaudm8,1103
120
153
  vellum/types/processing_failure_reason_enum.py,sha256=MDj2vNyO1Y-2WHuolkrGez8F1cZqS6ultfsqvGI4Fg8,752
121
154
  vellum/types/processing_state_enum.py,sha256=rMhw5oLZNfhR4QkIgFfLMWRSLXgHt9qhiguEqWQNz5k,962
122
155
  vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=6pPGEk_dKi1FzHEFESvl7yOpM4fH3imOJ_U_03TTytI,1819
@@ -134,7 +167,7 @@ vellum/types/prompt_template_block_request.py,sha256=6js3_Jfy65xzNijioY0uDbDDcc0
134
167
  vellum/types/provider_enum.py,sha256=npChY_aeD59zF0hOu3wYMBJECq3k1vRQrjDBtCVQMEs,2516
135
168
  vellum/types/raw_prompt_execution_overrides_request.py,sha256=hXel7EwdvThEXzLuxYxSxivVFAnyEbhZ64cRj3bAlKE,1192
136
169
  vellum/types/register_prompt_error_response.py,sha256=ma0aguRLbdsCWVrWyUBQPaWpfQ99pzcuXNTptpOj8jM,956
137
- vellum/types/register_prompt_model_parameters_request.py,sha256=E-1F5tV-NhPCKAiQHdQYJ28H20Wxy5aqJ-l2KDE4dOw,1146
170
+ vellum/types/register_prompt_model_parameters_request.py,sha256=Q4Gq15Po03DU1v7pkkxHD_-5Wx4OFJCQHcEGc8-Ge6o,1215
138
171
  vellum/types/register_prompt_prompt.py,sha256=EWqQOYXiNgfRLYM2LiN4M5QLziPigMRRKYBrKY6CxGg,1035
139
172
  vellum/types/register_prompt_prompt_info_request.py,sha256=H4XDSGxnafjYuSe2IYrz7Rc3KNxvAzzjShn57l9ErVs,1269
140
173
  vellum/types/register_prompt_response.py,sha256=9xoaa8SchcMEltCC05kVaFXxON8HXfvioG_g_2ObfPs,1926
@@ -146,6 +179,7 @@ vellum/types/registered_prompt_sandbox_snapshot.py,sha256=Dv4sY70rvdLtyKi8oN2mWw
146
179
  vellum/types/rejected_enum.py,sha256=FKiuB_gp3EQ5caugx-eiFwRO6iv5lVDS_JBUjPTeRhQ,144
147
180
  vellum/types/rejected_execute_prompt_event.py,sha256=56LDUfgEkDEkaqtloD4Yg6CUQci69KJYoYWj-zr5d1M,1172
148
181
  vellum/types/rejected_execute_prompt_response.py,sha256=JOf1cYJ3TVR8aWLuL1R-sj7DFYi2igaOs0yaPmc2-Aw,1410
182
+ vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=b7nicyHuhAOc5R_KrWAkRZ30BHAEddgSTMTihjXobx8,1123
149
183
  vellum/types/rejected_function_call.py,sha256=c14z0BPFs48ifoccraOShFaQDz6D6g2kpktJs1TE39E,1051
150
184
  vellum/types/rejected_prompt_execution_meta.py,sha256=rJsnrz0E0W6Mkq9gBLN4c3sXrr1Mg14feUtj4bKZgvY,1144
151
185
  vellum/types/sandbox_metric_input_params.py,sha256=WPrqAWggrSvu9syP2Fk4SGj08YvV55oF9dD6Cb40gjE,961
@@ -153,7 +187,7 @@ vellum/types/sandbox_metric_input_params_request.py,sha256=UbTt4QimyaoYjzhWNggpF
153
187
  vellum/types/sandbox_scenario.py,sha256=mGidLY1jAdw7BSMbeXTc-PtiZLSQS4peOiJmxL8YxqQ,1214
154
188
  vellum/types/scenario_input.py,sha256=a1OMFt1RxJMNYoJ9PclhJof_IBuJE6B4fb6kPdIuLTg,1108
155
189
  vellum/types/scenario_input_request.py,sha256=kXki5ENoCHDSajT5pcL_NRi4urAtZvg5d2-B7zHDIsY,1137
156
- vellum/types/scenario_input_type_enum.py,sha256=yPsVnnDsZJqVN_K8QZcr8Hqo-kB8EMzXJNcbmiLude0,580
190
+ vellum/types/scenario_input_type_enum.py,sha256=S16TuGQ_Ifge1QLKem_ZlHSsqr3_lfLGZpEAj2IYrQk,580
157
191
  vellum/types/search_error_response.py,sha256=-hA3qCNDHfoYjV1bir68iZ7VBezvc7pOAymFeVcP4Gc,948
158
192
  vellum/types/search_filters_request.py,sha256=1SgO5C3te2J2Pz5PC0jBCOTELjHT04i4FH29UFyaFqo,1221
159
193
  vellum/types/search_node_result.py,sha256=402QVgWh7BLaz27m8uU94oEdydJRVCm_zQvmpJEBH1s,948
@@ -165,12 +199,19 @@ vellum/types/search_result_document.py,sha256=pg7iwRzRPtlv4E2S7HcPaYfnu5myot3Spx
165
199
  vellum/types/search_result_document_request.py,sha256=MeleItFXTTvx45hPmI4mhKdQSVmHesUndTAKAtaME7c,1357
166
200
  vellum/types/search_result_merging_request.py,sha256=lLgp8q1WwvdUJcR1YWpLRjmZ3SgYZj2-Bbg450xWxDg,970
167
201
  vellum/types/search_result_request.py,sha256=SMjICHnxr3l8-KCe7ftWMZiKPdlvdMAPZd4zRXNxpQ8,1335
202
+ vellum/types/search_results_enum.py,sha256=Duyq99BLaCcFw_-VOpHff-tP8QSFP-FfzLRN81Avgjw,155
203
+ vellum/types/search_results_variable_value.py,sha256=vyVdzPmriQPVvQu52CM7z8LZup3tFh5dl5BFnarPMI8,963
168
204
  vellum/types/search_weights_request.py,sha256=guPgN3N0b5Mg0sIpw8ts80iBOT_nUsRNZqjDMKJIphI,1117
205
+ vellum/types/slim_deployment_read.py,sha256=80-xQdAlZaIwqg_QB6FWRDNGRmXTeHkK8-SHGCJOLFs,1811
169
206
  vellum/types/slim_document.py,sha256=AcFFqAHpE067rn3j4x0qQt6Y2yN5La-pPPLB3s6QfD8,3074
207
+ vellum/types/slim_workflow_deployment.py,sha256=dkluwIhwpxDcC54QLIIQgBOSK-hCFsbYmdnNzImsBcc,2205
170
208
  vellum/types/streaming_enum.py,sha256=-cknmHCDQ3FJXHthl5jH-UpZxhIqjGjNxhQR9w1RdTY,146
171
209
  vellum/types/streaming_execute_prompt_event.py,sha256=WaXFjOukP3MOgSWkZgmjKw9hNOvVjJtHi1xqM1pUgys,1393
172
210
  vellum/types/streaming_prompt_execution_meta.py,sha256=2cCvMZZqVL2s2X7VrfiyDuLEwemBylDQVlyOfsVFF7A,1043
173
- vellum/types/string_input_request.py,sha256=aUzb_zuLK9G7tHBRHVWCJD4o-UbcVcMVtIrgAoES8dw,973
211
+ vellum/types/string_chat_message_content.py,sha256=c9jLLefmb-ABurTEbOOslDPtKt6Pl5xgUSfvBUb__bI,950
212
+ vellum/types/string_chat_message_content_request.py,sha256=1dsWZfgFrcgp6VdndL_cIj-grkX0QORlETb9ZraEesA,957
213
+ vellum/types/string_enum.py,sha256=66RXPEf5TwDtolzhy2Nvoa1VV4dfg-ATn35Rakofg7I,140
214
+ vellum/types/string_input_request.py,sha256=H5rTwn1VZSZ7NAaxCrgiF3lBidgkoge1aUJPAU8AqK0,1035
174
215
  vellum/types/string_variable_value.py,sha256=nrAkxRMNHn3-RGyRcwJaA1L3-KJX8ogbRQylRUFEuJI,894
175
216
  vellum/types/submit_completion_actual_request.py,sha256=krKZefK_-0LAEJYIKilUemEwc6v0RELpusQvyj1XUJQ,1787
176
217
  vellum/types/submit_completion_actuals_error_response.py,sha256=AJTkBM60F8rxGKXfz0TcjdP5v_OgRnF3zUrDG1CtNDo,895
@@ -203,11 +244,14 @@ vellum/types/test_case_variable_value.py,sha256=Bxd_4a5qFilAaF5ZV04ytX9-bDFlLsYB
203
244
  vellum/types/test_suite_test_case.py,sha256=X0ofIlD4wL7zgybJFptuUqpCGjIyS916fch5PAmaF3U,1092
204
245
  vellum/types/upload_document_error_response.py,sha256=j2NahdS7jnklF9sGIaw7SbDEa3QhnzsDG3mG6prbGSQ,886
205
246
  vellum/types/upload_document_response.py,sha256=6SY4OqEHIg_EUgOwU2rSdWeNDQULUt2LZv6zN-QCJ7Y,956
247
+ vellum/types/variable_value.py,sha256=xNwfsAb9IdmiRG6iJ-gC8yRUnkEGhbKwVP4UAFbmTvg,2645
206
248
  vellum/types/vellum_error.py,sha256=rO2oP5qbRRpk17X5D-Gf8Ea2oSkqkZpp7n71Dz-Qivw,957
207
249
  vellum/types/vellum_error_code_enum.py,sha256=X7aUaKZR1jiYnaa9OxPu-bze3Tua31Gh22HJAxw6fyI,969
208
250
  vellum/types/vellum_error_request.py,sha256=kMDn9F-Cg4IWQeaX_nCdvadu7JlaIvtf6Rmm3tdVkD0,964
251
+ vellum/types/vellum_image.py,sha256=1lbzLpkpvJ1Te3ZNtCAKCe2y8uHoDog5u5Sk97UBRek,927
252
+ vellum/types/vellum_image_request.py,sha256=7ZSlLAN5YDFLPy3O2j7Lfv7oEdvyZEZRxKTv6pDPS3M,934
209
253
  vellum/types/vellum_variable.py,sha256=mVchGYwlkdti5QKb4nTqalA_rotmwhI0fLlT-dmrweQ,964
210
- vellum/types/vellum_variable_type.py,sha256=eedC83HixsZLDvv29EQ-NYrmWPEQ-cEL_CMm7H0MS_g,1695
254
+ vellum/types/vellum_variable_type.py,sha256=noEyyIxh9AutFdSnL9hdkngSWSEzF_xHRJVte19RX_E,1855
211
255
  vellum/types/workflow_event_error.py,sha256=X1jEuhnsZoh75FN6XpTvtbO67UD_1SiACsBk5bhn3wQ,1001
212
256
  vellum/types/workflow_execution_actual_chat_history_request.py,sha256=skI-SuvBfJc8wxH2EDMqyKCGUgjfFFBUPkCLyncHgmM,2014
213
257
  vellum/types/workflow_execution_actual_json_request.py,sha256=hVKpBukLehwDUopO7iiKv-wTvxDDg4SXMYmmexZDMo0,1951
@@ -219,12 +263,22 @@ vellum/types/workflow_execution_workflow_result_event.py,sha256=vf4iqhXjSF8gNZol
219
263
  vellum/types/workflow_node_result_data.py,sha256=PRa9r7LZzZULEVI56Pj2JFZ8eAxiYO7lMeNRB6T3Lbs,2384
220
264
  vellum/types/workflow_node_result_event.py,sha256=rowQ3ZzdFVm2KWHS4U0NjYy-wNOTUXYpYx1Zr1IYbgM,1441
221
265
  vellum/types/workflow_node_result_event_state.py,sha256=PwWxuO6cqCPQOoH1woYEahxr3za7yEr2YiS0zuICj4I,1035
266
+ vellum/types/workflow_output.py,sha256=yecXfJ9AlP6zKv4aSpoe1nIekpj2iYeFpuernwDu1lU,2934
267
+ vellum/types/workflow_output_array.py,sha256=8DdFH_j6TXPQ2abFeH8sdyrxY-UTkFZZKk3aEIH-YX4,1114
268
+ vellum/types/workflow_output_chat_history.py,sha256=--RXF39zD7Ywtk8GQ5zJWY5L6uLIaObZjswrrRTRX2A,1116
269
+ vellum/types/workflow_output_error.py,sha256=hZEh0Xi2_MuHhfDsl6jRTAvH7-ptqtpTB_rtv2FzWBY,1091
270
+ vellum/types/workflow_output_function_call.py,sha256=wFzWd38erYxy9f-bmVyQbSUNnxsOfAskLmtmYnf32FY,1108
271
+ vellum/types/workflow_output_image.py,sha256=xxJhMJLwL9ZeBIqBpwxQyWEkJ5i8ZqiHQmC-4SwbAsw,1091
272
+ vellum/types/workflow_output_json.py,sha256=3jqhAl2siI2UIWlNa_08Vd0joioJQ5JxikLRbfN_ARU,1067
273
+ vellum/types/workflow_output_number.py,sha256=8zoGZLnmF1dmO48puGxJWw7T0XQp3EFHj8c5GWj4TXo,1048
274
+ vellum/types/workflow_output_search_results.py,sha256=6F1iLjcNWbw50PrKnci-JygXYGPlTkGwhU6qqMKZGCs,1123
275
+ vellum/types/workflow_output_string.py,sha256=WzualuRO4-P9Byg2YbX7icXNRkOirVNbJQ-VHY6M62w,1046
222
276
  vellum/types/workflow_request_chat_history_input_request.py,sha256=qnbW2l-3k0AgwKNDAam29pvYmMGMn0V4aTXSR2YlXuQ,1072
223
277
  vellum/types/workflow_request_input_request.py,sha256=ZYmEH0-gRMGcMSSKDD2aBtfDjwMU_m4hmt17NPZ7uQA,1666
224
278
  vellum/types/workflow_request_json_input_request.py,sha256=VbcQsnTp4myLN_wRSmkxMJILaDgaPjZQKovNTpkp1Is,1009
225
279
  vellum/types/workflow_request_number_input_request.py,sha256=E7d2_QE-o1vv_VVfR6CFEGiGLYxrMdkZ7d3sZUN-6cU,988
226
280
  vellum/types/workflow_request_string_input_request.py,sha256=L1Zl1_K7Tlqjaz5pJfb8Q4GG2BVKWJzw2Wos6IEJpxM,986
227
- vellum/types/workflow_result_event.py,sha256=lMguy0yzxJKx_9F6KHb_3kz-52iUk-bN6gFmSCyQGrw,1245
281
+ vellum/types/workflow_result_event.py,sha256=5-HN3_dqTgEiKPnXoxCdzv1C3P9ZP1qL7Y_gDeh9k9w,1347
228
282
  vellum/types/workflow_result_event_output_data.py,sha256=WugPeifmg-x5Ef6hFZ6L3gQC68_e57Q-xThlcWEBhlA,2500
229
283
  vellum/types/workflow_result_event_output_data_chat_history.py,sha256=g-pnQ0q_z_2sAi6YqK6ZkxiJsEHmNcDb9i-UNxvL9JY,1318
230
284
  vellum/types/workflow_result_event_output_data_error.py,sha256=YXW7hOIwEtaRsCPbNcf-FlogY-gmbd2aklhGsCb73vg,1299
@@ -233,7 +287,7 @@ vellum/types/workflow_result_event_output_data_number.py,sha256=zWtQor27iaDDHmY5
233
287
  vellum/types/workflow_result_event_output_data_search_results.py,sha256=frCaJ5kWrIqCeV-waBNfd7rO4fqWe5aYpSI8PM4-oRw,1323
234
288
  vellum/types/workflow_result_event_output_data_string.py,sha256=TByZxyQh9ci4UIdEmoEi_JK1U_JwYCnVZeB_4kGuXKM,1405
235
289
  vellum/types/workflow_stream_event.py,sha256=OQUSzwoM-OCfWxNzeOVVLsjCue_WWqin3tGMtwvp_rc,873
236
- vellum_ai-0.1.13.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
237
- vellum_ai-0.1.13.dist-info/METADATA,sha256=uG81tlwk-SZR_i618eXPstzjt6Dz-8ft7xUtoDubz9k,3487
238
- vellum_ai-0.1.13.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
239
- vellum_ai-0.1.13.dist-info/RECORD,,
290
+ vellum_ai-0.2.1.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
291
+ vellum_ai-0.2.1.dist-info/METADATA,sha256=_Iqn5QSLiiX1jFjGIdtAI4gGFGez-Kw_-Mbpft5zwp4,3486
292
+ vellum_ai-0.2.1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
293
+ vellum_ai-0.2.1.dist-info/RECORD,,
@@ -1,31 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import enum
4
- import typing
5
-
6
- T_Result = typing.TypeVar("T_Result")
7
-
8
-
9
- class DeploymentStatus(str, enum.Enum):
10
- """
11
- - `ACTIVE` - Active
12
- - `INACTIVE` - Inactive
13
- - `ARCHIVED` - Archived
14
- """
15
-
16
- ACTIVE = "ACTIVE"
17
- INACTIVE = "INACTIVE"
18
- ARCHIVED = "ARCHIVED"
19
-
20
- def visit(
21
- self,
22
- active: typing.Callable[[], T_Result],
23
- inactive: typing.Callable[[], T_Result],
24
- archived: typing.Callable[[], T_Result],
25
- ) -> T_Result:
26
- if self is DeploymentStatus.ACTIVE:
27
- return active()
28
- if self is DeploymentStatus.INACTIVE:
29
- return inactive()
30
- if self is DeploymentStatus.ARCHIVED:
31
- return archived()