vellum-ai 0.8.6__py3-none-any.whl → 0.8.9__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 +6 -0
- vellum/client.py +24 -0
- vellum/core/client_wrapper.py +1 -1
- vellum/types/__init__.py +6 -0
- vellum/types/ad_hoc_expand_meta_request.py +5 -1
- vellum/types/price.py +21 -0
- vellum/types/prompt_deployment_expand_meta_request.py +5 -0
- vellum/types/prompt_execution_meta.py +2 -0
- vellum/types/test_suite_run_metric_json_output.py +25 -0
- vellum/types/test_suite_run_metric_output.py +5 -1
- vellum/types/unit_enum.py +5 -0
- {vellum_ai-0.8.6.dist-info → vellum_ai-0.8.9.dist-info}/METADATA +1 -1
- {vellum_ai-0.8.6.dist-info → vellum_ai-0.8.9.dist-info}/RECORD +15 -12
- {vellum_ai-0.8.6.dist-info → vellum_ai-0.8.9.dist-info}/LICENSE +0 -0
- {vellum_ai-0.8.6.dist-info → vellum_ai-0.8.9.dist-info}/WHEEL +0 -0
vellum/__init__.py
CHANGED
@@ -209,6 +209,7 @@ from .types import (
|
|
209
209
|
PdfSearchResultMetaSource,
|
210
210
|
PdfSearchResultMetaSourceRequest,
|
211
211
|
PlainTextPromptBlockRequest,
|
212
|
+
Price,
|
212
213
|
ProcessingFailureReasonEnum,
|
213
214
|
ProcessingStateEnum,
|
214
215
|
PromptBlockRequest,
|
@@ -333,6 +334,7 @@ from .types import (
|
|
333
334
|
TestSuiteRunExternalExecConfigDataRequest,
|
334
335
|
TestSuiteRunExternalExecConfigRequest,
|
335
336
|
TestSuiteRunMetricErrorOutput,
|
337
|
+
TestSuiteRunMetricJsonOutput,
|
336
338
|
TestSuiteRunMetricNumberOutput,
|
337
339
|
TestSuiteRunMetricOutput,
|
338
340
|
TestSuiteRunMetricStringOutput,
|
@@ -362,6 +364,7 @@ from .types import (
|
|
362
364
|
TokenOverlappingWindowChunkerConfigRequest,
|
363
365
|
TokenOverlappingWindowChunking,
|
364
366
|
TokenOverlappingWindowChunkingRequest,
|
367
|
+
UnitEnum,
|
365
368
|
UploadDocumentResponse,
|
366
369
|
UpsertTestSuiteTestCaseRequest,
|
367
370
|
VariablePromptBlockRequest,
|
@@ -651,6 +654,7 @@ __all__ = [
|
|
651
654
|
"PdfSearchResultMetaSource",
|
652
655
|
"PdfSearchResultMetaSourceRequest",
|
653
656
|
"PlainTextPromptBlockRequest",
|
657
|
+
"Price",
|
654
658
|
"ProcessingFailureReasonEnum",
|
655
659
|
"ProcessingStateEnum",
|
656
660
|
"PromptBlockRequest",
|
@@ -775,6 +779,7 @@ __all__ = [
|
|
775
779
|
"TestSuiteRunExternalExecConfigDataRequest",
|
776
780
|
"TestSuiteRunExternalExecConfigRequest",
|
777
781
|
"TestSuiteRunMetricErrorOutput",
|
782
|
+
"TestSuiteRunMetricJsonOutput",
|
778
783
|
"TestSuiteRunMetricNumberOutput",
|
779
784
|
"TestSuiteRunMetricOutput",
|
780
785
|
"TestSuiteRunMetricStringOutput",
|
@@ -804,6 +809,7 @@ __all__ = [
|
|
804
809
|
"TokenOverlappingWindowChunkerConfigRequest",
|
805
810
|
"TokenOverlappingWindowChunking",
|
806
811
|
"TokenOverlappingWindowChunkingRequest",
|
812
|
+
"UnitEnum",
|
807
813
|
"UploadDocumentResponse",
|
808
814
|
"UpsertTestSuiteTestCaseRequest",
|
809
815
|
"VariablePromptBlockRequest",
|
vellum/client.py
CHANGED
@@ -344,6 +344,7 @@ class Vellum:
|
|
344
344
|
expand_meta=PromptDeploymentExpandMetaRequest(
|
345
345
|
model_name=True,
|
346
346
|
usage=True,
|
347
|
+
cost=True,
|
347
348
|
finish_reason=True,
|
348
349
|
latency=True,
|
349
350
|
deployment_release_tag=True,
|
@@ -449,6 +450,7 @@ class Vellum:
|
|
449
450
|
workflow_deployment_name: typing.Optional[str] = OMIT,
|
450
451
|
release_tag: typing.Optional[str] = OMIT,
|
451
452
|
external_id: typing.Optional[str] = OMIT,
|
453
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
452
454
|
request_options: typing.Optional[RequestOptions] = None,
|
453
455
|
) -> ExecuteWorkflowResponse:
|
454
456
|
"""
|
@@ -474,6 +476,9 @@ class Vellum:
|
|
474
476
|
external_id : typing.Optional[str]
|
475
477
|
Optionally include a unique identifier for tracking purposes. Must be unique for a given workflow deployment.
|
476
478
|
|
479
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
480
|
+
Arbitrary JSON metadata associated with this request. Can be used to capture additional monitoring data such as user id, session id, etc. for future analysis.
|
481
|
+
|
477
482
|
request_options : typing.Optional[RequestOptions]
|
478
483
|
Request-specific configuration.
|
479
484
|
|
@@ -509,6 +514,7 @@ class Vellum:
|
|
509
514
|
"workflow_deployment_name": workflow_deployment_name,
|
510
515
|
"release_tag": release_tag,
|
511
516
|
"external_id": external_id,
|
517
|
+
"metadata": metadata,
|
512
518
|
},
|
513
519
|
request_options=request_options,
|
514
520
|
omit=OMIT,
|
@@ -567,6 +573,7 @@ class Vellum:
|
|
567
573
|
release_tag: typing.Optional[str] = OMIT,
|
568
574
|
external_id: typing.Optional[str] = OMIT,
|
569
575
|
event_types: typing.Optional[typing.Sequence[WorkflowExecutionEventType]] = OMIT,
|
576
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
570
577
|
request_options: typing.Optional[RequestOptions] = None,
|
571
578
|
) -> typing.Iterator[WorkflowStreamEvent]:
|
572
579
|
"""
|
@@ -595,6 +602,9 @@ class Vellum:
|
|
595
602
|
event_types : typing.Optional[typing.Sequence[WorkflowExecutionEventType]]
|
596
603
|
Optionally specify which events you want to receive. Defaults to only WORKFLOW events. Note that the schema of non-WORKFLOW events is unstable and should be used with caution.
|
597
604
|
|
605
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
606
|
+
Arbitrary JSON metadata associated with this request. Can be used to capture additional monitoring data such as user id, session id, etc. for future analysis.
|
607
|
+
|
598
608
|
request_options : typing.Optional[RequestOptions]
|
599
609
|
Request-specific configuration.
|
600
610
|
|
@@ -629,6 +639,7 @@ class Vellum:
|
|
629
639
|
release_tag="string",
|
630
640
|
external_id="string",
|
631
641
|
event_types=["NODE"],
|
642
|
+
metadata={"string": {"key": "value"}},
|
632
643
|
)
|
633
644
|
for chunk in response:
|
634
645
|
yield chunk
|
@@ -645,6 +656,7 @@ class Vellum:
|
|
645
656
|
"release_tag": release_tag,
|
646
657
|
"external_id": external_id,
|
647
658
|
"event_types": event_types,
|
659
|
+
"metadata": metadata,
|
648
660
|
},
|
649
661
|
request_options=request_options,
|
650
662
|
omit=OMIT,
|
@@ -1524,6 +1536,7 @@ class AsyncVellum:
|
|
1524
1536
|
expand_meta=PromptDeploymentExpandMetaRequest(
|
1525
1537
|
model_name=True,
|
1526
1538
|
usage=True,
|
1539
|
+
cost=True,
|
1527
1540
|
finish_reason=True,
|
1528
1541
|
latency=True,
|
1529
1542
|
deployment_release_tag=True,
|
@@ -1632,6 +1645,7 @@ class AsyncVellum:
|
|
1632
1645
|
workflow_deployment_name: typing.Optional[str] = OMIT,
|
1633
1646
|
release_tag: typing.Optional[str] = OMIT,
|
1634
1647
|
external_id: typing.Optional[str] = OMIT,
|
1648
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
1635
1649
|
request_options: typing.Optional[RequestOptions] = None,
|
1636
1650
|
) -> ExecuteWorkflowResponse:
|
1637
1651
|
"""
|
@@ -1657,6 +1671,9 @@ class AsyncVellum:
|
|
1657
1671
|
external_id : typing.Optional[str]
|
1658
1672
|
Optionally include a unique identifier for tracking purposes. Must be unique for a given workflow deployment.
|
1659
1673
|
|
1674
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
1675
|
+
Arbitrary JSON metadata associated with this request. Can be used to capture additional monitoring data such as user id, session id, etc. for future analysis.
|
1676
|
+
|
1660
1677
|
request_options : typing.Optional[RequestOptions]
|
1661
1678
|
Request-specific configuration.
|
1662
1679
|
|
@@ -1700,6 +1717,7 @@ class AsyncVellum:
|
|
1700
1717
|
"workflow_deployment_name": workflow_deployment_name,
|
1701
1718
|
"release_tag": release_tag,
|
1702
1719
|
"external_id": external_id,
|
1720
|
+
"metadata": metadata,
|
1703
1721
|
},
|
1704
1722
|
request_options=request_options,
|
1705
1723
|
omit=OMIT,
|
@@ -1758,6 +1776,7 @@ class AsyncVellum:
|
|
1758
1776
|
release_tag: typing.Optional[str] = OMIT,
|
1759
1777
|
external_id: typing.Optional[str] = OMIT,
|
1760
1778
|
event_types: typing.Optional[typing.Sequence[WorkflowExecutionEventType]] = OMIT,
|
1779
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
1761
1780
|
request_options: typing.Optional[RequestOptions] = None,
|
1762
1781
|
) -> typing.AsyncIterator[WorkflowStreamEvent]:
|
1763
1782
|
"""
|
@@ -1786,6 +1805,9 @@ class AsyncVellum:
|
|
1786
1805
|
event_types : typing.Optional[typing.Sequence[WorkflowExecutionEventType]]
|
1787
1806
|
Optionally specify which events you want to receive. Defaults to only WORKFLOW events. Note that the schema of non-WORKFLOW events is unstable and should be used with caution.
|
1788
1807
|
|
1808
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
1809
|
+
Arbitrary JSON metadata associated with this request. Can be used to capture additional monitoring data such as user id, session id, etc. for future analysis.
|
1810
|
+
|
1789
1811
|
request_options : typing.Optional[RequestOptions]
|
1790
1812
|
Request-specific configuration.
|
1791
1813
|
|
@@ -1825,6 +1847,7 @@ class AsyncVellum:
|
|
1825
1847
|
release_tag="string",
|
1826
1848
|
external_id="string",
|
1827
1849
|
event_types=["NODE"],
|
1850
|
+
metadata={"string": {"key": "value"}},
|
1828
1851
|
)
|
1829
1852
|
async for chunk in response:
|
1830
1853
|
yield chunk
|
@@ -1844,6 +1867,7 @@ class AsyncVellum:
|
|
1844
1867
|
"release_tag": release_tag,
|
1845
1868
|
"external_id": external_id,
|
1846
1869
|
"event_types": event_types,
|
1870
|
+
"metadata": metadata,
|
1847
1871
|
},
|
1848
1872
|
request_options=request_options,
|
1849
1873
|
omit=OMIT,
|
vellum/core/client_wrapper.py
CHANGED
vellum/types/__init__.py
CHANGED
@@ -216,6 +216,7 @@ from .paginated_test_suite_test_case_list import PaginatedTestSuiteTestCaseList
|
|
216
216
|
from .pdf_search_result_meta_source import PdfSearchResultMetaSource
|
217
217
|
from .pdf_search_result_meta_source_request import PdfSearchResultMetaSourceRequest
|
218
218
|
from .plain_text_prompt_block_request import PlainTextPromptBlockRequest
|
219
|
+
from .price import Price
|
219
220
|
from .processing_failure_reason_enum import ProcessingFailureReasonEnum
|
220
221
|
from .processing_state_enum import ProcessingStateEnum
|
221
222
|
from .prompt_block_request import PromptBlockRequest
|
@@ -342,6 +343,7 @@ from .test_suite_run_external_exec_config_data import TestSuiteRunExternalExecCo
|
|
342
343
|
from .test_suite_run_external_exec_config_data_request import TestSuiteRunExternalExecConfigDataRequest
|
343
344
|
from .test_suite_run_external_exec_config_request import TestSuiteRunExternalExecConfigRequest
|
344
345
|
from .test_suite_run_metric_error_output import TestSuiteRunMetricErrorOutput
|
346
|
+
from .test_suite_run_metric_json_output import TestSuiteRunMetricJsonOutput
|
345
347
|
from .test_suite_run_metric_number_output import TestSuiteRunMetricNumberOutput
|
346
348
|
from .test_suite_run_metric_output import TestSuiteRunMetricOutput
|
347
349
|
from .test_suite_run_metric_string_output import TestSuiteRunMetricStringOutput
|
@@ -373,6 +375,7 @@ from .token_overlapping_window_chunker_config import TokenOverlappingWindowChunk
|
|
373
375
|
from .token_overlapping_window_chunker_config_request import TokenOverlappingWindowChunkerConfigRequest
|
374
376
|
from .token_overlapping_window_chunking import TokenOverlappingWindowChunking
|
375
377
|
from .token_overlapping_window_chunking_request import TokenOverlappingWindowChunkingRequest
|
378
|
+
from .unit_enum import UnitEnum
|
376
379
|
from .upload_document_response import UploadDocumentResponse
|
377
380
|
from .upsert_test_suite_test_case_request import UpsertTestSuiteTestCaseRequest
|
378
381
|
from .variable_prompt_block_request import VariablePromptBlockRequest
|
@@ -635,6 +638,7 @@ __all__ = [
|
|
635
638
|
"PdfSearchResultMetaSource",
|
636
639
|
"PdfSearchResultMetaSourceRequest",
|
637
640
|
"PlainTextPromptBlockRequest",
|
641
|
+
"Price",
|
638
642
|
"ProcessingFailureReasonEnum",
|
639
643
|
"ProcessingStateEnum",
|
640
644
|
"PromptBlockRequest",
|
@@ -759,6 +763,7 @@ __all__ = [
|
|
759
763
|
"TestSuiteRunExternalExecConfigDataRequest",
|
760
764
|
"TestSuiteRunExternalExecConfigRequest",
|
761
765
|
"TestSuiteRunMetricErrorOutput",
|
766
|
+
"TestSuiteRunMetricJsonOutput",
|
762
767
|
"TestSuiteRunMetricNumberOutput",
|
763
768
|
"TestSuiteRunMetricOutput",
|
764
769
|
"TestSuiteRunMetricStringOutput",
|
@@ -788,6 +793,7 @@ __all__ = [
|
|
788
793
|
"TokenOverlappingWindowChunkerConfigRequest",
|
789
794
|
"TokenOverlappingWindowChunking",
|
790
795
|
"TokenOverlappingWindowChunkingRequest",
|
796
|
+
"UnitEnum",
|
791
797
|
"UploadDocumentResponse",
|
792
798
|
"UpsertTestSuiteTestCaseRequest",
|
793
799
|
"VariablePromptBlockRequest",
|
@@ -7,7 +7,11 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
|
8
8
|
|
9
9
|
class AdHocExpandMetaRequest(UniversalBaseModel):
|
10
|
-
cost: typing.Optional[bool] = None
|
10
|
+
cost: typing.Optional[bool] = pydantic.Field(default=None)
|
11
|
+
"""
|
12
|
+
If enabled, the response will include model host cost tracking. This may increase latency for some model hosts.
|
13
|
+
"""
|
14
|
+
|
11
15
|
model_name: typing.Optional[bool] = pydantic.Field(default=None)
|
12
16
|
"""
|
13
17
|
If enabled, the response will include the model identifier representing the ML Model invoked by the Prompt.
|
vellum/types/price.py
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
4
|
+
from .unit_enum import UnitEnum
|
5
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
6
|
+
import typing
|
7
|
+
import pydantic
|
8
|
+
|
9
|
+
|
10
|
+
class Price(UniversalBaseModel):
|
11
|
+
value: float
|
12
|
+
unit: UnitEnum = "USD"
|
13
|
+
|
14
|
+
if IS_PYDANTIC_V2:
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
16
|
+
else:
|
17
|
+
|
18
|
+
class Config:
|
19
|
+
frozen = True
|
20
|
+
smart_union = True
|
21
|
+
extra = pydantic.Extra.allow
|
@@ -17,6 +17,11 @@ class PromptDeploymentExpandMetaRequest(UniversalBaseModel):
|
|
17
17
|
If enabled, the response will include model host usage tracking. This may increase latency for some model hosts.
|
18
18
|
"""
|
19
19
|
|
20
|
+
cost: typing.Optional[bool] = pydantic.Field(default=None)
|
21
|
+
"""
|
22
|
+
If enabled, the response will include model host cost tracking. This may increase latency for some model hosts.
|
23
|
+
"""
|
24
|
+
|
20
25
|
finish_reason: typing.Optional[bool] = pydantic.Field(default=None)
|
21
26
|
"""
|
22
27
|
If enabled, the response will include the reason provided by the model for why the execution finished.
|
@@ -4,6 +4,7 @@ from ..core.pydantic_utilities import UniversalBaseModel
|
|
4
4
|
import typing
|
5
5
|
from .finish_reason_enum import FinishReasonEnum
|
6
6
|
from .ml_model_usage import MlModelUsage
|
7
|
+
from .price import Price
|
7
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
8
9
|
import pydantic
|
9
10
|
|
@@ -19,6 +20,7 @@ class PromptExecutionMeta(UniversalBaseModel):
|
|
19
20
|
prompt_version_id: typing.Optional[str] = None
|
20
21
|
finish_reason: typing.Optional[FinishReasonEnum] = None
|
21
22
|
usage: typing.Optional[MlModelUsage] = None
|
23
|
+
cost: typing.Optional[Price] = None
|
22
24
|
|
23
25
|
if IS_PYDANTIC_V2:
|
24
26
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
@@ -0,0 +1,25 @@
|
|
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 ..core.pydantic_utilities import IS_PYDANTIC_V2
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class TestSuiteRunMetricJsonOutput(UniversalBaseModel):
|
10
|
+
"""
|
11
|
+
Output for a test suite run metric that is of type NUMBER
|
12
|
+
"""
|
13
|
+
|
14
|
+
value: typing.Optional[typing.Any] = None
|
15
|
+
type: typing.Literal["JSON"] = "JSON"
|
16
|
+
name: str
|
17
|
+
|
18
|
+
if IS_PYDANTIC_V2:
|
19
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
20
|
+
else:
|
21
|
+
|
22
|
+
class Config:
|
23
|
+
frozen = True
|
24
|
+
smart_union = True
|
25
|
+
extra = pydantic.Extra.allow
|
@@ -3,8 +3,12 @@
|
|
3
3
|
import typing
|
4
4
|
from .test_suite_run_metric_string_output import TestSuiteRunMetricStringOutput
|
5
5
|
from .test_suite_run_metric_number_output import TestSuiteRunMetricNumberOutput
|
6
|
+
from .test_suite_run_metric_json_output import TestSuiteRunMetricJsonOutput
|
6
7
|
from .test_suite_run_metric_error_output import TestSuiteRunMetricErrorOutput
|
7
8
|
|
8
9
|
TestSuiteRunMetricOutput = typing.Union[
|
9
|
-
TestSuiteRunMetricStringOutput,
|
10
|
+
TestSuiteRunMetricStringOutput,
|
11
|
+
TestSuiteRunMetricNumberOutput,
|
12
|
+
TestSuiteRunMetricJsonOutput,
|
13
|
+
TestSuiteRunMetricErrorOutput,
|
10
14
|
]
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
2
|
-
vellum/client.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=ZjILSZ1gKX9YUZjjOzr0wngRMV7aYaCvuCXgoxt7n2o,30148
|
2
|
+
vellum/client.py,sha256=FzaKpt5tvigJpdckmhhtIZemZnt_qM-50WfXENgyA74,101094
|
3
3
|
vellum/core/__init__.py,sha256=FzSvKbXjuM18Hdk3iGK-jsGY_DfouyRS659thZV5c1Y,1394
|
4
4
|
vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
5
|
-
vellum/core/client_wrapper.py,sha256=
|
5
|
+
vellum/core/client_wrapper.py,sha256=ufeiagHJMhTy-ivorHYOOgDbHND76t2jMmfgX9VcJN8,1897
|
6
6
|
vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
7
7
|
vellum/core/file.py,sha256=vliNmlB7PbDfi4EKiVPNq5QaGXJ4zlDBGupv7Qciy7g,1520
|
8
8
|
vellum/core/http_client.py,sha256=rZSidd9LazCjduvdBhZ7GDs4iGfn-OAfRGsDXB1z8f4,18882
|
@@ -66,9 +66,9 @@ vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw
|
|
66
66
|
vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
|
67
67
|
vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
68
68
|
vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
|
69
|
-
vellum/types/__init__.py,sha256=
|
69
|
+
vellum/types/__init__.py,sha256=_v6i_DtXNY5yiWC8FnzvVP2T2hpd_G9m2Rgsupfzj3c,46048
|
70
70
|
vellum/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
|
71
|
-
vellum/types/ad_hoc_expand_meta_request.py,sha256=
|
71
|
+
vellum/types/ad_hoc_expand_meta_request.py,sha256=hS8PC3hC--OKvRKi2ZFj_RJPQ1bxo2GXno8qJq1kk28,1338
|
72
72
|
vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
|
73
73
|
vellum/types/ad_hoc_initiated_prompt_execution_meta.py,sha256=gOHP4kmnVCJJkTpfRPOgkFB70mhz5ySg_c2qRffDGWQ,785
|
74
74
|
vellum/types/ad_hoc_rejected_prompt_execution_meta.py,sha256=Yo3TNjemHUfxU9R3EMzAGh-ey9pSClpEX7uGgGZiXDg,849
|
@@ -275,13 +275,14 @@ vellum/types/paginated_test_suite_test_case_list.py,sha256=SANqBECiz9yu6_JxOcNdk
|
|
275
275
|
vellum/types/pdf_search_result_meta_source.py,sha256=EMVhqdN1bwE6Ujdx4VhlmKQtJvitN-57kY8oZPxh9dI,1126
|
276
276
|
vellum/types/pdf_search_result_meta_source_request.py,sha256=nUhaD2Kw1paGC6O_ICVNu3R0e1SVgTshRTkGNgmcjXo,1133
|
277
277
|
vellum/types/plain_text_prompt_block_request.py,sha256=ljdh2OD-xUOAhEF8raHc6WnQDnWdtEY8aSNsEiuC5nY,971
|
278
|
+
vellum/types/price.py,sha256=ewzXDBVLaleuXMVQ-gQ3G1Nl5J2OWOVEMEFfnQIpiTk,610
|
278
279
|
vellum/types/processing_failure_reason_enum.py,sha256=R_KIW7TcQejhc-vLhtNf9SdkYADgoZCn4ch4_RRIvsI,195
|
279
280
|
vellum/types/processing_state_enum.py,sha256=lIEunnCpgYQExm2bGyTb12KyjQ3O7XOx636aWXb_Iwo,190
|
280
281
|
vellum/types/prompt_block_request.py,sha256=A5I5J6bDjmauk5L4CexRXk_VMrGDZRApYZyevMHBPpI,740
|
281
282
|
vellum/types/prompt_block_state.py,sha256=BRAzTYARoSU36IVZGWMeeqhl5fgFMXCyhJ8rCbfB-f0,163
|
282
|
-
vellum/types/prompt_deployment_expand_meta_request.py,sha256=
|
283
|
+
vellum/types/prompt_deployment_expand_meta_request.py,sha256=agsiAaHB6lDoZPlnfJ2nmhB4Ud4EiJJTX05YmduyCPo,1910
|
283
284
|
vellum/types/prompt_deployment_input_request.py,sha256=KrT4-Ew2VvTWXEkYQz2oyHn5EDOgrMW7FzRFaPH3ARg,353
|
284
|
-
vellum/types/prompt_execution_meta.py,sha256=
|
285
|
+
vellum/types/prompt_execution_meta.py,sha256=3hhMZgdAR5mKfnh2e_eVN3oKfT0E9w26khVPrpjn7jk,1141
|
285
286
|
vellum/types/prompt_node_execution_meta.py,sha256=k8zPFTsXl0iuHi-CNXEQcWP5Adbr8xDv1G1EWZ4KJNM,779
|
286
287
|
vellum/types/prompt_node_result.py,sha256=3jewO-nPodoXTq_5RxgwhKfDZrvoPjRZ_vUXLeqiuHY,749
|
287
288
|
vellum/types/prompt_node_result_data.py,sha256=fNOxBfK3ablDBxkUWVVstJMYaGdHGgu27WxP87E6UQ4,872
|
@@ -399,8 +400,9 @@ vellum/types/test_suite_run_external_exec_config_data.py,sha256=tCbioorIkNJYmvaa
|
|
399
400
|
vellum/types/test_suite_run_external_exec_config_data_request.py,sha256=KuNf7pnIVkcvJYFzyDs4TCBU5lWeIweAe9czD3jREzw,847
|
400
401
|
vellum/types/test_suite_run_external_exec_config_request.py,sha256=CwWiz7I1Yx4ETIRW_tr5ZwAnTGKyLlzuefqAExK4_LQ,1114
|
401
402
|
vellum/types/test_suite_run_metric_error_output.py,sha256=trW1KTH4SJafRfDFRyBS7TpzcT88tXkpWEoysij6IXQ,755
|
403
|
+
vellum/types/test_suite_run_metric_json_output.py,sha256=DI3mJR5kpi8Hm2n6tx6buySHPwTkkbBbr8Lkk4k6HH4,738
|
402
404
|
vellum/types/test_suite_run_metric_number_output.py,sha256=8pddeSds6Rrn0xGqyvgPsG1hr1tu6eOiQAp8kkM_aBk,739
|
403
|
-
vellum/types/test_suite_run_metric_output.py,sha256=
|
405
|
+
vellum/types/test_suite_run_metric_output.py,sha256=qxEJ6Ii4XOhJpM3tgn6ctRnldysduEIe8tQFnWBEOvQ,578
|
404
406
|
vellum/types/test_suite_run_metric_string_output.py,sha256=YXerGfpvJdBtKrzgutSqEfG-N6cZoeOL59qZ5k6DwQA,737
|
405
407
|
vellum/types/test_suite_run_read.py,sha256=oBA5_N6tUgc9wTM2I06d_1F7B5ZQcndPFumyZH4J1PM,1222
|
406
408
|
vellum/types/test_suite_run_state.py,sha256=E4f_AfzXBnxhObLLZ12dBzdoYlRm-gaTqkzrZQ_KfCo,197
|
@@ -428,6 +430,7 @@ vellum/types/token_overlapping_window_chunker_config.py,sha256=_8vR9AiZQmb5OA3Oo
|
|
428
430
|
vellum/types/token_overlapping_window_chunker_config_request.py,sha256=O58w5om6EsCgZeqM7n3KSzwo1PqINyHWln46EFW4Inc,738
|
429
431
|
vellum/types/token_overlapping_window_chunking.py,sha256=TghiPKWZg3Eg_UzGI9VmjQgVPZFABrnhfsz4iPLEem8,889
|
430
432
|
vellum/types/token_overlapping_window_chunking_request.py,sha256=IjCs9UDrwBT6tnffdInd3278Lg2L46jXgn0V-sEBwb0,918
|
433
|
+
vellum/types/unit_enum.py,sha256=BKWRVp2WfHtGK4D6TsolhNJHGHfExzrRHkFn8H8QkwQ,113
|
431
434
|
vellum/types/upload_document_response.py,sha256=6_5Cm4yBPq5nD-rEql6GsmrAtSVVtNRczOL5YwsBVMI,649
|
432
435
|
vellum/types/upsert_test_suite_test_case_request.py,sha256=nBL0DR9SksQCLA9MhmwHNEOsmdY7bklXsrtge-ywANI,1812
|
433
436
|
vellum/types/variable_prompt_block_request.py,sha256=XYiA3R_jaMZ2Mq37Lbh7CfBqqj93Yv8ZMVYGheodBdY,990
|
@@ -481,7 +484,7 @@ vellum/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7Zv
|
|
481
484
|
vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
|
482
485
|
vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
|
483
486
|
vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
|
484
|
-
vellum_ai-0.8.
|
485
|
-
vellum_ai-0.8.
|
486
|
-
vellum_ai-0.8.
|
487
|
-
vellum_ai-0.8.
|
487
|
+
vellum_ai-0.8.9.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
488
|
+
vellum_ai-0.8.9.dist-info/METADATA,sha256=ApCmRTG3GYNsYwkGWltiBbBqNx03p4HsJzr9ikoVJtA,4394
|
489
|
+
vellum_ai-0.8.9.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
490
|
+
vellum_ai-0.8.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|