vellum-ai 0.1.10__py3-none-any.whl → 0.1.12__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.
vellum/__init__.py CHANGED
@@ -52,7 +52,12 @@ from .types import (
52
52
  FulfilledEnum,
53
53
  FulfilledExecutePromptEvent,
54
54
  FulfilledExecutePromptResponse,
55
+ FulfilledFunctionCall,
55
56
  FulfilledPromptExecutionMeta,
57
+ FunctionCall,
58
+ FunctionCallVariableValue,
59
+ FunctionCall_Fulfilled,
60
+ FunctionCall_Rejected,
56
61
  GenerateErrorResponse,
57
62
  GenerateOptionsRequest,
58
63
  GenerateRequest,
@@ -121,6 +126,7 @@ from .types import (
121
126
  PromptNodeResultData,
122
127
  PromptOutput,
123
128
  PromptOutput_Error,
129
+ PromptOutput_FunctionCall,
124
130
  PromptOutput_Json,
125
131
  PromptOutput_String,
126
132
  PromptTemplateBlock,
@@ -144,6 +150,7 @@ from .types import (
144
150
  RejectedEnum,
145
151
  RejectedExecutePromptEvent,
146
152
  RejectedExecutePromptResponse,
153
+ RejectedFunctionCall,
147
154
  RejectedPromptExecutionMeta,
148
155
  SandboxMetricInputParams,
149
156
  SandboxMetricInputParamsRequest,
@@ -338,7 +345,12 @@ __all__ = [
338
345
  "FulfilledEnum",
339
346
  "FulfilledExecutePromptEvent",
340
347
  "FulfilledExecutePromptResponse",
348
+ "FulfilledFunctionCall",
341
349
  "FulfilledPromptExecutionMeta",
350
+ "FunctionCall",
351
+ "FunctionCallVariableValue",
352
+ "FunctionCall_Fulfilled",
353
+ "FunctionCall_Rejected",
342
354
  "GenerateErrorResponse",
343
355
  "GenerateOptionsRequest",
344
356
  "GenerateRequest",
@@ -409,6 +421,7 @@ __all__ = [
409
421
  "PromptNodeResultData",
410
422
  "PromptOutput",
411
423
  "PromptOutput_Error",
424
+ "PromptOutput_FunctionCall",
412
425
  "PromptOutput_Json",
413
426
  "PromptOutput_String",
414
427
  "PromptTemplateBlock",
@@ -432,6 +445,7 @@ __all__ = [
432
445
  "RejectedEnum",
433
446
  "RejectedExecutePromptEvent",
434
447
  "RejectedExecutePromptResponse",
448
+ "RejectedFunctionCall",
435
449
  "RejectedPromptExecutionMeta",
436
450
  "SandboxMetricInputParams",
437
451
  "SandboxMetricInputParamsRequest",
@@ -16,7 +16,7 @@ class BaseClientWrapper:
16
16
  headers: typing.Dict[str, str] = {
17
17
  "X-Fern-Language": "Python",
18
18
  "X-Fern-SDK-Name": "vellum-ai",
19
- "X-Fern-SDK-Version": "v0.1.10",
19
+ "X-Fern-SDK-Version": "0.1.12",
20
20
  }
21
21
  headers["X_API_KEY"] = self.api_key
22
22
  return headers
vellum/types/__init__.py CHANGED
@@ -57,7 +57,10 @@ from .finish_reason_enum import FinishReasonEnum
57
57
  from .fulfilled_enum import FulfilledEnum
58
58
  from .fulfilled_execute_prompt_event import FulfilledExecutePromptEvent
59
59
  from .fulfilled_execute_prompt_response import FulfilledExecutePromptResponse
60
+ from .fulfilled_function_call import FulfilledFunctionCall
60
61
  from .fulfilled_prompt_execution_meta import FulfilledPromptExecutionMeta
62
+ from .function_call import FunctionCall, FunctionCall_Fulfilled, FunctionCall_Rejected
63
+ from .function_call_variable_value import FunctionCallVariableValue
61
64
  from .generate_error_response import GenerateErrorResponse
62
65
  from .generate_options_request import GenerateOptionsRequest
63
66
  from .generate_request import GenerateRequest
@@ -130,7 +133,13 @@ from .prompt_deployment_input_request import (
130
133
  from .prompt_execution_meta import PromptExecutionMeta
131
134
  from .prompt_node_result import PromptNodeResult
132
135
  from .prompt_node_result_data import PromptNodeResultData
133
- from .prompt_output import PromptOutput, PromptOutput_Error, PromptOutput_Json, PromptOutput_String
136
+ from .prompt_output import (
137
+ PromptOutput,
138
+ PromptOutput_Error,
139
+ PromptOutput_FunctionCall,
140
+ PromptOutput_Json,
141
+ PromptOutput_String,
142
+ )
134
143
  from .prompt_template_block import PromptTemplateBlock
135
144
  from .prompt_template_block_data import PromptTemplateBlockData
136
145
  from .prompt_template_block_data_request import PromptTemplateBlockDataRequest
@@ -152,6 +161,7 @@ from .registered_prompt_sandbox_snapshot import RegisteredPromptSandboxSnapshot
152
161
  from .rejected_enum import RejectedEnum
153
162
  from .rejected_execute_prompt_event import RejectedExecutePromptEvent
154
163
  from .rejected_execute_prompt_response import RejectedExecutePromptResponse
164
+ from .rejected_function_call import RejectedFunctionCall
155
165
  from .rejected_prompt_execution_meta import RejectedPromptExecutionMeta
156
166
  from .sandbox_metric_input_params import SandboxMetricInputParams
157
167
  from .sandbox_metric_input_params_request import SandboxMetricInputParamsRequest
@@ -343,7 +353,12 @@ __all__ = [
343
353
  "FulfilledEnum",
344
354
  "FulfilledExecutePromptEvent",
345
355
  "FulfilledExecutePromptResponse",
356
+ "FulfilledFunctionCall",
346
357
  "FulfilledPromptExecutionMeta",
358
+ "FunctionCall",
359
+ "FunctionCallVariableValue",
360
+ "FunctionCall_Fulfilled",
361
+ "FunctionCall_Rejected",
347
362
  "GenerateErrorResponse",
348
363
  "GenerateOptionsRequest",
349
364
  "GenerateRequest",
@@ -412,6 +427,7 @@ __all__ = [
412
427
  "PromptNodeResultData",
413
428
  "PromptOutput",
414
429
  "PromptOutput_Error",
430
+ "PromptOutput_FunctionCall",
415
431
  "PromptOutput_Json",
416
432
  "PromptOutput_String",
417
433
  "PromptTemplateBlock",
@@ -435,6 +451,7 @@ __all__ = [
435
451
  "RejectedEnum",
436
452
  "RejectedExecutePromptEvent",
437
453
  "RejectedExecutePromptResponse",
454
+ "RejectedFunctionCall",
438
455
  "RejectedPromptExecutionMeta",
439
456
  "SandboxMetricInputParams",
440
457
  "SandboxMetricInputParamsRequest",
@@ -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 FulfilledFunctionCall(pydantic.BaseModel):
15
+ """
16
+ The final resolved function call value.
17
+ """
18
+
19
+ arguments: typing.Dict[str, typing.Any]
20
+ id: typing.Optional[str]
21
+ name: 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}
@@ -0,0 +1,31 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from __future__ import annotations
4
+
5
+ import typing
6
+
7
+ import typing_extensions
8
+
9
+ from .fulfilled_function_call import FulfilledFunctionCall
10
+ from .rejected_function_call import RejectedFunctionCall
11
+
12
+
13
+ class FunctionCall_Fulfilled(FulfilledFunctionCall):
14
+ state: typing_extensions.Literal["FULFILLED"]
15
+
16
+ class Config:
17
+ frozen = True
18
+ smart_union = True
19
+ allow_population_by_field_name = True
20
+
21
+
22
+ class FunctionCall_Rejected(RejectedFunctionCall):
23
+ state: typing_extensions.Literal["REJECTED"]
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ allow_population_by_field_name = True
29
+
30
+
31
+ FunctionCall = typing.Union[FunctionCall_Fulfilled, FunctionCall_Rejected]
@@ -0,0 +1,29 @@
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 FunctionCallVariableValue(pydantic.BaseModel):
16
+ value: FunctionCall
17
+
18
+ def json(self, **kwargs: typing.Any) -> str:
19
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
20
+ return super().json(**kwargs_with_defaults)
21
+
22
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
23
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
24
+ return super().dict(**kwargs_with_defaults)
25
+
26
+ class Config:
27
+ frozen = True
28
+ smart_union = True
29
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -7,6 +7,7 @@ import typing
7
7
  import typing_extensions
8
8
 
9
9
  from .error_variable_value import ErrorVariableValue
10
+ from .function_call_variable_value import FunctionCallVariableValue
10
11
  from .json_variable_value import JsonVariableValue
11
12
  from .string_variable_value import StringVariableValue
12
13
 
@@ -38,4 +39,13 @@ class PromptOutput_Error(ErrorVariableValue):
38
39
  allow_population_by_field_name = True
39
40
 
40
41
 
41
- PromptOutput = typing.Union[PromptOutput_String, PromptOutput_Json, PromptOutput_Error]
42
+ class PromptOutput_FunctionCall(FunctionCallVariableValue):
43
+ type: typing_extensions.Literal["FUNCTION_CALL"]
44
+
45
+ class Config:
46
+ frozen = True
47
+ smart_union = True
48
+ allow_population_by_field_name = True
49
+
50
+
51
+ PromptOutput = typing.Union[PromptOutput_String, PromptOutput_Json, PromptOutput_Error, PromptOutput_FunctionCall]
@@ -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_error import VellumError
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class RejectedFunctionCall(pydantic.BaseModel):
16
+ """
17
+ Returned if the function call failed to parse for some reason.
18
+ """
19
+
20
+ error: VellumError
21
+ id: typing.Optional[str]
22
+ name: str
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}
@@ -15,6 +15,7 @@ class VellumVariableType(str, enum.Enum):
15
15
  - `SEARCH_RESULTS` - SEARCH_RESULTS
16
16
  - `ERROR` - ERROR
17
17
  - `ARRAY` - ARRAY
18
+ - `FUNCTION_CALL` - FUNCTION_CALL
18
19
  """
19
20
 
20
21
  STRING = "STRING"
@@ -24,6 +25,7 @@ class VellumVariableType(str, enum.Enum):
24
25
  SEARCH_RESULTS = "SEARCH_RESULTS"
25
26
  ERROR = "ERROR"
26
27
  ARRAY = "ARRAY"
28
+ FUNCTION_CALL = "FUNCTION_CALL"
27
29
 
28
30
  def visit(
29
31
  self,
@@ -34,6 +36,7 @@ class VellumVariableType(str, enum.Enum):
34
36
  search_results: typing.Callable[[], T_Result],
35
37
  error: typing.Callable[[], T_Result],
36
38
  array: typing.Callable[[], T_Result],
39
+ function_call: typing.Callable[[], T_Result],
37
40
  ) -> T_Result:
38
41
  if self is VellumVariableType.STRING:
39
42
  return string()
@@ -49,3 +52,5 @@ class VellumVariableType(str, enum.Enum):
49
52
  return error()
50
53
  if self is VellumVariableType.ARRAY:
51
54
  return array()
55
+ if self is VellumVariableType.FUNCTION_CALL:
56
+ return function_call()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.1.10
3
+ Version: 0.1.12
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=p7CWPTlrwlGlE9tu6qL8gfoI4-amEuZ-mH3Rhe9U0gU,19047
1
+ vellum/__init__.py,sha256=u_BoPxw9hJ2eFHB1spRk6IVZRk6rnU7XUIDJW7gPbm4,19437
2
2
  vellum/client.py,sha256=oz0l_KYFAQq3VI2uGHdAluuk3iac0c45XCdyRg055Bw,55245
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=rhGN6OMXQDU8yR-8_i7MymJI4s65NwQw5O3RonH3pC4,1214
5
+ vellum/core/client_wrapper.py,sha256=DuSoycZHqWhXzgKqtztIxlIl5FVaMx13J250DIYhb-k,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
@@ -29,7 +29,7 @@ vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roe
29
29
  vellum/resources/sandboxes/client.py,sha256=RkMHXuNGblYEMDdbUeFHzJDGEIxJd9HGiThXUbR1MNg,8201
30
30
  vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
31
31
  vellum/resources/test_suites/client.py,sha256=FuO3i0gkjdCddUfygXiGvqoB1BxbS-GvS_Qpf2dt1Kk,8693
32
- vellum/types/__init__.py,sha256=uE4GCtzivR9fD2j1bznJim3UPbYJisY5AeIe0J6hpW8,25833
32
+ vellum/types/__init__.py,sha256=X0xTGtWGJM0VH_6jA-JRzMnLK3nok1oR8ChQp4On2fc,26358
33
33
  vellum/types/api_node_result.py,sha256=1zAcNznjyVkTQM2V--UE1lYFzRWbYEogoChZBGcsliE,936
34
34
  vellum/types/api_node_result_data.py,sha256=HvpZaAKYXsoBOnobACIYCmIdxbRc7Zp-ibIohiz_Nzc,1125
35
35
  vellum/types/block_type_enum.py,sha256=w6z5D3RTe75YQBG6HpX8NCbO_kSZxIL0Xy1xss2RKS8,1051
@@ -69,7 +69,10 @@ vellum/types/finish_reason_enum.py,sha256=zAvOLiq2ngmDILEftziwCGYb4z-wlih0XHRNOo
69
69
  vellum/types/fulfilled_enum.py,sha256=mMP8i4YCkFeJXZ5SqOLGNercErechFzpEs8Gs_sIWto,146
70
70
  vellum/types/fulfilled_execute_prompt_event.py,sha256=VFPXczMrjnwXi5oEG3r_jVnK2wM-pmlclddvn5GaRwk,1248
71
71
  vellum/types/fulfilled_execute_prompt_response.py,sha256=YAvwKdFuo_uT8G2LqOOjtkwu9zVYtXBYm_RsxYgIN5M,1450
72
+ vellum/types/fulfilled_function_call.py,sha256=fZrTh53XN3dO5bvdtVWGtQ91VgLPKzeMY-b-Z53-uKo,1012
72
73
  vellum/types/fulfilled_prompt_execution_meta.py,sha256=FDCQoqisV2SzUVD_Yw0lMv9tM7gW_6wHTbobUBz9Jwk,1145
74
+ vellum/types/function_call.py,sha256=-eKu1NTK3WevQDZVVwaMzYkctl8KErZq9bh1qOxc4MA,770
75
+ vellum/types/function_call_variable_value.py,sha256=tS-nHSwuue4EWOLXEuLI4xSjSNGVoHBK15Dd0C4hu30,932
73
76
  vellum/types/generate_error_response.py,sha256=auz4NPbyceabCe0eN89lavEwotWbqsTSbkJtI_lgXJs,950
74
77
  vellum/types/generate_options_request.py,sha256=iqmaim-vkUgVsPMmDJ7sMmSl1WOGB4Psgfg-GvNe0ik,1117
75
78
  vellum/types/generate_request.py,sha256=Wf5j8TIhLqPwwJJz63TiMNty2cvnJI9xVmUKtWlJIpQ,1581
@@ -121,7 +124,7 @@ vellum/types/prompt_deployment_input_request.py,sha256=pwI4mGEz88s8gJr1j_5-4t501
121
124
  vellum/types/prompt_execution_meta.py,sha256=tF9eMOh_CAMvtq2lXVRfVOaWp12jDhuoEUY2S2aENsM,1266
122
125
  vellum/types/prompt_node_result.py,sha256=TxFRE6-2LFrG1Mo9uA7dOfNs8_Jk6u7bOWhmOzYQiJY,948
123
126
  vellum/types/prompt_node_result_data.py,sha256=LyNkZz-9lYejVtIaej1m7u5CiWmXVFG8IAr6hVQBgZg,945
124
- vellum/types/prompt_output.py,sha256=cyp7UWyYPy-pgmdNJqc1N15gE2du2WJTd72cqI_Ltp4,1012
127
+ vellum/types/prompt_output.py,sha256=Bz8hTTGUdg0GAmvTw0_gSCoB3jzs_zhF7kPbpKDMSD0,1336
125
128
  vellum/types/prompt_template_block.py,sha256=2UfBd8ktRrvVp_gZFLWevrV5D1UjXCji4YbeHPAVl0c,1164
126
129
  vellum/types/prompt_template_block_data.py,sha256=fEveYsxf-CAPNhxjirVRNCcqTtmNBxFdjMks-W9-02c,983
127
130
  vellum/types/prompt_template_block_data_request.py,sha256=HgrcEIgO8OSseYsqqNX9VKpjutfrK6LEYofg3Ifu8mU,1012
@@ -143,6 +146,7 @@ vellum/types/registered_prompt_sandbox_snapshot.py,sha256=Dv4sY70rvdLtyKi8oN2mWw
143
146
  vellum/types/rejected_enum.py,sha256=FKiuB_gp3EQ5caugx-eiFwRO6iv5lVDS_JBUjPTeRhQ,144
144
147
  vellum/types/rejected_execute_prompt_event.py,sha256=56LDUfgEkDEkaqtloD4Yg6CUQci69KJYoYWj-zr5d1M,1172
145
148
  vellum/types/rejected_execute_prompt_response.py,sha256=JOf1cYJ3TVR8aWLuL1R-sj7DFYi2igaOs0yaPmc2-Aw,1410
149
+ vellum/types/rejected_function_call.py,sha256=c14z0BPFs48ifoccraOShFaQDz6D6g2kpktJs1TE39E,1051
146
150
  vellum/types/rejected_prompt_execution_meta.py,sha256=rJsnrz0E0W6Mkq9gBLN4c3sXrr1Mg14feUtj4bKZgvY,1144
147
151
  vellum/types/sandbox_metric_input_params.py,sha256=WPrqAWggrSvu9syP2Fk4SGj08YvV55oF9dD6Cb40gjE,961
148
152
  vellum/types/sandbox_metric_input_params_request.py,sha256=UbTt4QimyaoYjzhWNggpFL7SlYLgKqZ4i6_skWzAo2I,990
@@ -203,7 +207,7 @@ vellum/types/vellum_error.py,sha256=rO2oP5qbRRpk17X5D-Gf8Ea2oSkqkZpp7n71Dz-Qivw,
203
207
  vellum/types/vellum_error_code_enum.py,sha256=X7aUaKZR1jiYnaa9OxPu-bze3Tua31Gh22HJAxw6fyI,969
204
208
  vellum/types/vellum_error_request.py,sha256=kMDn9F-Cg4IWQeaX_nCdvadu7JlaIvtf6Rmm3tdVkD0,964
205
209
  vellum/types/vellum_variable.py,sha256=mVchGYwlkdti5QKb4nTqalA_rotmwhI0fLlT-dmrweQ,964
206
- vellum/types/vellum_variable_type.py,sha256=c6AU50N-v2_AoIcUMzczCHxbxJh9BsEd49DAb8UlC04,1479
210
+ vellum/types/vellum_variable_type.py,sha256=eedC83HixsZLDvv29EQ-NYrmWPEQ-cEL_CMm7H0MS_g,1695
207
211
  vellum/types/workflow_event_error.py,sha256=X1jEuhnsZoh75FN6XpTvtbO67UD_1SiACsBk5bhn3wQ,1001
208
212
  vellum/types/workflow_execution_actual_chat_history_request.py,sha256=skI-SuvBfJc8wxH2EDMqyKCGUgjfFFBUPkCLyncHgmM,2014
209
213
  vellum/types/workflow_execution_actual_json_request.py,sha256=hVKpBukLehwDUopO7iiKv-wTvxDDg4SXMYmmexZDMo0,1951
@@ -229,6 +233,6 @@ vellum/types/workflow_result_event_output_data_number.py,sha256=zWtQor27iaDDHmY5
229
233
  vellum/types/workflow_result_event_output_data_search_results.py,sha256=frCaJ5kWrIqCeV-waBNfd7rO4fqWe5aYpSI8PM4-oRw,1323
230
234
  vellum/types/workflow_result_event_output_data_string.py,sha256=TByZxyQh9ci4UIdEmoEi_JK1U_JwYCnVZeB_4kGuXKM,1405
231
235
  vellum/types/workflow_stream_event.py,sha256=OQUSzwoM-OCfWxNzeOVVLsjCue_WWqin3tGMtwvp_rc,873
232
- vellum_ai-0.1.10.dist-info/METADATA,sha256=FMHtByGy9cDhishaDiKO3lgp_dhTAaE74Loyb1vUlks,3487
233
- vellum_ai-0.1.10.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
234
- vellum_ai-0.1.10.dist-info/RECORD,,
236
+ vellum_ai-0.1.12.dist-info/METADATA,sha256=wJvQglTcH4jgg0iyNQ5Q0Fh0F_50MIH_IEPnsneMAWA,3487
237
+ vellum_ai-0.1.12.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
238
+ vellum_ai-0.1.12.dist-info/RECORD,,