eval-studio-client 0.7.0__py3-none-any.whl → 0.8.0a2__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.
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
14
14
  **deleter** | **str** | Output only. Optional. Name of the user or service that requested deletion of the Document. | [optional] [readonly]
15
15
  **display_name** | **str** | Human readable name of the Document. | [optional]
16
16
  **description** | **str** | Optional. Arbitrary description of the Document. | [optional]
17
- **url** | **str** | Required. Immutable. Absolute URL where the document can be downloaded. | [optional]
17
+ **url** | **str** | Required. Immutable. Absolute URL where the document can be downloaded. The format '//eval-studio/documents/<UUID>' is used for documents uploaded to Eval Studio. It is the responsibility of the client to convert this to a valid URL before downloading. | [optional]
18
18
 
19
19
  ## Example
20
20
 
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
14
14
  **deleter** | **str** | Output only. Optional. Name of the user or service that requested deletion of the Document. | [optional] [readonly]
15
15
  **display_name** | **str** | Human readable name of the Document. | [optional]
16
16
  **description** | **str** | Optional. Arbitrary description of the Document. | [optional]
17
- **url** | **str** | Required. Immutable. Absolute URL where the document can be downloaded. | [optional]
17
+ **url** | **str** | Required. Immutable. Absolute URL where the document can be downloaded. The format '//eval-studio/documents/<UUID>' is used for documents uploaded to Eval Studio. It is the responsibility of the client to convert this to a valid URL before downloading. | [optional]
18
18
 
19
19
  ## Example
20
20
 
@@ -35,7 +35,7 @@ class RequiredTheDocumentToUpdate(BaseModel):
35
35
  deleter: Optional[StrictStr] = Field(default=None, description="Output only. Optional. Name of the user or service that requested deletion of the Document.")
36
36
  display_name: Optional[StrictStr] = Field(default=None, description="Human readable name of the Document.", alias="displayName")
37
37
  description: Optional[StrictStr] = Field(default=None, description="Optional. Arbitrary description of the Document.")
38
- url: Optional[StrictStr] = Field(default=None, description="Required. Immutable. Absolute URL where the document can be downloaded.")
38
+ url: Optional[StrictStr] = Field(default=None, description="Required. Immutable. Absolute URL where the document can be downloaded. The format '//eval-studio/documents/<UUID>' is used for documents uploaded to Eval Studio. It is the responsibility of the client to convert this to a valid URL before downloading.")
39
39
  __properties: ClassVar[List[str]] = ["createTime", "creator", "updateTime", "updater", "deleteTime", "deleter", "displayName", "description", "url"]
40
40
 
41
41
  model_config = ConfigDict(
@@ -36,7 +36,7 @@ class V1alphaDocument(BaseModel):
36
36
  deleter: Optional[StrictStr] = Field(default=None, description="Output only. Optional. Name of the user or service that requested deletion of the Document.")
37
37
  display_name: Optional[StrictStr] = Field(default=None, description="Human readable name of the Document.", alias="displayName")
38
38
  description: Optional[StrictStr] = Field(default=None, description="Optional. Arbitrary description of the Document.")
39
- url: Optional[StrictStr] = Field(default=None, description="Required. Immutable. Absolute URL where the document can be downloaded.")
39
+ url: Optional[StrictStr] = Field(default=None, description="Required. Immutable. Absolute URL where the document can be downloaded. The format '//eval-studio/documents/<UUID>' is used for documents uploaded to Eval Studio. It is the responsibility of the client to convert this to a valid URL before downloading.")
40
40
  __properties: ClassVar[List[str]] = ["name", "createTime", "creator", "updateTime", "updater", "deleteTime", "deleter", "displayName", "description", "url"]
41
41
 
42
42
  model_config = ConfigDict(
@@ -2066,7 +2066,7 @@
2066
2066
  },
2067
2067
  "url": {
2068
2068
  "type": "string",
2069
- "description": "Required. Immutable. Absolute URL where the document can be downloaded."
2069
+ "description": "Required. Immutable. Absolute URL where the document can be downloaded. The format\n'//eval-studio/documents/\u003cUUID\u003e' is used for documents uploaded to Eval Studio. It is the\nresponsibility of the client to convert this to a valid URL before downloading."
2070
2070
  }
2071
2071
  },
2072
2072
  "description": "The Document's name field is used to identify the Document to be updated. Format:\ndocuments/{document}",
@@ -4356,7 +4356,7 @@
4356
4356
  },
4357
4357
  "url": {
4358
4358
  "type": "string",
4359
- "description": "Required. Immutable. Absolute URL where the document can be downloaded."
4359
+ "description": "Required. Immutable. Absolute URL where the document can be downloaded. The format\n'//eval-studio/documents/\u003cUUID\u003e' is used for documents uploaded to Eval Studio. It is the\nresponsibility of the client to convert this to a valid URL before downloading."
4360
4360
  }
