vellum-ai 0.8.22__py3-none-any.whl → 0.8.23__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,7 +17,7 @@ class BaseClientWrapper:
17
17
  headers: typing.Dict[str, str] = {
18
18
  "X-Fern-Language": "Python",
19
19
  "X-Fern-SDK-Name": "vellum-ai",
20
- "X-Fern-SDK-Version": "0.8.22",
20
+ "X-Fern-SDK-Version": "0.8.23",
21
21
  }
22
22
  headers["X_API_KEY"] = self.api_key
23
23
  return headers
@@ -24,8 +24,8 @@ class TestSuiteRunsClient:
24
24
  def create(
25
25
  self,
26
26
  *,
27
- test_suite_id: str,
28
27
  exec_config: TestSuiteRunExecConfigRequest,
28
+ test_suite_id: typing.Optional[str] = OMIT,
29
29
  test_suite_name: typing.Optional[str] = OMIT,
30
30
  request_options: typing.Optional[RequestOptions] = None,
31
31
  ) -> TestSuiteRunRead:
@@ -34,12 +34,12 @@ class TestSuiteRunsClient:
34
34
 
35
35
  Parameters
36
36
  ----------
37
- test_suite_id : str
38
- The ID of the Test Suite to run. Must provide either this or test_suite_id.
39
-
40
37
  exec_config : TestSuiteRunExecConfigRequest
41
38
  Configuration that defines how the Test Suite should be run
42
39
 
40
+ test_suite_id : typing.Optional[str]
41
+ The ID of the Test Suite to run. Must provide either this or test_suite_id.
42
+
43
43
  test_suite_name : typing.Optional[str]
44
44
  The name of the Test Suite to run. Must provide either this or test_suite_id.
45
45
 
@@ -63,7 +63,6 @@ class TestSuiteRunsClient:
63
63
  api_key="YOUR_API_KEY",
64
64
  )
65
65
  client.test_suite_runs.create(
66
- test_suite_id="test_suite_id",
67
66
  exec_config=TestSuiteRunDeploymentReleaseTagExecConfigRequest(
68
67
  data=TestSuiteRunDeploymentReleaseTagExecConfigDataRequest(
69
68
  deployment_id="deployment_id",
@@ -227,8 +226,8 @@ class AsyncTestSuiteRunsClient:
227
226
  async def create(
228
227
  self,
229
228
  *,
230
- test_suite_id: str,
231
229
  exec_config: TestSuiteRunExecConfigRequest,
230
+ test_suite_id: typing.Optional[str] = OMIT,
232
231
  test_suite_name: typing.Optional[str] = OMIT,
233
232
  request_options: typing.Optional[RequestOptions] = None,
234
233
  ) -> TestSuiteRunRead:
@@ -237,12 +236,12 @@ class AsyncTestSuiteRunsClient:
237
236
 
238
237
  Parameters
239
238
  ----------
240
- test_suite_id : str
241
- The ID of the Test Suite to run. Must provide either this or test_suite_id.
242
-
243
239
  exec_config : TestSuiteRunExecConfigRequest
244
240
  Configuration that defines how the Test Suite should be run
245
241
 
242
+ test_suite_id : typing.Optional[str]
243
+ The ID of the Test Suite to run. Must provide either this or test_suite_id.
244
+
246
245
  test_suite_name : typing.Optional[str]
247
246
  The name of the Test Suite to run. Must provide either this or test_suite_id.
248
247
 
@@ -271,7 +270,6 @@ class AsyncTestSuiteRunsClient:
271
270
 
272
271
  async def main() -> None:
273
272
  await client.test_suite_runs.create(
274
- test_suite_id="test_suite_id",
275
273
  exec_config=TestSuiteRunDeploymentReleaseTagExecConfigRequest(
276
274
  data=TestSuiteRunDeploymentReleaseTagExecConfigDataRequest(
277
275
  deployment_id="deployment_id",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.8.22
3
+ Version: 0.8.23
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.8,<4.0
@@ -2,7 +2,7 @@ vellum/__init__.py,sha256=XD7isCfj2AEsRXQ7I_R3dfvqSFpcz3vM_B_3EK_icfk,32600
2
2
  vellum/client.py,sha256=cMrzyQ7GUnByOLvgoe9lCf569uk5e17I4TIgA74awKg,114255
3
3
  vellum/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
4
4
  vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
- vellum/core/client_wrapper.py,sha256=pcAhb-U4Gi4HZSTE4jIe3tUHEm6ToH4iA460aOCwSpc,1890
5
+ vellum/core/client_wrapper.py,sha256=hKafZmB1w1XfuU7lZreKQfuedsRD-_CnQKgB-TC2MEY,1890
6
6
  vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  vellum/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
8
8
  vellum/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
@@ -48,7 +48,7 @@ vellum/resources/metric_definitions/client.py,sha256=Q0hrwTmjaUUVYPKM7wqRdWMzQwZ
48
48
  vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
49
49
  vellum/resources/sandboxes/client.py,sha256=i-6DHap5k6gFcYS-kWI8ayJFVZxb-GENRft6BJwVam4,17158
50
50
  vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
51
- vellum/resources/test_suite_runs/client.py,sha256=76roXc-CndpTR-AuPsiP6bD4H4hA7-4JMqTX_3qJ7PM,15138
51
+ vellum/resources/test_suite_runs/client.py,sha256=gCF1ewlUrCsZhnXYOYqdUuD2twTrQ-u95xOgvRy7WAw,15130
52
52
  vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
53
53
  vellum/resources/test_suites/client.py,sha256=XOSXVzgcnyescVX02aKdRzLSxY32xS0ULXbwc9XFAE8,25063
54
54
  vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
@@ -521,7 +521,7 @@ vellum/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7Zv
521
521
  vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
522
522
  vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
523
523
  vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
524
- vellum_ai-0.8.22.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
525
- vellum_ai-0.8.22.dist-info/METADATA,sha256=oHnStliIHeJ_YAZos8s1iUaXGqL7LeyPDGumitd2UMQ,4395
526
- vellum_ai-0.8.22.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
527
- vellum_ai-0.8.22.dist-info/RECORD,,
524
+ vellum_ai-0.8.23.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
525
+ vellum_ai-0.8.23.dist-info/METADATA,sha256=0-YqyyRiBiY5436OCa3ixRQvA0dakPjZcDpkHwOe4eE,4395
526
+ vellum_ai-0.8.23.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
527
+ vellum_ai-0.8.23.dist-info/RECORD,,