vellum-ai 0.6.5__py3-none-any.whl → 0.6.7__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- vellum/__init__.py +32 -4
- vellum/core/client_wrapper.py +1 -1
- vellum/resources/test_suites/client.py +20 -8
- vellum/types/__init__.py +30 -4
- vellum/types/{bulk_create_test_suite_test_case_data_request.py → create_test_suite_test_case_request.py} +11 -2
- vellum/types/deployment_provider_payload_response.py +2 -1
- vellum/types/deployment_provider_payload_response_payload.py +5 -0
- vellum/types/execution_array_vellum_value.py +6 -2
- vellum/types/execution_chat_history_vellum_value.py +4 -0
- vellum/types/execution_error_vellum_value.py +4 -0
- vellum/types/execution_function_call_vellum_value.py +4 -0
- vellum/types/execution_json_vellum_value.py +4 -0
- vellum/types/execution_number_vellum_value.py +4 -0
- vellum/types/execution_search_results_vellum_value.py +4 -0
- vellum/types/execution_string_vellum_value.py +4 -0
- vellum/types/map_enum.py +5 -0
- vellum/types/map_node_result.py +30 -0
- vellum/types/map_node_result_data.py +25 -0
- vellum/types/pdf_enum.py +5 -0
- vellum/types/pdf_search_result_meta_source.py +37 -0
- vellum/types/pdf_search_result_meta_source_request.py +37 -0
- vellum/types/{bulk_replace_test_suite_test_case_data_request.py → replace_test_suite_test_case_request.py} +13 -4
- vellum/types/search_result.py +6 -0
- vellum/types/search_result_meta.py +26 -0
- vellum/types/search_result_meta_request.py +26 -0
- vellum/types/search_result_meta_source.py +20 -0
- vellum/types/search_result_meta_source_request.py +20 -0
- vellum/types/search_result_request.py +6 -0
- vellum/types/test_suite_test_case.py +1 -0
- vellum/types/test_suite_test_case_create_bulk_operation_request.py +2 -2
- vellum/types/test_suite_test_case_replace_bulk_operation_request.py +2 -2
- vellum/types/workflow_node_result_data.py +12 -0
- {vellum_ai-0.6.5.dist-info → vellum_ai-0.6.7.dist-info}/METADATA +1 -1
- {vellum_ai-0.6.5.dist-info → vellum_ai-0.6.7.dist-info}/RECORD +36 -25
- {vellum_ai-0.6.5.dist-info → vellum_ai-0.6.7.dist-info}/LICENSE +0 -0
- {vellum_ai-0.6.5.dist-info → vellum_ai-0.6.7.dist-info}/WHEEL +0 -0
vellum/__init__.py
CHANGED
@@ -35,8 +35,6 @@ from .types import (
|
|
35
35
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request,
|
36
36
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1,
|
37
37
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request,
|
38
|
-
BulkCreateTestSuiteTestCaseDataRequest,
|
39
|
-
BulkReplaceTestSuiteTestCaseDataRequest,
|
40
38
|
ChatHistoryEnum,
|
41
39
|
ChatHistoryInputRequest,
|
42
40
|
ChatMessage,
|
@@ -74,10 +72,12 @@ from .types import (
|
|
74
72
|
ConditionalNodeResult,
|
75
73
|
ConditionalNodeResultData,
|
76
74
|
CreateEnum,
|
75
|
+
CreateTestSuiteTestCaseRequest,
|
77
76
|
CreatedEnum,
|
78
77
|
DeleteEnum,
|
79
78
|
DeletedEnum,
|
80
79
|
DeploymentProviderPayloadResponse,
|
80
|
+
DeploymentProviderPayloadResponsePayload,
|
81
81
|
DeploymentRead,
|
82
82
|
DeploymentReleaseTagDeploymentHistoryItem,
|
83
83
|
DeploymentReleaseTagRead,
|
@@ -199,6 +199,9 @@ from .types import (
|
|
199
199
|
JsonVellumValue,
|
200
200
|
LogicalOperator,
|
201
201
|
LogprobsEnum,
|
202
|
+
MapEnum,
|
203
|
+
MapNodeResult,
|
204
|
+
MapNodeResultData,
|
202
205
|
MergeEnum,
|
203
206
|
MergeNodeResult,
|
204
207
|
MetadataFilterConfigRequest,
|
@@ -295,6 +298,9 @@ from .types import (
|
|
295
298
|
PaginatedSlimWorkflowDeploymentList,
|
296
299
|
PaginatedTestSuiteRunExecutionList,
|
297
300
|
PaginatedTestSuiteTestCaseList,
|
301
|
+
PdfEnum,
|
302
|
+
PdfSearchResultMetaSource,
|
303
|
+
PdfSearchResultMetaSourceRequest,
|
298
304
|
ProcessingFailureReasonEnum,
|
299
305
|
ProcessingStateEnum,
|
300
306
|
PromptDeploymentExpandMetaRequestRequest,
|
@@ -324,6 +330,7 @@ from .types import (
|
|
324
330
|
RejectedWorkflowNodeResultEvent,
|
325
331
|
ReleaseTagSource,
|
326
332
|
ReplaceEnum,
|
333
|
+
ReplaceTestSuiteTestCaseRequest,
|
327
334
|
ReplacedEnum,
|
328
335
|
SandboxScenario,
|
329
336
|
ScenarioInput,
|
@@ -341,6 +348,12 @@ from .types import (
|
|
341
348
|
SearchResultDocument,
|
342
349
|
SearchResultDocumentRequest,
|
343
350
|
SearchResultMergingRequest,
|
351
|
+
SearchResultMeta,
|
352
|
+
SearchResultMetaRequest,
|
353
|
+
SearchResultMetaSource,
|
354
|
+
SearchResultMetaSourceRequest,
|
355
|
+
SearchResultMetaSourceRequest_Pdf,
|
356
|
+
SearchResultMetaSource_Pdf,
|
344
357
|
SearchResultRequest,
|
345
358
|
SearchResultsEnum,
|
346
359
|
SearchWeightsRequest,
|
@@ -531,6 +544,7 @@ from .types import (
|
|
531
544
|
WorkflowNodeResultData_Api,
|
532
545
|
WorkflowNodeResultData_CodeExecution,
|
533
546
|
WorkflowNodeResultData_Conditional,
|
547
|
+
WorkflowNodeResultData_Map,
|
534
548
|
WorkflowNodeResultData_Merge,
|
535
549
|
WorkflowNodeResultData_Metric,
|
536
550
|
WorkflowNodeResultData_Prompt,
|
@@ -650,8 +664,6 @@ __all__ = [
|
|
650
664
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request",
|
651
665
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1",
|
652
666
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request",
|
653
|
-
"BulkCreateTestSuiteTestCaseDataRequest",
|
654
|
-
"BulkReplaceTestSuiteTestCaseDataRequest",
|
655
667
|
"ChatHistoryEnum",
|
656
668
|
"ChatHistoryInputRequest",
|
657
669
|
"ChatMessage",
|
@@ -689,10 +701,12 @@ __all__ = [
|
|
689
701
|
"ConditionalNodeResult",
|
690
702
|
"ConditionalNodeResultData",
|
691
703
|
"CreateEnum",
|
704
|
+
"CreateTestSuiteTestCaseRequest",
|
692
705
|
"CreatedEnum",
|
693
706
|
"DeleteEnum",
|
694
707
|
"DeletedEnum",
|
695
708
|
"DeploymentProviderPayloadResponse",
|
709
|
+
"DeploymentProviderPayloadResponsePayload",
|
696
710
|
"DeploymentRead",
|
697
711
|
"DeploymentReleaseTagDeploymentHistoryItem",
|
698
712
|
"DeploymentReleaseTagRead",
|
@@ -818,6 +832,9 @@ __all__ = [
|
|
818
832
|
"JsonVellumValue",
|
819
833
|
"LogicalOperator",
|
820
834
|
"LogprobsEnum",
|
835
|
+
"MapEnum",
|
836
|
+
"MapNodeResult",
|
837
|
+
"MapNodeResultData",
|
821
838
|
"MergeEnum",
|
822
839
|
"MergeNodeResult",
|
823
840
|
"MetadataFilterConfigRequest",
|
@@ -915,6 +932,9 @@ __all__ = [
|
|
915
932
|
"PaginatedSlimWorkflowDeploymentList",
|
916
933
|
"PaginatedTestSuiteRunExecutionList",
|
917
934
|
"PaginatedTestSuiteTestCaseList",
|
935
|
+
"PdfEnum",
|
936
|
+
"PdfSearchResultMetaSource",
|
937
|
+
"PdfSearchResultMetaSourceRequest",
|
918
938
|
"ProcessingFailureReasonEnum",
|
919
939
|
"ProcessingStateEnum",
|
920
940
|
"PromptDeploymentExpandMetaRequestRequest",
|
@@ -944,6 +964,7 @@ __all__ = [
|
|
944
964
|
"RejectedWorkflowNodeResultEvent",
|
945
965
|
"ReleaseTagSource",
|
946
966
|
"ReplaceEnum",
|
967
|
+
"ReplaceTestSuiteTestCaseRequest",
|
947
968
|
"ReplacedEnum",
|
948
969
|
"SandboxScenario",
|
949
970
|
"ScenarioInput",
|
@@ -961,6 +982,12 @@ __all__ = [
|
|
961
982
|
"SearchResultDocument",
|
962
983
|
"SearchResultDocumentRequest",
|
963
984
|
"SearchResultMergingRequest",
|
985
|
+
"SearchResultMeta",
|
986
|
+
"SearchResultMetaRequest",
|
987
|
+
"SearchResultMetaSource",
|
988
|
+
"SearchResultMetaSourceRequest",
|
989
|
+
"SearchResultMetaSourceRequest_Pdf",
|
990
|
+
"SearchResultMetaSource_Pdf",
|
964
991
|
"SearchResultRequest",
|
965
992
|
"SearchResultsEnum",
|
966
993
|
"SearchWeightsRequest",
|
@@ -1153,6 +1180,7 @@ __all__ = [
|
|
1153
1180
|
"WorkflowNodeResultData_Api",
|
1154
1181
|
"WorkflowNodeResultData_CodeExecution",
|
1155
1182
|
"WorkflowNodeResultData_Conditional",
|
1183
|
+
"WorkflowNodeResultData_Map",
|
1156
1184
|
"WorkflowNodeResultData_Merge",
|
1157
1185
|
"WorkflowNodeResultData_Metric",
|
1158
1186
|
"WorkflowNodeResultData_Prompt",
|
vellum/core/client_wrapper.py
CHANGED
@@ -100,6 +100,7 @@ class TestSuitesClient:
|
|
100
100
|
id: str,
|
101
101
|
*,
|
102
102
|
upsert_test_suite_test_case_request_id: typing.Optional[str] = OMIT,
|
103
|
+
external_id: typing.Optional[str] = OMIT,
|
103
104
|
label: typing.Optional[str] = OMIT,
|
104
105
|
input_values: typing.Sequence[NamedTestCaseVariableValueRequest],
|
105
106
|
evaluation_values: typing.Sequence[NamedTestCaseVariableValueRequest],
|
@@ -117,9 +118,11 @@ class TestSuitesClient:
|
|
117
118
|
Parameters:
|
118
119
|
- id: str. A UUID string identifying this test suite.
|
119
120
|
|
120
|
-
- upsert_test_suite_test_case_request_id: typing.Optional[str]. The ID of
|
121
|
+
- upsert_test_suite_test_case_request_id: typing.Optional[str]. The Vellum-generated ID of an existing Test Case whose data you'd like to replace. If specified and no Test Case exists with this ID, a 404 will be returned.
|
121
122
|
|
122
|
-
-
|
123
|
+
- external_id: typing.Optional[str]. An ID external to Vellum that uniquely identifies the Test Case that you'd like to create/update. If there's a match on a Test Case that was previously created with the same external_id, it will be updated. Otherwise, a new Test Case will be created with this value as its external_id. If no external_id is specified, then a new Test Case will always be created.
|
124
|
+
|
125
|
+
- label: typing.Optional[str]. A human-readable label used to convey the intention of this Test Case
|
123
126
|
|
124
127
|
- input_values: typing.Sequence[NamedTestCaseVariableValueRequest]. Values for each of the Test Case's input variables
|
125
128
|
|
@@ -141,6 +144,8 @@ class TestSuitesClient:
|
|
141
144
|
_request: typing.Dict[str, typing.Any] = {"input_values": input_values, "evaluation_values": evaluation_values}
|
142
145
|
if upsert_test_suite_test_case_request_id is not OMIT:
|
143
146
|
_request["id"] = upsert_test_suite_test_case_request_id
|
147
|
+
if external_id is not OMIT:
|
148
|
+
_request["external_id"] = external_id
|
144
149
|
if label is not OMIT:
|
145
150
|
_request["label"] = label
|
146
151
|
_response = self._client_wrapper.httpx_client.request(
|
@@ -198,7 +203,7 @@ class TestSuitesClient:
|
|
198
203
|
- request_options: typing.Optional[RequestOptions]. Request-specific configuration.
|
199
204
|
---
|
200
205
|
from vellum import (
|
201
|
-
|
206
|
+
CreateTestSuiteTestCaseRequest,
|
202
207
|
NamedTestCaseVariableValueRequest_String,
|
203
208
|
TestSuiteTestCaseBulkOperationRequest_Create,
|
204
209
|
)
|
@@ -212,10 +217,11 @@ class TestSuitesClient:
|
|
212
217
|
request=[
|
213
218
|
TestSuiteTestCaseBulkOperationRequest_Create(
|
214
219
|
id="string",
|
215
|
-
data=
|
220
|
+
data=CreateTestSuiteTestCaseRequest(
|
216
221
|
label="string",
|
217
222
|
input_values=[NamedTestCaseVariableValueRequest_String()],
|
218
223
|
evaluation_values=[NamedTestCaseVariableValueRequest_String()],
|
224
|
+
external_id="string",
|
219
225
|
),
|
220
226
|
)
|
221
227
|
],
|
@@ -397,6 +403,7 @@ class AsyncTestSuitesClient:
|
|
397
403
|
id: str,
|
398
404
|
*,
|
399
405
|
upsert_test_suite_test_case_request_id: typing.Optional[str] = OMIT,
|
406
|
+
external_id: typing.Optional[str] = OMIT,
|
400
407
|
label: typing.Optional[str] = OMIT,
|
401
408
|
input_values: typing.Sequence[NamedTestCaseVariableValueRequest],
|
402
409
|
evaluation_values: typing.Sequence[NamedTestCaseVariableValueRequest],
|
@@ -414,9 +421,11 @@ class AsyncTestSuitesClient:
|
|
414
421
|
Parameters:
|
415
422
|
- id: str. A UUID string identifying this test suite.
|
416
423
|
|
417
|
-
- upsert_test_suite_test_case_request_id: typing.Optional[str]. The ID of
|
424
|
+
- upsert_test_suite_test_case_request_id: typing.Optional[str]. The Vellum-generated ID of an existing Test Case whose data you'd like to replace. If specified and no Test Case exists with this ID, a 404 will be returned.
|
425
|
+
|
426
|
+
- external_id: typing.Optional[str]. An ID external to Vellum that uniquely identifies the Test Case that you'd like to create/update. If there's a match on a Test Case that was previously created with the same external_id, it will be updated. Otherwise, a new Test Case will be created with this value as its external_id. If no external_id is specified, then a new Test Case will always be created.
|
418
427
|
|
419
|
-
- label: typing.Optional[str].
|
428
|
+
- label: typing.Optional[str]. A human-readable label used to convey the intention of this Test Case
|
420
429
|
|
421
430
|
- input_values: typing.Sequence[NamedTestCaseVariableValueRequest]. Values for each of the Test Case's input variables
|
422
431
|
|
@@ -438,6 +447,8 @@ class AsyncTestSuitesClient:
|
|
438
447
|
_request: typing.Dict[str, typing.Any] = {"input_values": input_values, "evaluation_values": evaluation_values}
|
439
448
|
if upsert_test_suite_test_case_request_id is not OMIT:
|
440
449
|
_request["id"] = upsert_test_suite_test_case_request_id
|
450
|
+
if external_id is not OMIT:
|
451
|
+
_request["external_id"] = external_id
|
441
452
|
if label is not OMIT:
|
442
453
|
_request["label"] = label
|
443
454
|
_response = await self._client_wrapper.httpx_client.request(
|
@@ -495,7 +506,7 @@ class AsyncTestSuitesClient:
|
|
495
506
|
- request_options: typing.Optional[RequestOptions]. Request-specific configuration.
|
496
507
|
---
|
497
508
|
from vellum import (
|
498
|
-
|
509
|
+
CreateTestSuiteTestCaseRequest,
|
499
510
|
NamedTestCaseVariableValueRequest_String,
|
500
511
|
TestSuiteTestCaseBulkOperationRequest_Create,
|
501
512
|
)
|
@@ -509,10 +520,11 @@ class AsyncTestSuitesClient:
|
|
509
520
|
request=[
|
510
521
|
TestSuiteTestCaseBulkOperationRequest_Create(
|
511
522
|
id="string",
|
512
|
-
data=
|
523
|
+
data=CreateTestSuiteTestCaseRequest(
|
513
524
|
label="string",
|
514
525
|
input_values=[NamedTestCaseVariableValueRequest_String()],
|
515
526
|
evaluation_values=[NamedTestCaseVariableValueRequest_String()],
|
527
|
+
external_id="string",
|
516
528
|
),
|
517
529
|
)
|
518
530
|
],
|
vellum/types/__init__.py
CHANGED
@@ -50,8 +50,6 @@ from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1 import
|
|
50
50
|
from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request import (
|
51
51
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request,
|
52
52
|
)
|
53
|
-
from .bulk_create_test_suite_test_case_data_request import BulkCreateTestSuiteTestCaseDataRequest
|
54
|
-
from .bulk_replace_test_suite_test_case_data_request import BulkReplaceTestSuiteTestCaseDataRequest
|
55
53
|
from .chat_history_enum import ChatHistoryEnum
|
56
54
|
from .chat_history_input_request import ChatHistoryInputRequest
|
57
55
|
from .chat_message import ChatMessage
|
@@ -95,10 +93,12 @@ from .code_execution_node_string_result import CodeExecutionNodeStringResult
|
|
95
93
|
from .conditional_node_result import ConditionalNodeResult
|
96
94
|
from .conditional_node_result_data import ConditionalNodeResultData
|
97
95
|
from .create_enum import CreateEnum
|
96
|
+
from .create_test_suite_test_case_request import CreateTestSuiteTestCaseRequest
|
98
97
|
from .created_enum import CreatedEnum
|
99
98
|
from .delete_enum import DeleteEnum
|
100
99
|
from .deleted_enum import DeletedEnum
|
101
100
|
from .deployment_provider_payload_response import DeploymentProviderPayloadResponse
|
101
|
+
from .deployment_provider_payload_response_payload import DeploymentProviderPayloadResponsePayload
|
102
102
|
from .deployment_read import DeploymentRead
|
103
103
|
from .deployment_release_tag_deployment_history_item import DeploymentReleaseTagDeploymentHistoryItem
|
104
104
|
from .deployment_release_tag_read import DeploymentReleaseTagRead
|
@@ -236,6 +236,9 @@ from .json_variable_value import JsonVariableValue
|
|
236
236
|
from .json_vellum_value import JsonVellumValue
|
237
237
|
from .logical_operator import LogicalOperator
|
238
238
|
from .logprobs_enum import LogprobsEnum
|
239
|
+
from .map_enum import MapEnum
|
240
|
+
from .map_node_result import MapNodeResult
|
241
|
+
from .map_node_result_data import MapNodeResultData
|
239
242
|
from .merge_enum import MergeEnum
|
240
243
|
from .merge_node_result import MergeNodeResult
|
241
244
|
from .metadata_filter_config_request import MetadataFilterConfigRequest
|
@@ -342,6 +345,9 @@ from .paginated_slim_document_list import PaginatedSlimDocumentList
|
|
342
345
|
from .paginated_slim_workflow_deployment_list import PaginatedSlimWorkflowDeploymentList
|
343
346
|
from .paginated_test_suite_run_execution_list import PaginatedTestSuiteRunExecutionList
|
344
347
|
from .paginated_test_suite_test_case_list import PaginatedTestSuiteTestCaseList
|
348
|
+
from .pdf_enum import PdfEnum
|
349
|
+
from .pdf_search_result_meta_source import PdfSearchResultMetaSource
|
350
|
+
from .pdf_search_result_meta_source_request import PdfSearchResultMetaSourceRequest
|
345
351
|
from .processing_failure_reason_enum import ProcessingFailureReasonEnum
|
346
352
|
from .processing_state_enum import ProcessingStateEnum
|
347
353
|
from .prompt_deployment_expand_meta_request_request import PromptDeploymentExpandMetaRequestRequest
|
@@ -375,6 +381,7 @@ from .rejected_prompt_execution_meta import RejectedPromptExecutionMeta
|
|
375
381
|
from .rejected_workflow_node_result_event import RejectedWorkflowNodeResultEvent
|
376
382
|
from .release_tag_source import ReleaseTagSource
|
377
383
|
from .replace_enum import ReplaceEnum
|
384
|
+
from .replace_test_suite_test_case_request import ReplaceTestSuiteTestCaseRequest
|
378
385
|
from .replaced_enum import ReplacedEnum
|
379
386
|
from .sandbox_scenario import SandboxScenario
|
380
387
|
from .scenario_input import ScenarioInput, ScenarioInput_ChatHistory, ScenarioInput_String
|
@@ -390,6 +397,10 @@ from .search_result import SearchResult
|
|
390
397
|
from .search_result_document import SearchResultDocument
|
391
398
|
from .search_result_document_request import SearchResultDocumentRequest
|
392
399
|
from .search_result_merging_request import SearchResultMergingRequest
|
400
|
+
from .search_result_meta import SearchResultMeta
|
401
|
+
from .search_result_meta_request import SearchResultMetaRequest
|
402
|
+
from .search_result_meta_source import SearchResultMetaSource, SearchResultMetaSource_Pdf
|
403
|
+
from .search_result_meta_source_request import SearchResultMetaSourceRequest, SearchResultMetaSourceRequest_Pdf
|
393
404
|
from .search_result_request import SearchResultRequest
|
394
405
|
from .search_results_enum import SearchResultsEnum
|
395
406
|
from .search_weights_request import SearchWeightsRequest
|
@@ -607,6 +618,7 @@ from .workflow_node_result_data import (
|
|
607
618
|
WorkflowNodeResultData_Api,
|
608
619
|
WorkflowNodeResultData_CodeExecution,
|
609
620
|
WorkflowNodeResultData_Conditional,
|
621
|
+
WorkflowNodeResultData_Map,
|
610
622
|
WorkflowNodeResultData_Merge,
|
611
623
|
WorkflowNodeResultData_Metric,
|
612
624
|
WorkflowNodeResultData_Prompt,
|
@@ -714,8 +726,6 @@ __all__ = [
|
|
714
726
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request",
|
715
727
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1",
|
716
728
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request",
|
717
|
-
"BulkCreateTestSuiteTestCaseDataRequest",
|
718
|
-
"BulkReplaceTestSuiteTestCaseDataRequest",
|
719
729
|
"ChatHistoryEnum",
|
720
730
|
"ChatHistoryInputRequest",
|
721
731
|
"ChatMessage",
|
@@ -753,10 +763,12 @@ __all__ = [
|
|
753
763
|
"ConditionalNodeResult",
|
754
764
|
"ConditionalNodeResultData",
|
755
765
|
"CreateEnum",
|
766
|
+
"CreateTestSuiteTestCaseRequest",
|
756
767
|
"CreatedEnum",
|
757
768
|
"DeleteEnum",
|
758
769
|
"DeletedEnum",
|
759
770
|
"DeploymentProviderPayloadResponse",
|
771
|
+
"DeploymentProviderPayloadResponsePayload",
|
760
772
|
"DeploymentRead",
|
761
773
|
"DeploymentReleaseTagDeploymentHistoryItem",
|
762
774
|
"DeploymentReleaseTagRead",
|
@@ -878,6 +890,9 @@ __all__ = [
|
|
878
890
|
"JsonVellumValue",
|
879
891
|
"LogicalOperator",
|
880
892
|
"LogprobsEnum",
|
893
|
+
"MapEnum",
|
894
|
+
"MapNodeResult",
|
895
|
+
"MapNodeResultData",
|
881
896
|
"MergeEnum",
|
882
897
|
"MergeNodeResult",
|
883
898
|
"MetadataFilterConfigRequest",
|
@@ -974,6 +989,9 @@ __all__ = [
|
|
974
989
|
"PaginatedSlimWorkflowDeploymentList",
|
975
990
|
"PaginatedTestSuiteRunExecutionList",
|
976
991
|
"PaginatedTestSuiteTestCaseList",
|
992
|
+
"PdfEnum",
|
993
|
+
"PdfSearchResultMetaSource",
|
994
|
+
"PdfSearchResultMetaSourceRequest",
|
977
995
|
"ProcessingFailureReasonEnum",
|
978
996
|
"ProcessingStateEnum",
|
979
997
|
"PromptDeploymentExpandMetaRequestRequest",
|
@@ -1003,6 +1021,7 @@ __all__ = [
|
|
1003
1021
|
"RejectedWorkflowNodeResultEvent",
|
1004
1022
|
"ReleaseTagSource",
|
1005
1023
|
"ReplaceEnum",
|
1024
|
+
"ReplaceTestSuiteTestCaseRequest",
|
1006
1025
|
"ReplacedEnum",
|
1007
1026
|
"SandboxScenario",
|
1008
1027
|
"ScenarioInput",
|
@@ -1020,6 +1039,12 @@ __all__ = [
|
|
1020
1039
|
"SearchResultDocument",
|
1021
1040
|
"SearchResultDocumentRequest",
|
1022
1041
|
"SearchResultMergingRequest",
|
1042
|
+
"SearchResultMeta",
|
1043
|
+
"SearchResultMetaRequest",
|
1044
|
+
"SearchResultMetaSource",
|
1045
|
+
"SearchResultMetaSourceRequest",
|
1046
|
+
"SearchResultMetaSourceRequest_Pdf",
|
1047
|
+
"SearchResultMetaSource_Pdf",
|
1023
1048
|
"SearchResultRequest",
|
1024
1049
|
"SearchResultsEnum",
|
1025
1050
|
"SearchWeightsRequest",
|
@@ -1210,6 +1235,7 @@ __all__ = [
|
|
1210
1235
|
"WorkflowNodeResultData_Api",
|
1211
1236
|
"WorkflowNodeResultData_CodeExecution",
|
1212
1237
|
"WorkflowNodeResultData_Conditional",
|
1238
|
+
"WorkflowNodeResultData_Map",
|
1213
1239
|
"WorkflowNodeResultData_Merge",
|
1214
1240
|
"WorkflowNodeResultData_Metric",
|
1215
1241
|
"WorkflowNodeResultData_Prompt",
|
@@ -8,12 +8,16 @@ from ..core.pydantic_utilities import pydantic_v1
|
|
8
8
|
from .named_test_case_variable_value_request import NamedTestCaseVariableValueRequest
|
9
9
|
|
10
10
|
|
11
|
-
class
|
11
|
+
class CreateTestSuiteTestCaseRequest(pydantic_v1.BaseModel):
|
12
12
|
"""
|
13
13
|
Information about the Test Case to create
|
14
14
|
"""
|
15
15
|
|
16
|
-
label: typing.Optional[str] = None
|
16
|
+
label: typing.Optional[str] = pydantic_v1.Field(default=None)
|
17
|
+
"""
|
18
|
+
A human-readable label used to convey the intention of this Test Case
|
19
|
+
"""
|
20
|
+
|
17
21
|
input_values: typing.List[NamedTestCaseVariableValueRequest] = pydantic_v1.Field()
|
18
22
|
"""
|
19
23
|
Values for each of the Test Case's input variables
|
@@ -24,6 +28,11 @@ class BulkCreateTestSuiteTestCaseDataRequest(pydantic_v1.BaseModel):
|
|
24
28
|
Values for each of the Test Case's evaluation variables
|
25
29
|
"""
|
26
30
|
|
31
|
+
external_id: typing.Optional[str] = pydantic_v1.Field(default=None)
|
32
|
+
"""
|
33
|
+
Optionally provide an ID that uniquely identifies this Test Case in your system. Useful for updating this Test Cases data after initial creation. Cannot be changed later.
|
34
|
+
"""
|
35
|
+
|
27
36
|
def json(self, **kwargs: typing.Any) -> str:
|
28
37
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
29
38
|
return super().json(**kwargs_with_defaults)
|
@@ -5,10 +5,11 @@ import typing
|
|
5
5
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
7
7
|
from ..core.pydantic_utilities import pydantic_v1
|
8
|
+
from .deployment_provider_payload_response_payload import DeploymentProviderPayloadResponsePayload
|
8
9
|
|
9
10
|
|
10
11
|
class DeploymentProviderPayloadResponse(pydantic_v1.BaseModel):
|
11
|
-
payload:
|
12
|
+
payload: DeploymentProviderPayloadResponsePayload
|
12
13
|
|
13
14
|
def json(self, **kwargs: typing.Any) -> str:
|
14
15
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -5,17 +5,21 @@ import typing
|
|
5
5
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
7
7
|
from ..core.pydantic_utilities import pydantic_v1
|
8
|
-
from .
|
8
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
9
9
|
|
10
10
|
|
11
11
|
class ExecutionArrayVellumValue(pydantic_v1.BaseModel):
|
12
|
+
"""
|
13
|
+
A value representing an array of Vellum variable values.
|
14
|
+
"""
|
15
|
+
|
12
16
|
id: str = pydantic_v1.Field()
|
13
17
|
"""
|
14
18
|
The variable's uniquely identifying internal id.
|
15
19
|
"""
|
16
20
|
|
17
21
|
name: str
|
18
|
-
value: typing.Optional[typing.List[
|
22
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
|
19
23
|
|
20
24
|
def json(self, **kwargs: typing.Any) -> str:
|
21
25
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -9,6 +9,10 @@ from .function_call import FunctionCall
|
|
9
9
|
|
10
10
|
|
11
11
|
class ExecutionFunctionCallVellumValue(pydantic_v1.BaseModel):
|
12
|
+
"""
|
13
|
+
A value representing a Function Call.
|
14
|
+
"""
|
15
|
+
|
12
16
|
id: str = pydantic_v1.Field()
|
13
17
|
"""
|
14
18
|
The variable's uniquely identifying internal id.
|
@@ -8,6 +8,10 @@ from ..core.pydantic_utilities import pydantic_v1
|
|
8
8
|
|
9
9
|
|
10
10
|
class ExecutionJsonVellumValue(pydantic_v1.BaseModel):
|
11
|
+
"""
|
12
|
+
A value representing a JSON object.
|
13
|
+
"""
|
14
|
+
|
11
15
|
id: str = pydantic_v1.Field()
|
12
16
|
"""
|
13
17
|
The variable's uniquely identifying internal id.
|
@@ -9,6 +9,10 @@ from .search_result import SearchResult
|
|
9
9
|
|
10
10
|
|
11
11
|
class ExecutionSearchResultsVellumValue(pydantic_v1.BaseModel):
|
12
|
+
"""
|
13
|
+
A value representing Search Results.
|
14
|
+
"""
|
15
|
+
|
12
16
|
id: str = pydantic_v1.Field()
|
13
17
|
"""
|
14
18
|
The variable's uniquely identifying internal id.
|
vellum/types/map_enum.py
ADDED
@@ -0,0 +1,30 @@
|
|
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 ..core.pydantic_utilities import pydantic_v1
|
8
|
+
from .map_node_result_data import MapNodeResultData
|
9
|
+
|
10
|
+
|
11
|
+
class MapNodeResult(pydantic_v1.BaseModel):
|
12
|
+
"""
|
13
|
+
A Node Result Event emitted from a Map Node.
|
14
|
+
"""
|
15
|
+
|
16
|
+
data: typing.Optional[MapNodeResultData] = None
|
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
|
+
extra = pydantic_v1.Extra.allow
|
30
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,25 @@
|
|
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 ..core.pydantic_utilities import pydantic_v1
|
8
|
+
|
9
|
+
|
10
|
+
class MapNodeResultData(pydantic_v1.BaseModel):
|
11
|
+
execution_ids: typing.List[str]
|
12
|
+
|
13
|
+
def json(self, **kwargs: typing.Any) -> str:
|
14
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
15
|
+
return super().json(**kwargs_with_defaults)
|
16
|
+
|
17
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
18
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
19
|
+
return super().dict(**kwargs_with_defaults)
|
20
|
+
|
21
|
+
class Config:
|
22
|
+
frozen = True
|
23
|
+
smart_union = True
|
24
|
+
extra = pydantic_v1.Extra.allow
|
25
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
vellum/types/pdf_enum.py
ADDED
@@ -0,0 +1,37 @@
|
|
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 ..core.pydantic_utilities import pydantic_v1
|
8
|
+
|
9
|
+
|
10
|
+
class PdfSearchResultMetaSource(pydantic_v1.BaseModel):
|
11
|
+
"""
|
12
|
+
The source of a search result from a PDF document.
|
13
|
+
"""
|
14
|
+
|
15
|
+
start_page_num: typing.Optional[int] = pydantic_v1.Field(default=None)
|
16
|
+
"""
|
17
|
+
The 1-indexed page number where the chunk starts in the document. Only available for supported chunking strategies and document types.
|
18
|
+
"""
|
19
|
+
|
20
|
+
end_page_num: typing.Optional[int] = pydantic_v1.Field(default=None)
|
21
|
+
"""
|
22
|
+
The 1-indexed page number where the chunk ends in the document. Only available for supported chunking strategies and document types.
|
23
|
+
"""
|
24
|
+
|
25
|
+
def json(self, **kwargs: typing.Any) -> str:
|
26
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
27
|
+
return super().json(**kwargs_with_defaults)
|
28
|
+
|
29
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
30
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
31
|
+
return super().dict(**kwargs_with_defaults)
|
32
|
+
|
33
|
+
class Config:
|
34
|
+
frozen = True
|
35
|
+
smart_union = True
|
36
|
+
extra = pydantic_v1.Extra.allow
|
37
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,37 @@
|
|
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 ..core.pydantic_utilities import pydantic_v1
|
8
|
+
|
9
|
+
|
10
|
+
class PdfSearchResultMetaSourceRequest(pydantic_v1.BaseModel):
|
11
|
+
"""
|
12
|
+
The source of a search result from a PDF document.
|
13
|
+
"""
|
14
|
+
|
15
|
+
start_page_num: typing.Optional[int] = pydantic_v1.Field(default=None)
|
16
|
+
"""
|
17
|
+
The 1-indexed page number where the chunk starts in the document. Only available for supported chunking strategies and document types.
|
18
|
+
"""
|
19
|
+
|
20
|
+
end_page_num: typing.Optional[int] = pydantic_v1.Field(default=None)
|
21
|
+
"""
|
22
|
+
The 1-indexed page number where the chunk ends in the document. Only available for supported chunking strategies and document types.
|
23
|
+
"""
|
24
|
+
|
25
|
+
def json(self, **kwargs: typing.Any) -> str:
|
26
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
27
|
+
return super().json(**kwargs_with_defaults)
|
28
|
+
|
29
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
30
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
31
|
+
return super().dict(**kwargs_with_defaults)
|
32
|
+
|
33
|
+
class Config:
|
34
|
+
frozen = True
|
35
|
+
smart_union = True
|
36
|
+
extra = pydantic_v1.Extra.allow
|
37
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -8,17 +8,26 @@ from ..core.pydantic_utilities import pydantic_v1
|
|
8
8
|
from .named_test_case_variable_value_request import NamedTestCaseVariableValueRequest
|
9
9
|
|
10
10
|
|
11
|
-
class
|
11
|
+
class ReplaceTestSuiteTestCaseRequest(pydantic_v1.BaseModel):
|
12
12
|
"""
|
13
13
|
Information about the Test Case to replace
|
14
14
|
"""
|
15
15
|
|
16
|
-
id: str = pydantic_v1.Field()
|
16
|
+
id: typing.Optional[str] = pydantic_v1.Field(default=None)
|
17
17
|
"""
|
18
|
-
The ID of the Test Case to replace.
|
18
|
+
The Vellum-generated ID of the Test Case whose data you'd like to replace. Must specify either this or external_id.
|
19
|
+
"""
|
20
|
+
|
21
|
+
external_id: typing.Optional[str] = pydantic_v1.Field(default=None)
|
22
|
+
"""
|
23
|
+
The ID that was originally provided upon Test Case creation that uniquely identifies the Test Case whose data you'd like to replace. Must specify either this of id.
|
24
|
+
"""
|
25
|
+
|
26
|
+
label: typing.Optional[str] = pydantic_v1.Field(default=None)
|
27
|
+
"""
|
28
|
+
A human-readable label used to convey the intention of this Test Case
|
19
29
|
"""
|
20
30
|
|
21
|
-
label: typing.Optional[str] = None
|
22
31
|
input_values: typing.List[NamedTestCaseVariableValueRequest] = pydantic_v1.Field()
|
23
32
|
"""
|
24
33
|
Values for each of the Test Case's input variables
|
vellum/types/search_result.py
CHANGED
@@ -6,6 +6,7 @@ import typing
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
7
7
|
from ..core.pydantic_utilities import pydantic_v1
|
8
8
|
from .search_result_document import SearchResultDocument
|
9
|
+
from .search_result_meta import SearchResultMeta
|
9
10
|
|
10
11
|
|
11
12
|
class SearchResult(pydantic_v1.BaseModel):
|
@@ -25,6 +26,11 @@ class SearchResult(pydantic_v1.BaseModel):
|
|
25
26
|
The document that contains the chunk that matched the search query.
|
26
27
|
"""
|
27
28
|
|
29
|
+
meta: typing.Optional[SearchResultMeta] = pydantic_v1.Field(default=None)
|
30
|
+
"""
|
31
|
+
Additional information about the search result.
|
32
|
+
"""
|
33
|
+
|
28
34
|
def json(self, **kwargs: typing.Any) -> str:
|
29
35
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
30
36
|
return super().json(**kwargs_with_defaults)
|
@@ -0,0 +1,26 @@
|
|
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 ..core.pydantic_utilities import pydantic_v1
|
8
|
+
from .search_result_meta_source import SearchResultMetaSource
|
9
|
+
|
10
|
+
|
11
|
+
class SearchResultMeta(pydantic_v1.BaseModel):
|
12
|
+
source: typing.Optional[SearchResultMetaSource] = None
|
13
|
+
|
14
|
+
def json(self, **kwargs: typing.Any) -> str:
|
15
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
16
|
+
return super().json(**kwargs_with_defaults)
|
17
|
+
|
18
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
19
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
20
|
+
return super().dict(**kwargs_with_defaults)
|
21
|
+
|
22
|
+
class Config:
|
23
|
+
frozen = True
|
24
|
+
smart_union = True
|
25
|
+
extra = pydantic_v1.Extra.allow
|
26
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,26 @@
|
|
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 ..core.pydantic_utilities import pydantic_v1
|
8
|
+
from .search_result_meta_source_request import SearchResultMetaSourceRequest
|
9
|
+
|
10
|
+
|
11
|
+
class SearchResultMetaRequest(pydantic_v1.BaseModel):
|
12
|
+
source: typing.Optional[SearchResultMetaSourceRequest] = None
|
13
|
+
|
14
|
+
def json(self, **kwargs: typing.Any) -> str:
|
15
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
16
|
+
return super().json(**kwargs_with_defaults)
|
17
|
+
|
18
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
19
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
20
|
+
return super().dict(**kwargs_with_defaults)
|
21
|
+
|
22
|
+
class Config:
|
23
|
+
frozen = True
|
24
|
+
smart_union = True
|
25
|
+
extra = pydantic_v1.Extra.allow
|
26
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
|
5
|
+
import typing
|
6
|
+
|
7
|
+
from .pdf_search_result_meta_source import PdfSearchResultMetaSource
|
8
|
+
|
9
|
+
|
10
|
+
class SearchResultMetaSource_Pdf(PdfSearchResultMetaSource):
|
11
|
+
document_type: typing.Literal["PDF"] = "PDF"
|
12
|
+
|
13
|
+
class Config:
|
14
|
+
frozen = True
|
15
|
+
smart_union = True
|
16
|
+
allow_population_by_field_name = True
|
17
|
+
populate_by_name = True
|
18
|
+
|
19
|
+
|
20
|
+
SearchResultMetaSource = typing.Union[SearchResultMetaSource_Pdf]
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
|
5
|
+
import typing
|
6
|
+
|
7
|
+
from .pdf_search_result_meta_source_request import PdfSearchResultMetaSourceRequest
|
8
|
+
|
9
|
+
|
10
|
+
class SearchResultMetaSourceRequest_Pdf(PdfSearchResultMetaSourceRequest):
|
11
|
+
document_type: typing.Literal["PDF"] = "PDF"
|
12
|
+
|
13
|
+
class Config:
|
14
|
+
frozen = True
|
15
|
+
smart_union = True
|
16
|
+
allow_population_by_field_name = True
|
17
|
+
populate_by_name = True
|
18
|
+
|
19
|
+
|
20
|
+
SearchResultMetaSourceRequest = typing.Union[SearchResultMetaSourceRequest_Pdf]
|
@@ -6,6 +6,7 @@ import typing
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
7
7
|
from ..core.pydantic_utilities import pydantic_v1
|
8
8
|
from .search_result_document_request import SearchResultDocumentRequest
|
9
|
+
from .search_result_meta_request import SearchResultMetaRequest
|
9
10
|
|
10
11
|
|
11
12
|
class SearchResultRequest(pydantic_v1.BaseModel):
|
@@ -25,6 +26,11 @@ class SearchResultRequest(pydantic_v1.BaseModel):
|
|
25
26
|
The document that contains the chunk that matched the search query.
|
26
27
|
"""
|
27
28
|
|
29
|
+
meta: typing.Optional[SearchResultMetaRequest] = pydantic_v1.Field(default=None)
|
30
|
+
"""
|
31
|
+
Additional information about the search result.
|
32
|
+
"""
|
33
|
+
|
28
34
|
def json(self, **kwargs: typing.Any) -> str:
|
29
35
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
30
36
|
return super().json(**kwargs_with_defaults)
|
@@ -10,6 +10,7 @@ from .test_case_variable_value import TestCaseVariableValue
|
|
10
10
|
|
11
11
|
class TestSuiteTestCase(pydantic_v1.BaseModel):
|
12
12
|
id: typing.Optional[str] = None
|
13
|
+
external_id: typing.Optional[str] = None
|
13
14
|
label: typing.Optional[str] = None
|
14
15
|
input_values: typing.List[TestCaseVariableValue]
|
15
16
|
evaluation_values: typing.List[TestCaseVariableValue]
|
@@ -5,7 +5,7 @@ import typing
|
|
5
5
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
7
7
|
from ..core.pydantic_utilities import pydantic_v1
|
8
|
-
from .
|
8
|
+
from .create_test_suite_test_case_request import CreateTestSuiteTestCaseRequest
|
9
9
|
|
10
10
|
|
11
11
|
class TestSuiteTestCaseCreateBulkOperationRequest(pydantic_v1.BaseModel):
|
@@ -18,7 +18,7 @@ class TestSuiteTestCaseCreateBulkOperationRequest(pydantic_v1.BaseModel):
|
|
18
18
|
An ID representing this specific operation. Can later be used to look up information about the operation's success in the response.
|
19
19
|
"""
|
20
20
|
|
21
|
-
data:
|
21
|
+
data: CreateTestSuiteTestCaseRequest
|
22
22
|
|
23
23
|
def json(self, **kwargs: typing.Any) -> str:
|
24
24
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -5,7 +5,7 @@ import typing
|
|
5
5
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
7
7
|
from ..core.pydantic_utilities import pydantic_v1
|
8
|
-
from .
|
8
|
+
from .replace_test_suite_test_case_request import ReplaceTestSuiteTestCaseRequest
|
9
9
|
|
10
10
|
|
11
11
|
class TestSuiteTestCaseReplaceBulkOperationRequest(pydantic_v1.BaseModel):
|
@@ -18,7 +18,7 @@ class TestSuiteTestCaseReplaceBulkOperationRequest(pydantic_v1.BaseModel):
|
|
18
18
|
An ID representing this specific operation. Can later be used to look up information about the operation's success in the response.
|
19
19
|
"""
|
20
20
|
|
21
|
-
data:
|
21
|
+
data: ReplaceTestSuiteTestCaseRequest
|
22
22
|
|
23
23
|
def json(self, **kwargs: typing.Any) -> str:
|
24
24
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -7,6 +7,7 @@ import typing
|
|
7
7
|
from .api_node_result import ApiNodeResult
|
8
8
|
from .code_execution_node_result import CodeExecutionNodeResult
|
9
9
|
from .conditional_node_result import ConditionalNodeResult
|
10
|
+
from .map_node_result import MapNodeResult
|
10
11
|
from .merge_node_result import MergeNodeResult
|
11
12
|
from .metric_node_result import MetricNodeResult
|
12
13
|
from .prompt_node_result import PromptNodeResult
|
@@ -116,6 +117,16 @@ class WorkflowNodeResultData_Metric(MetricNodeResult):
|
|
116
117
|
populate_by_name = True
|
117
118
|
|
118
119
|
|
120
|
+
class WorkflowNodeResultData_Map(MapNodeResult):
|
121
|
+
type: typing.Literal["MAP"] = "MAP"
|
122
|
+
|
123
|
+
class Config:
|
124
|
+
frozen = True
|
125
|
+
smart_union = True
|
126
|
+
allow_population_by_field_name = True
|
127
|
+
populate_by_name = True
|
128
|
+
|
129
|
+
|
119
130
|
WorkflowNodeResultData = typing.Union[
|
120
131
|
WorkflowNodeResultData_Prompt,
|
121
132
|
WorkflowNodeResultData_Search,
|
@@ -127,4 +138,5 @@ WorkflowNodeResultData = typing.Union[
|
|
127
138
|
WorkflowNodeResultData_Merge,
|
128
139
|
WorkflowNodeResultData_Subworkflow,
|
129
140
|
WorkflowNodeResultData_Metric,
|
141
|
+
WorkflowNodeResultData_Map,
|
130
142
|
]
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=G55NRop_hz8IpafXnIM326D0I9YSBsQJLtzBNgoVNDM,45651
|
2
2
|
vellum/client.py,sha256=FklbOzCaDTPP_EQn0HJXUq1_ZFOHuSePt6_nVQ_YLgY,97463
|
3
3
|
vellum/core/__init__.py,sha256=1pNSKkwyQvMl_F0wohBqmoQAITptg3zlvCwsoSSzy7c,853
|
4
4
|
vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
5
|
-
vellum/core/client_wrapper.py,sha256
|
5
|
+
vellum/core/client_wrapper.py,sha256=-vO_h8n0NNqy3sN2pTSTXlDAoM41JPD3YuBYc80k9PU,1697
|
6
6
|
vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
7
7
|
vellum/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
8
8
|
vellum/core/http_client.py,sha256=5ok6hqgZDJhg57EHvMnr0BBaHdG50QxFPKaCZ9aVWTc,5059
|
@@ -44,7 +44,7 @@ vellum/resources/sandboxes/client.py,sha256=Lm45GGIRSODx5WJbyXP3ThR3FB8QSPajMWiq
|
|
44
44
|
vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
45
45
|
vellum/resources/test_suite_runs/client.py,sha256=LOcjVwBAgQF__yEGvsbZpjBhefGtLL1vnSqJ1K3uly0,18728
|
46
46
|
vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
47
|
-
vellum/resources/test_suites/client.py,sha256
|
47
|
+
vellum/resources/test_suites/client.py,sha256=4BSlNgX_4H3avMfW8zs1nTJH1bURSwIzOJtB2wO92JY,28338
|
48
48
|
vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
|
49
49
|
vellum/resources/workflow_deployments/client.py,sha256=Oal32DF472B46CBWkb8GgDonjyAFQ28hHV5lq4DF1AM,22437
|
50
50
|
vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
|
@@ -60,7 +60,7 @@ vellum/terraform/document_index/__init__.py,sha256=qq2zENI22bUvqGk_a1lmsoTr5O_xC
|
|
60
60
|
vellum/terraform/provider/__init__.py,sha256=K1yLlTZkYBxhD4bhUV1v23hxDGgbfsAIGsSyeB54dNQ,10298
|
61
61
|
vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
62
62
|
vellum/terraform/versions.json,sha256=STW6Mg3BKDacFmbWHXziHxE90GWncZf4AIzCLiXm_7o,56
|
63
|
-
vellum/types/__init__.py,sha256=
|
63
|
+
vellum/types/__init__.py,sha256=CmRjPmzpzRtCbzM5bjZk_dd3S3Gcz2SCFRuUt1PIwKA,61260
|
64
64
|
vellum/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
|
65
65
|
vellum/types/api_node_result.py,sha256=SvYIi1T-N_P3FVjzv9I91PaCT0IN958A3easp5Q7jqE,983
|
66
66
|
vellum/types/api_node_result_data.py,sha256=KFBmmizcEg73GwQMXUtEdJ4e9YGFpRLYAnalwxIcDug,1161
|
@@ -77,8 +77,6 @@ vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.
|
|
77
77
|
vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py,sha256=grnDm5vh1wofvXLCQVUfA2wYYFce03hRGHCECNFJ7kk,1043
|
78
78
|
vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py,sha256=HbB1bJpoUuRt-orgOThdrcB0RiBTNHVuTBOehitN3tQ,1036
|
79
79
|
vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py,sha256=0N_YrysJ-HVPBaUDD56V1Fxu1aZQJNMt7O6heY-Z5hY,1043
|
80
|
-
vellum/types/bulk_create_test_suite_test_case_data_request.py,sha256=hY6n2s-bmZrxR3Nyb2xhetqRNkYbH7BK-cAxz44VBPs,1376
|
81
|
-
vellum/types/bulk_replace_test_suite_test_case_data_request.py,sha256=d_SQFs_wCcBbAo31ze9xGZixSegw6nDQqs0VbIcJf6g,1469
|
82
80
|
vellum/types/chat_history_enum.py,sha256=etXbSJGuOjEcYXyCoQEw0bd9sfbZZNctMQyFoCdnywM,129
|
83
81
|
vellum/types/chat_history_input_request.py,sha256=iBqK5uT7wzR2C9TPvtQfugUeL1-4kOg_KQAc7fWYpnk,1121
|
84
82
|
vellum/types/chat_message.py,sha256=jROO5ASj_l0MoGGmno1TCUP7aMLIk48miMDWHpKUn_w,1213
|
@@ -100,10 +98,12 @@ vellum/types/code_execution_node_string_result.py,sha256=w_FeNnHyjpc-bjXPKBxHywO
|
|
100
98
|
vellum/types/conditional_node_result.py,sha256=mR8FHOnTwLDO8U5uVNB2SkDrJSDRkcyLqXPSSL8Dil4,1022
|
101
99
|
vellum/types/conditional_node_result_data.py,sha256=BoSK8B_qDx-CztZw5qwl2Gk0Ow56gifNu2Ahg-P15iE,898
|
102
100
|
vellum/types/create_enum.py,sha256=38jp66mStym6pDxoXS4z6y7bfArh1jgjjV8xgf4KBBw,118
|
101
|
+
vellum/types/create_test_suite_test_case_request.py,sha256=10jAv5EDKNFcS42q_oggcnlzKQIZlPaqwu3eT8xswWM,1750
|
103
102
|
vellum/types/created_enum.py,sha256=_dfKJhEenYcIUYY1uKQuq1uNS3k9HbPGCxXnW-Tu5uo,120
|
104
103
|
vellum/types/delete_enum.py,sha256=g6Rnc2pbgXkEbqhG0Bx1z-ZGr4DMkb8QK8du9dQQcpQ,118
|
105
104
|
vellum/types/deleted_enum.py,sha256=F7VTcnxIkXrwyQr5CjGikBbCnlo6To_rP0pibWm-ioo,120
|
106
|
-
vellum/types/deployment_provider_payload_response.py,sha256=
|
105
|
+
vellum/types/deployment_provider_payload_response.py,sha256=Y1gNhvAKlreRXchZZpX_5QHCu9Tbs887E6_Ghs3Dlbg,1009
|
106
|
+
vellum/types/deployment_provider_payload_response_payload.py,sha256=Jpu_z0WZ0Uu0Xu5h77GrNNAjP1R8pn4K-aHJPqk8c50,171
|
107
107
|
vellum/types/deployment_read.py,sha256=Ob9ArdqKJb5vjRx26hX_iOnPF2MwtBYxB5xx2LVNbEk,2100
|
108
108
|
vellum/types/deployment_release_tag_deployment_history_item.py,sha256=997C-J0NOEvOm7Y_dyyaqYvKMIEHCDj0JEpAcmOjOEQ,903
|
109
109
|
vellum/types/deployment_release_tag_read.py,sha256=o0X8dMSqajT3-lEnLk9tRb8PRhs3l3M4iBM7CX9316c,1432
|
@@ -128,14 +128,14 @@ vellum/types/execute_workflow_error_response.py,sha256=r1Wpm5b6ujV3X1BNHVHXQ2hrn
|
|
128
128
|
vellum/types/execute_workflow_response.py,sha256=O6f_Ow0yhGxlPcDyGHt53UAHxjfEQLXeuowovniDSmU,1085
|
129
129
|
vellum/types/execute_workflow_stream_error_response.py,sha256=xDmKmS3wYFngxJJiE7AEhYxoU4tRTOf1jtWV-9n2zX4,953
|
130
130
|
vellum/types/execute_workflow_workflow_result_event.py,sha256=1UIAqBeCGkOSw_x62mtuGMZYCRCNCMbUqT1DlTMjVsc,1067
|
131
|
-
vellum/types/execution_array_vellum_value.py,sha256=
|
132
|
-
vellum/types/execution_chat_history_vellum_value.py,sha256=
|
133
|
-
vellum/types/execution_error_vellum_value.py,sha256=
|
134
|
-
vellum/types/execution_function_call_vellum_value.py,sha256=
|
135
|
-
vellum/types/execution_json_vellum_value.py,sha256=
|
136
|
-
vellum/types/execution_number_vellum_value.py,sha256=
|
137
|
-
vellum/types/execution_search_results_vellum_value.py,sha256=
|
138
|
-
vellum/types/execution_string_vellum_value.py,sha256=
|
131
|
+
vellum/types/execution_array_vellum_value.py,sha256=X0JpS0El85UmLBg06WNSd_DdX0YD5cYUgcoedq7F7u8,1171
|
132
|
+
vellum/types/execution_chat_history_vellum_value.py,sha256=_Ek5MlnLvtc1icgzWZOGDaZRgS8ELpOZjHFLH864EYU,1126
|
133
|
+
vellum/types/execution_error_vellum_value.py,sha256=o3R_AbSA9FDwNfi6Wd1cZoBclfRILhJQ08IcYdV1nxw,1103
|
134
|
+
vellum/types/execution_function_call_vellum_value.py,sha256=gBCkwo9gLZfolZ4xQlY3ggPOke0aA1NKln-qNv1ZBuQ,1120
|
135
|
+
vellum/types/execution_json_vellum_value.py,sha256=M6LOgpmqAEBlUFzJWDDC2RYVCYK87HLfkY1ZGGcdq_E,1086
|
136
|
+
vellum/types/execution_number_vellum_value.py,sha256=SuMDZKlENDBJHvNnzv11ZqLn8m60ctPopm3aF-mDMGA,1060
|
137
|
+
vellum/types/execution_search_results_vellum_value.py,sha256=PLgIGx3GIPq48ex8BAZFk5xHWEBjjWU3x9kI6BVgopM,1133
|
138
|
+
vellum/types/execution_string_vellum_value.py,sha256=GDe7ABz712yr5oD4jBTafz2G3f7M8pIGFpzt0NIb8E0,1058
|
139
139
|
vellum/types/execution_vellum_value.py,sha256=aEkd5eaFhGrI3POUFii5w3WZkvUgpB47KIFaAKS9_cQ,3144
|
140
140
|
vellum/types/external_test_case_execution.py,sha256=8Xo3ydFeP8FzrPU8V5XyfEVRy8cb022w3SLaVuu1aFs,1125
|
141
141
|
vellum/types/external_test_case_execution_request.py,sha256=dQt05_ct3Q_L7DUlVesHIoXWIGjfSdl2aw6YsCn8REo,1154
|
@@ -189,6 +189,9 @@ vellum/types/json_variable_value.py,sha256=KdKz67NgVwVHpxXFgSxFPBeGBdjzTwZ_VKe22
|
|
189
189
|
vellum/types/json_vellum_value.py,sha256=c_fKVj3ZnjacNEGW8keuoSfsNs7MBSH7PkTNxZuWU4M,959
|
190
190
|
vellum/types/logical_operator.py,sha256=MuuMZ1-gOCDvy1WDQkMFfiBNHsRCqKgJei-b3727sKc,487
|
191
191
|
vellum/types/logprobs_enum.py,sha256=D_458cZX2CAb6dX_ovrQ6HARlJkYcZRadKwsi1Cr-JM,151
|
192
|
+
vellum/types/map_enum.py,sha256=ABInkGAOBdgmsKzcCcM0AKEPQt-iwim-GmHEkXEHEs0,112
|
193
|
+
vellum/types/map_node_result.py,sha256=x5S8E8_jhIZHc9aAeE0GqGAw8v5XoLXTA4uiFTVtqA0,1006
|
194
|
+
vellum/types/map_node_result_data.py,sha256=aQ63NmLtaFQ1R-NgS_3Eq-al2-BT9oONLrj-2Fp2BXI,876
|
192
195
|
vellum/types/merge_enum.py,sha256=TeAaXV2eWEGJHR3BqHdtIRkHUhctvfUo_Wu8MeqHYtU,116
|
193
196
|
vellum/types/merge_node_result.py,sha256=R6AndgFRFuFQk8APapAr7bkv4vqkukz-D71kl8rIubU,905
|
194
197
|
vellum/types/metadata_filter_config_request.py,sha256=_1CVIxmDmtXezTMWoaqeea9boe8hyCmmAn28u69NEUk,1355
|
@@ -253,6 +256,9 @@ vellum/types/paginated_slim_document_list.py,sha256=L8RyvP1ADem7HUnNjDr4KyoQjIJt
|
|
253
256
|
vellum/types/paginated_slim_workflow_deployment_list.py,sha256=1NfPIuU_NgWgJsXcUpCBtOPj7MqZlblbcCXCjzGXwWc,1111
|
254
257
|
vellum/types/paginated_test_suite_run_execution_list.py,sha256=mVhD_un8RCqnJbH9yWliNQPf5E3C0jcH0ManhH6gxZc,1060
|
255
258
|
vellum/types/paginated_test_suite_test_case_list.py,sha256=Ak_plmBTt72atM2uC1PWm8uVffi3tPAozolApJ7LYS4,1044
|
259
|
+
vellum/types/pdf_enum.py,sha256=pFnB6Uv7AbPbZPXlEtQ9O4qNNVeQX0kNLxz1sdkxvVM,112
|
260
|
+
vellum/types/pdf_search_result_meta_source.py,sha256=qEwl2y_RN1XUShidjaH5zm8kp-4PRKm9hNk2_Jf29RY,1377
|
261
|
+
vellum/types/pdf_search_result_meta_source_request.py,sha256=ft-qjTtiSxvo3KVTdzF88QkOCc4sOq46gEyb7ICjBOI,1384
|
256
262
|
vellum/types/processing_failure_reason_enum.py,sha256=R_KIW7TcQejhc-vLhtNf9SdkYADgoZCn4ch4_RRIvsI,195
|
257
263
|
vellum/types/processing_state_enum.py,sha256=lIEunnCpgYQExm2bGyTb12KyjQ3O7XOx636aWXb_Iwo,190
|
258
264
|
vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=r7xmsEaFZWLXKE1Y7GGjUXbaYyMnIdpdgFy3QvMEl8M,2044
|
@@ -275,6 +281,7 @@ vellum/types/rejected_prompt_execution_meta.py,sha256=kBS6bThYk1vvhKv47UB0FZP7Wu
|
|
275
281
|
vellum/types/rejected_workflow_node_result_event.py,sha256=NbHR7Dhd9QBxDY9AMVM3uHx6HkgPiW6C0LaBGktGycA,1293
|
276
282
|
vellum/types/release_tag_source.py,sha256=YavosOXZ976yfXTNWRTZwh2HhRiYmSDk0bQCkl-jCoQ,158
|
277
283
|
vellum/types/replace_enum.py,sha256=A27UrZHyriKUSLCJDDG3mQmWyoFDpUKiutwfhZMc0Sw,120
|
284
|
+
vellum/types/replace_test_suite_test_case_request.py,sha256=agvGdhfb0mbw_CsOSsvqXgZH8LUZFUROMMJqrZKHqTk,1946
|
278
285
|
vellum/types/replaced_enum.py,sha256=oC-pUajQvOhS1G5G55GS2Jdaityny520XbnrD1nuOD8,122
|
279
286
|
vellum/types/sandbox_scenario.py,sha256=-MaSvpH6jSokr5XsCZybafKez3fnPctTFqm30Lfk8Ko,1144
|
280
287
|
vellum/types/scenario_input.py,sha256=6_jN2JaqgEOkQpP5h17l5HeRhI_kdNMD_jjVyNFDM7Q,907
|
@@ -286,11 +293,15 @@ vellum/types/search_node_result.py,sha256=ylJR6lICVahKvr4eGZxDxdLbHkxnu3zaHEV-GW
|
|
286
293
|
vellum/types/search_node_result_data.py,sha256=bixMDjtlOKLFVkhUQHWkQcTffkbvYYfuob2hYkJWngg,1143
|
287
294
|
vellum/types/search_request_options_request.py,sha256=WI_MYTsu4pjILsaJvkC-1A-Ghi8ib5qQZdz3kUq9iSY,1622
|
288
295
|
vellum/types/search_response.py,sha256=tMnotqttu7YEYteBDuuriI2HYIJsstG1UFs-3GuNzPs,1047
|
289
|
-
vellum/types/search_result.py,sha256=
|
296
|
+
vellum/types/search_result.py,sha256=bsAjiXEpXdwnysiJ0rsR3_aEi5wQlXR9HCECQ23ecxE,1500
|
290
297
|
vellum/types/search_result_document.py,sha256=MRzncZs2Ug9g0NLoFO5AwElFIpJ4Zs-wUMOuDqX9Yfk,1466
|
291
298
|
vellum/types/search_result_document_request.py,sha256=GVIvgn0htJJojCMPep2p3P_bcxf1ffNZ0XHhNPNsy-w,1473
|
292
299
|
vellum/types/search_result_merging_request.py,sha256=Yx1iv-58kFMCayP_ngjhD8O-m2nvlIAfAQUz1pRxwKI,972
|
293
|
-
vellum/types/
|
300
|
+
vellum/types/search_result_meta.py,sha256=yaIHNa95ZP-9d9bB5whdYZ0f8vncjOph7SRszyXSgyg,960
|
301
|
+
vellum/types/search_result_meta_request.py,sha256=nJaWYP7UXBABkgFJ4Apgy8bFZnyluDoh2xfMRlZEKn4,989
|
302
|
+
vellum/types/search_result_meta_source.py,sha256=8T7zgf4lKIoyVKN09dEME2bb3hi86ufG65z96kwYfDM,511
|
303
|
+
vellum/types/search_result_meta_source_request.py,sha256=iQi1DI-COoeqfO3zsECjZPlnn-fTJEFEj6CGPXYH61A,554
|
304
|
+
vellum/types/search_result_request.py,sha256=EYg4mDwbpGmQuMwQktn1LXOvn0XMVY0cKc3XPkCAjdw,1551
|
294
305
|
vellum/types/search_results_enum.py,sha256=qiQWwPnGtlWgG6JVCOAV8KzJarrhOeZrOAeb569grgA,133
|
295
306
|
vellum/types/search_weights_request.py,sha256=C6uvEWZSpmbslpU52qcVA-lEtKF_crRsafXsN_rDURc,1128
|
296
307
|
vellum/types/sentence_chunker_config.py,sha256=DVag4hG9rvuhJWgzbcbsdU4Nz1mx_Ynb3DHUbeOViA4,1003
|
@@ -387,10 +398,10 @@ vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=zt9Q
|
|
387
398
|
vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=usIaDWBsS-zTQc4IIWec9-bAQKI_57LcKABZGV8cGlA,1248
|
388
399
|
vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=P0zRtzh7ekun8pcEH2EFTB6p4Kq54cE955Vff4q6-dE,1405
|
389
400
|
vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py,sha256=JMN3-aK8SWJzTli6c-j9xmHSYVwGND1PaZgGzwwkMjo,170
|
390
|
-
vellum/types/test_suite_test_case.py,sha256=
|
401
|
+
vellum/types/test_suite_test_case.py,sha256=cD9k7hn3e8XT6-JLbJKo_EYROE4dXAm2n7-0ZtKsfJs,1131
|
391
402
|
vellum/types/test_suite_test_case_bulk_operation_request.py,sha256=eDAZV9NwbvH_dhaTmzUaHC5858B47Dqz7Dq6_kIXtu0,1528
|
392
403
|
vellum/types/test_suite_test_case_bulk_result.py,sha256=Cu3zBu6PFltkTsQRcdzA5dcVAyESK6U3jMcMfe28K44,1798
|
393
|
-
vellum/types/test_suite_test_case_create_bulk_operation_request.py,sha256=
|
404
|
+
vellum/types/test_suite_test_case_create_bulk_operation_request.py,sha256=mCTw56KoJa2KbgHdhbq283AELwcINpt1-pk1CDfmkcA,1257
|
394
405
|
vellum/types/test_suite_test_case_created_bulk_result.py,sha256=hUH8duBtZsrWXp7p0kZeCoP5W48Ioui-9fjoXycCnSA,1094
|
395
406
|
vellum/types/test_suite_test_case_created_bulk_result_data.py,sha256=7_3ZxGLWHxP0Ggft7LeunDjY0ZaMgJ3yMpgFJRKw1_k,944
|
396
407
|
vellum/types/test_suite_test_case_delete_bulk_operation_data_request.py,sha256=JUON1LJ8pBIzpsICjk6qIMSzg4Ctjrf2DYCNAzhPwCY,882
|
@@ -398,7 +409,7 @@ vellum/types/test_suite_test_case_delete_bulk_operation_request.py,sha256=UWtptA
|
|
398
409
|
vellum/types/test_suite_test_case_deleted_bulk_result.py,sha256=1CsSapclH45R6Jje8D5fPDvzajUsaMtNbfMIYu0FZuU,1261
|
399
410
|
vellum/types/test_suite_test_case_deleted_bulk_result_data.py,sha256=ua_wuUfrrXSYbG-m17Hdw1lEJBQnzn8s6M6W2t0RvHA,943
|
400
411
|
vellum/types/test_suite_test_case_rejected_bulk_result.py,sha256=gvBqlLu-vxRVJIweNaTOS_LSm_JMfLlzPxMUTgYwS0c,1247
|
401
|
-
vellum/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=
|
412
|
+
vellum/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=QY3QE2dOBuFt8uy_G7wUaMSZTWEh5610-yO9m89XnnA,1262
|
402
413
|
vellum/types/test_suite_test_case_replaced_bulk_result.py,sha256=36m3raleko_4VQXCIGexVlHZ8CiIJ9Fg73vv3Bivuck,1266
|
403
414
|
vellum/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=fbH0CsKTE-bhEqzCa_ZFR2X3aX7JhungfEfueuIQkP4,945
|
404
415
|
vellum/types/text_embedding_3_large_enum.py,sha256=mniEbUgFr40fnVAGnlL_aNaFET3PhrQ8flune0mm2H4,147
|
@@ -427,7 +438,7 @@ vellum/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDH
|
|
427
438
|
vellum/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
|
428
439
|
vellum/types/workflow_execution_node_result_event.py,sha256=qIjztqor0UcBTxbq7w7Is98Mqu0IgggUKY24qOHal4s,1139
|
429
440
|
vellum/types/workflow_execution_workflow_result_event.py,sha256=PyMUdEwRMd8vjdimdcOXSvzPNd3PoacfDKuEmdrzpTU,1134
|
430
|
-
vellum/types/workflow_node_result_data.py,sha256=
|
441
|
+
vellum/types/workflow_node_result_data.py,sha256=OsGHVua3RRKrZvKZuWDcjyepXGGjmikrWosz7LNWKSY,3937
|
431
442
|
vellum/types/workflow_node_result_event.py,sha256=0tSTva8wAxMKSGWrbSRADqGcbR_A6FMSR7xkYLP9rZg,1745
|
432
443
|
vellum/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
|
433
444
|
vellum/types/workflow_output.py,sha256=iSz1VQAm0e4gJcJlB_HG6jI9P4gRx4nQhMzoTgzG4lM,3212
|
@@ -459,7 +470,7 @@ vellum/types/workflow_result_event_output_data_search_results.py,sha256=gazaUrC5
|
|
459
470
|
vellum/types/workflow_result_event_output_data_string.py,sha256=aVWIIGbLj4TJJhTTj6WzhbYXQkcZatKuhhNy8UYwXbw,1482
|
460
471
|
vellum/types/workflow_stream_event.py,sha256=KA6Bkk_XA6AIPWR-1vKnwF1A8l_Bm5y0arQCWWWRpsk,911
|
461
472
|
vellum/version.py,sha256=neLt8HBHHUtDF9M5fsyUzHT-pKooEPvceaLDqqIGb0s,77
|
462
|
-
vellum_ai-0.6.
|
463
|
-
vellum_ai-0.6.
|
464
|
-
vellum_ai-0.6.
|
465
|
-
vellum_ai-0.6.
|
473
|
+
vellum_ai-0.6.7.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
474
|
+
vellum_ai-0.6.7.dist-info/METADATA,sha256=tv89fOOL-Pj8-X5-m-EKElAzGf5eOKYDPNq5ZTYL5fU,3872
|
475
|
+
vellum_ai-0.6.7.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
476
|
+
vellum_ai-0.6.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|