4361
4361
  }
4362
4362
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: eval-studio-client
3
- Version: 0.7.0
3
+ Version: 0.8.0a2
4
4
  Project-URL: Source, https://github.com/h2oai/eval-studio/tree/main/client-py/src/
5
5
  Project-URL: Issues, https://github.com/h2oai/eval-studio/issues
6
6
  Author-email: "H2O.ai" <support@h2o.ai>
@@ -48,7 +48,7 @@ eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md,sha2
48
48
  eval_studio_client/api/docs/PerturbatorServiceApi.md,sha256=BK98N2f1oQObZekZos3Q67EVtC0Kd7zeRA7hsLV3HOQ,4418
49
49
  eval_studio_client/api/docs/ProtobufAny.md,sha256=sf40Vp58QzpEL9hnIoF28BRRgcFrB1NDJFCcQACv_zM,4608
50
50
  eval_studio_client/api/docs/RequiredTheDashboardToUpdate.md,sha256=FXIxIpNJwzY0XzT0O0dy_UYXhmozGqbtHSyhP1ZtGt8,2630
51
- eval_studio_client/api/docs/RequiredTheDocumentToUpdate.md,sha256=JsnoCKKeM6V-5hvl3g0VVpPROCQpHcEXUwvxASvBCAs,2244
51
+ eval_studio_client/api/docs/RequiredTheDocumentToUpdate.md,sha256=XIbspwsWmbf2sdPKxiPf9JWvmqgk6_wqrOHQgxX7WB4,2439
52
52
  eval_studio_client/api/docs/RequiredTheLeaderboardToUpdate.md,sha256=IMiTLoQX6VOLfjixxFk5RVPfuKfqpEIma9zDi_2UUQE,4054
53
53
  eval_studio_client/api/docs/RequiredTheModelToUpdate.md,sha256=XF5XwXkbjT0KgWyadQQFdelkGd_KrO2Ki_99Ed5fl1A,2560
54
54
  eval_studio_client/api/docs/RequiredTheOperationToFinalize.md,sha256=lS166DG5qL_Z-XqWzTs2nti7bhi7EbG2gfcv1-XYhEw,2440
@@ -110,7 +110,7 @@ eval_studio_client/api/docs/V1alphaDeleteLeaderboardResponse.md,sha256=orVUqQPHL
110
110
  eval_studio_client/api/docs/V1alphaDeleteModelResponse.md,sha256=OZaciscCAix2aApMHZMgaf8jYn4-5bnw_DBg6hhIGLo,1094
111
111
  eval_studio_client/api/docs/V1alphaDeleteTestCaseResponse.md,sha256=UzeZdRq8WZNzjdAv-AEYSknTTWsbRG8VBYUZDQbqJsI,1149
112
112
  eval_studio_client/api/docs/V1alphaDeleteTestResponse.md,sha256=AVnIm1Pt7fR_e76PVmlnduKJ2Uw0S6tQMuF7FAfEZ5g,1078
113
- eval_studio_client/api/docs/V1alphaDocument.md,sha256=NG293IqhwRmY1rEju_PI3oXlrY8ND0PRSld97EWN1eI,2014
113
+ eval_studio_client/api/docs/V1alphaDocument.md,sha256=T1oq0CaXXCUJEW3k1vTUmg22abevIUH3dS9KA4hhhEU,2209
114
114
  eval_studio_client/api/docs/V1alphaEvaluationTest.md,sha256=cWhLljR0dxMiQIJI_IMTwEF5tF7N31NmVk6tI-QtL48,1459
115
115
  eval_studio_client/api/docs/V1alphaEvaluator.md,sha256=S8jTi93AcJMkiqOjbQSDlwBR6bDdn5pSLFc3kSngxsU,2974
116
116
  eval_studio_client/api/docs/V1alphaEvaluatorParamType.md,sha256=3ryZ2ofgmeHEPFD-hHMAULpw8PlWaA85LYRG2DEuZPQ,618
@@ -186,7 +186,7 @@ eval_studio_client/api/models/__init__.py,sha256=tPXKAJB1Enr0itA9oY426xH5RKFmnwt
186
186
  eval_studio_client/api/models/perturbation_service_create_perturbation_request.py,sha256=Xy2EWb731DOiqcyQxSH77L0IZAukBD_JKojkWNmOqTc,5162
187
187
  eval_studio_client/api/models/protobuf_any.py,sha256=dq2ar0zZ3iwC1TOv10mOrXVqv42ioZvyLl3Lhso8eG0,6838
188
188
  eval_studio_client/api/models/required_the_dashboard_to_update.py,sha256=TrmUcybNG47ohOLSa8GkmcGt2H93RZfH8NhHK6dTQ8U,5844
189
- eval_studio_client/api/models/required_the_document_to_update.py,sha256=NTREESp1gAtWKn2sLfC3_9Z5NjMlo0mPrTCiYQzF144,4980
189
+ eval_studio_client/api/models/required_the_document_to_update.py,sha256=A3mTwwwsE9I4a5h9xAnjYL_ej0Aj3uY6ILLqI-DXm-c,5161
190
190
  eval_studio_client/api/models/required_the_leaderboard_to_update.py,sha256=tAt3fF7A0aCadXpjD0XSyV8azwF1yANqU4MVDkq-1cc,10046
191
191
  eval_studio_client/api/models/required_the_model_to_update.py,sha256=AWrACPrVBv0ntsOjpRP_zu7F9JJ346QHk62rcnfUfeM,5788
192
192
  eval_studio_client/api/models/required_the_operation_to_finalize.py,sha256=N7KtghSpNeLJPMvESq2xg0pW7AyeBTpJcr0ZtIa08gg,5811
@@ -244,7 +244,7 @@ eval_studio_client/api/models/v1alpha_delete_leaderboard_response.py,sha256=tvdp
244
244
  eval_studio_client/api/models/v1alpha_delete_model_response.py,sha256=t-Y2V2QsFcMc77zhWjhK2oqHRydsvCdOKFyt6-4-qNA,2877
245
245
  eval_studio_client/api/models/v1alpha_delete_test_case_response.py,sha256=cuG10WGMKmiCD0fwjShy-I5g1SFYxgJeUcwjGEPy2R8,2973
246
246
  eval_studio_client/api/models/v1alpha_delete_test_response.py,sha256=SsqSI51xILSe-nihMXbmrP0Mx7hDi5V2z9Hh8IV6xQk,2860
247
- eval_studio_client/api/models/v1alpha_document.py,sha256=GNDAAVGPhD0DRVpgvlttjswZHFt2TcXjuh6PxdkOeRQ,5009
247
+ eval_studio_client/api/models/v1alpha_document.py,sha256=kYbgdirfcI3dGe5vhRVwkBnemdspnpT4NZmUchgY3jE,5190
248
248
  eval_studio_client/api/models/v1alpha_evaluation_test.py,sha256=UnGEhm0BKjjWLI0qpMvfZpbWr1oXPdjvagCQzwzC-QU,4366
249
249
  eval_studio_client/api/models/v1alpha_evaluator.py,sha256=SsyjUpB7Vz4fWml1l-Km_RV3LkNP7vTNfbmXpXyZryI,7748
250
250
  eval_studio_client/api/models/v1alpha_evaluator_param_type.py,sha256=pBK5gfA5gFbE9zIfuIR9TrK6RxK3LxAfjjO3NpHPuhg,1509
@@ -464,7 +464,7 @@ eval_studio_client/api/test/test_v1alpha_update_test_case_response.py,sha256=RZE
464
464
  eval_studio_client/api/test/test_v1alpha_update_test_response.py,sha256=Udig_Weh5Rb5-AqmVb4US9pogSEsX_UsOl3gmqBSp04,2383
465
465
  eval_studio_client/api/test/test_v1alpha_who_am_i_response.py,sha256=sONqc41_lvPRnfiiLMaa0zZnQ5FBTeztWbTBnxcs0e8,1588
466
466
  eval_studio_client/api/test/test_who_am_i_service_api.py,sha256=Shjs7_WHWiJnMaLz54BNKrgYbeI6H7aQ3XsBkNPloig,903
467
- eval_studio_client/gen/openapiv2/eval_studio.swagger.json,sha256=kgTtliSzcVMdiT2W9RMQA1MhQRUM89wdWCp66krZ7C8,205807
468
- eval_studio_client-0.7.0.dist-info/METADATA,sha256=nSp-bg8qw-4oaZOKM0UUT6hHse8KGdcW-CNIlvojW3I,718
469
- eval_studio_client-0.7.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
470
- eval_studio_client-0.7.0.dist-info/RECORD,,
467
+ eval_studio_client/gen/openapiv2/eval_studio.swagger.json,sha256=VwYjFEjXT_c3LhqUltQHeklMoTeBHjG4QdnrQhvlh48,206193
468
+ eval_studio_client-0.8.0a2.dist-info/METADATA,sha256=pOtq7N1DIrIjNmrqqIvU7fwSnCI1H10HieMPS6P_AjY,720
469
+ eval_studio_client-0.8.0a2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
470
+ eval_studio_client-0.8.0a2.dist-info/RECORD,,