|
30 | 30 | from .services.endpoint_service import EndpointServiceAsyncClient
|
31 | 31 | from .services.evaluation_service import EvaluationServiceClient
|
32 | 32 | from .services.evaluation_service import EvaluationServiceAsyncClient
|
| 33 | +from .services.example_store_service import ExampleStoreServiceClient |
| 34 | +from .services.example_store_service import ExampleStoreServiceAsyncClient |
33 | 35 | from .services.extension_execution_service import ExtensionExecutionServiceClient
|
34 | 36 | from .services.extension_execution_service import ExtensionExecutionServiceAsyncClient
|
35 | 37 | from .services.extension_registry_service import ExtensionRegistryServiceClient
|
|
94 | 96 | from .services.reasoning_engine_service import ReasoningEngineServiceAsyncClient
|
95 | 97 | from .services.schedule_service import ScheduleServiceClient
|
96 | 98 | from .services.schedule_service import ScheduleServiceAsyncClient
|
| 99 | +from .services.session_service import SessionServiceClient |
| 100 | +from .services.session_service import SessionServiceAsyncClient |
97 | 101 | from .services.specialist_pool_service import SpecialistPoolServiceClient
|
98 | 102 | from .services.specialist_pool_service import SpecialistPoolServiceAsyncClient
|
99 | 103 | from .services.tensorboard_service import TensorboardServiceClient
|
|
259 | 263 | from .types.evaluation_service import CometInstance
|
260 | 264 | from .types.evaluation_service import CometResult
|
261 | 265 | from .types.evaluation_service import CometSpec
|
| 266 | +from .types.evaluation_service import ContentMap |
| 267 | +from .types.evaluation_service import CustomOutput |
| 268 | +from .types.evaluation_service import CustomOutputFormatConfig |
262 | 269 | from .types.evaluation_service import EvaluateDatasetOperationMetadata
|
263 | 270 | from .types.evaluation_service import EvaluateDatasetRequest
|
264 | 271 | from .types.evaluation_service import EvaluateDatasetResponse
|
|
321 | 328 | from .types.evaluation_service import QuestionAnsweringRelevanceInstance
|
322 | 329 | from .types.evaluation_service import QuestionAnsweringRelevanceResult
|
323 | 330 | from .types.evaluation_service import QuestionAnsweringRelevanceSpec
|
| 331 | +from .types.evaluation_service import RawOutput |
324 | 332 | from .types.evaluation_service import RougeInput
|
325 | 333 | from .types.evaluation_service import RougeInstance
|
326 | 334 | from .types.evaluation_service import RougeMetricValue
|
327 | 335 | from .types.evaluation_service import RougeResults
|
328 | 336 | from .types.evaluation_service import RougeSpec
|
| 337 | +from .types.evaluation_service import RubricBasedInstructionFollowingInput |
| 338 | +from .types.evaluation_service import RubricBasedInstructionFollowingInstance |
| 339 | +from .types.evaluation_service import RubricBasedInstructionFollowingResult |
| 340 | +from .types.evaluation_service import RubricBasedInstructionFollowingSpec |
| 341 | +from .types.evaluation_service import RubricCritiqueResult |
329 | 342 | from .types.evaluation_service import SafetyInput
|
330 | 343 | from .types.evaluation_service import SafetyInstance
|
331 | 344 | from .types.evaluation_service import SafetyResult
|
|
396 | 409 | from .types.evaluation_service import TrajectorySingleToolUseSpec
|
397 | 410 | from .types.evaluation_service import PairwiseChoice
|
398 | 411 | from .types.event import Event
|
| 412 | +from .types.example import ContentsExample |
| 413 | +from .types.example import StoredContentsExample |
| 414 | +from .types.example_store import ExamplesArrayFilter |
| 415 | +from .types.example_store import ExampleStore |
| 416 | +from .types.example_store import ExampleStoreConfig |
| 417 | +from .types.example_store import StoredContentsExampleFilter |
| 418 | +from .types.example_store import StoredContentsExampleParameters |
| 419 | +from .types.example_store_service import CreateExampleStoreOperationMetadata |
| 420 | +from .types.example_store_service import CreateExampleStoreRequest |
| 421 | +from .types.example_store_service import DeleteExampleStoreOperationMetadata |
| 422 | +from .types.example_store_service import DeleteExampleStoreRequest |
| 423 | +from .types.example_store_service import Example |
| 424 | +from .types.example_store_service import FetchExamplesRequest |
| 425 | +from .types.example_store_service import FetchExamplesResponse |
| 426 | +from .types.example_store_service import GetExampleStoreRequest |
| 427 | +from .types.example_store_service import ListExampleStoresRequest |
| 428 | +from .types.example_store_service import ListExampleStoresResponse |
| 429 | +from .types.example_store_service import RemoveExamplesRequest |
| 430 | +from .types.example_store_service import RemoveExamplesResponse |
| 431 | +from .types.example_store_service import SearchExamplesRequest |
| 432 | +from .types.example_store_service import SearchExamplesResponse |
| 433 | +from .types.example_store_service import UpdateExampleStoreOperationMetadata |
| 434 | +from .types.example_store_service import UpdateExampleStoreRequest |
| 435 | +from .types.example_store_service import UpsertExamplesRequest |
| 436 | +from .types.example_store_service import UpsertExamplesResponse |
399 | 437 | from .types.execution import Execution
|
400 | 438 | from .types.explanation import Attribution
|
401 | 439 | from .types.explanation import BlurBaselineConfig
|
|
1004 | 1042 | from .types.service_networking import PscAutomatedEndpoints
|
1005 | 1043 | from .types.service_networking import PSCAutomationConfig
|
1006 | 1044 | from .types.service_networking import PscInterfaceConfig
|
| 1045 | +from .types.session import EventActions |
| 1046 | +from .types.session import EventMetadata |
| 1047 | +from .types.session import Session |
| 1048 | +from .types.session import SessionEvent |
| 1049 | +from .types.session_service import AppendEventRequest |
| 1050 | +from .types.session_service import AppendEventResponse |
| 1051 | +from .types.session_service import CreateSessionOperationMetadata |
| 1052 | +from .types.session_service import CreateSessionRequest |
| 1053 | +from .types.session_service import DeleteSessionRequest |
| 1054 | +from .types.session_service import GetSessionRequest |
| 1055 | +from .types.session_service import ListEventsRequest |
| 1056 | +from .types.session_service import ListEventsResponse |
| 1057 | +from .types.session_service import ListSessionsRequest |
| 1058 | +from .types.session_service import ListSessionsResponse |
| 1059 | +from .types.session_service import UpdateSessionRequest |
1007 | 1060 | from .types.specialist_pool import SpecialistPool
|
1008 | 1061 | from .types.specialist_pool_service import CreateSpecialistPoolOperationMetadata
|
1009 | 1062 | from .types.specialist_pool_service import CreateSpecialistPoolRequest
|
|
1190 | 1243 | "DeploymentResourcePoolServiceAsyncClient",
|
1191 | 1244 | "EndpointServiceAsyncClient",
|
1192 | 1245 | "EvaluationServiceAsyncClient",
|
| 1246 | + "ExampleStoreServiceAsyncClient", |
1193 | 1247 | "ExtensionExecutionServiceAsyncClient",
|
1194 | 1248 | "ExtensionRegistryServiceAsyncClient",
|
1195 | 1249 | "FeatureOnlineStoreAdminServiceAsyncClient",
|
|
1216 | 1270 | "ReasoningEngineExecutionServiceAsyncClient",
|
1217 | 1271 | "ReasoningEngineServiceAsyncClient",
|
1218 | 1272 | "ScheduleServiceAsyncClient",
|
| 1273 | + "SessionServiceAsyncClient", |
1219 | 1274 | "SpecialistPoolServiceAsyncClient",
|
1220 | 1275 | "TensorboardServiceAsyncClient",
|
1221 | 1276 | "VertexRagDataServiceAsyncClient",
|
|
1233 | 1288 | "Annotation",
|
1234 | 1289 | "AnnotationSpec",
|
1235 | 1290 | "ApiAuth",
|
| 1291 | + "AppendEventRequest", |
| 1292 | + "AppendEventResponse", |
1236 | 1293 | "Artifact",
|
1237 | 1294 | "ArtifactTypeSchema",
|
1238 | 1295 | "AssembleDataOperationMetadata",
|
|
1322 | 1379 | "ContainerRegistryDestination",
|
1323 | 1380 | "ContainerSpec",
|
1324 | 1381 | "Content",
|
| 1382 | + "ContentMap", |
| 1383 | + "ContentsExample", |
1325 | 1384 | "Context",
|
1326 | 1385 | "CopyModelOperationMetadata",
|
1327 | 1386 | "CopyModelRequest",
|
|
1347 | 1406 | "CreateEndpointRequest",
|
1348 | 1407 | "CreateEntityTypeOperationMetadata",
|
1349 | 1408 | "CreateEntityTypeRequest",
|
| 1409 | + "CreateExampleStoreOperationMetadata", |
| 1410 | + "CreateExampleStoreRequest", |
1350 | 1411 | "CreateExecutionRequest",
|
1351 | 1412 | "CreateFeatureGroupOperationMetadata",
|
1352 | 1413 | "CreateFeatureGroupRequest",
|
|
1387 | 1448 | "CreateReasoningEngineRequest",
|
1388 | 1449 | "CreateRegistryFeatureOperationMetadata",
|
1389 | 1450 | "CreateScheduleRequest",
|
| 1451 | + "CreateSessionOperationMetadata", |
| 1452 | + "CreateSessionRequest", |
1390 | 1453 | "CreateSpecialistPoolOperationMetadata",
|
1391 | 1454 | "CreateSpecialistPoolRequest",
|
1392 | 1455 | "CreateStudyRequest",
|
|
1402 | 1465 | "CsvSource",
|
1403 | 1466 | "CustomJob",
|
1404 | 1467 | "CustomJobSpec",
|
| 1468 | + "CustomOutput", |
| 1469 | + "CustomOutputFormatConfig", |
1405 | 1470 | "DataItem",
|
1406 | 1471 | "DataItemView",
|
1407 | 1472 | "DataLabelingJob",
|
|
1422 | 1487 | "DeleteDeploymentResourcePoolRequest",
|
1423 | 1488 | "DeleteEndpointRequest",
|
1424 | 1489 | "DeleteEntityTypeRequest",
|
| 1490 | + "DeleteExampleStoreOperationMetadata", |
| 1491 | + "DeleteExampleStoreRequest", |
1425 | 1492 | "DeleteExecutionRequest",
|
1426 | 1493 | "DeleteExtensionRequest",
|
1427 | 1494 | "DeleteFeatureGroupRequest",
|
|
1455 | 1522 | "DeleteReasoningEngineRequest",
|
1456 | 1523 | "DeleteSavedQueryRequest",
|
1457 | 1524 | "DeleteScheduleRequest",
|
| 1525 | + "DeleteSessionRequest", |
1458 | 1526 | "DeleteSpecialistPoolRequest",
|
1459 | 1527 | "DeleteStudyRequest",
|
1460 | 1528 | "DeleteTensorboardExperimentRequest",
|
|
1512 | 1580 | "EvaluationDataset",
|
1513 | 1581 | "EvaluationServiceClient",
|
1514 | 1582 | "Event",
|
| 1583 | + "EventActions", |
| 1584 | + "EventMetadata", |
1515 | 1585 | "ExactMatchInput",
|
1516 | 1586 | "ExactMatchInstance",
|
1517 | 1587 | "ExactMatchMetricValue",
|
1518 | 1588 | "ExactMatchResults",
|
1519 | 1589 | "ExactMatchSpec",
|
| 1590 | + "Example", |
| 1591 | + "ExampleStore", |
| 1592 | + "ExampleStoreConfig", |
| 1593 | + "ExampleStoreServiceClient", |
1520 | 1594 | "Examples",
|
| 1595 | + "ExamplesArrayFilter", |
1521 | 1596 | "ExamplesOverride",
|
1522 | 1597 | "ExamplesRestrictionsNamespace",
|
1523 | 1598 | "ExecutableCode",
|
|
1581 | 1656 | "FeaturestoreMonitoringConfig",
|
1582 | 1657 | "FeaturestoreOnlineServingServiceClient",
|
1583 | 1658 | "FeaturestoreServiceClient",
|
| 1659 | + "FetchExamplesRequest", |
| 1660 | + "FetchExamplesResponse", |
1584 | 1661 | "FetchFeatureValuesRequest",
|
1585 | 1662 | "FetchFeatureValuesResponse",
|
1586 | 1663 | "FileData",
|
|
1625 | 1702 | "GetDeploymentResourcePoolRequest",
|
1626 | 1703 | "GetEndpointRequest",
|
1627 | 1704 | "GetEntityTypeRequest",
|
| 1705 | + "GetExampleStoreRequest", |
1628 | 1706 | "GetExecutionRequest",
|
1629 | 1707 | "GetExtensionRequest",
|
1630 | 1708 | "GetFeatureGroupRequest",
|
|
1658 | 1736 | "GetRagFileRequest",
|
1659 | 1737 | "GetReasoningEngineRequest",
|
1660 | 1738 | "GetScheduleRequest",
|
| 1739 | + "GetSessionRequest", |
1661 | 1740 | "GetSpecialistPoolRequest",
|
1662 | 1741 | "GetStudyRequest",
|
1663 | 1742 | "GetTensorboardExperimentRequest",
|
|
1735 | 1814 | "ListEndpointsResponse",
|
1736 | 1815 | "ListEntityTypesRequest",
|
1737 | 1816 | "ListEntityTypesResponse",
|
| 1817 | + "ListEventsRequest", |
| 1818 | + "ListEventsResponse", |
| 1819 | + "ListExampleStoresRequest", |
| 1820 | + "ListExampleStoresResponse", |
1738 | 1821 | "ListExecutionsRequest",
|
1739 | 1822 | "ListExecutionsResponse",
|
1740 | 1823 | "ListExtensionsRequest",
|
|
1809 | 1892 | "ListSavedQueriesResponse",
|
1810 | 1893 | "ListSchedulesRequest",
|
1811 | 1894 | "ListSchedulesResponse",
|
| 1895 | + "ListSessionsRequest", |
| 1896 | + "ListSessionsResponse", |
1812 | 1897 | "ListSpecialistPoolsRequest",
|
1813 | 1898 | "ListSpecialistPoolsResponse",
|
1814 | 1899 | "ListStudiesRequest",
|
|
2011 | 2096 | "RagQuery",
|
2012 | 2097 | "RagRetrievalConfig",
|
2013 | 2098 | "RagVectorDbConfig",
|
| 2099 | + "RawOutput", |
2014 | 2100 | "RawPredictRequest",
|
2015 | 2101 | "RayLogsSpec",
|
2016 | 2102 | "RayMetricSpec",
|
|
2039 | 2125 | "RemoveContextChildrenResponse",
|
2040 | 2126 | "RemoveDatapointsRequest",
|
2041 | 2127 | "RemoveDatapointsResponse",
|
| 2128 | + "RemoveExamplesRequest", |
| 2129 | + "RemoveExamplesResponse", |
2042 | 2130 | "ReservationAffinity",
|
2043 | 2131 | "ResourcePool",
|
2044 | 2132 | "ResourceRuntime",
|
|
2059 | 2147 | "RougeMetricValue",
|
2060 | 2148 | "RougeResults",
|
2061 | 2149 | "RougeSpec",
|
| 2150 | + "RubricBasedInstructionFollowingInput", |
| 2151 | + "RubricBasedInstructionFollowingInstance", |
| 2152 | + "RubricBasedInstructionFollowingResult", |
| 2153 | + "RubricBasedInstructionFollowingSpec", |
| 2154 | + "RubricCritiqueResult", |
2062 | 2155 | "RuntimeArtifact",
|
2063 | 2156 | "RuntimeConfig",
|
2064 | 2157 | "SafetyInput",
|
|
2080 | 2173 | "SearchDataItemsRequest",
|
2081 | 2174 | "SearchDataItemsResponse",
|
2082 | 2175 | "SearchEntryPoint",
|
| 2176 | + "SearchExamplesRequest", |
| 2177 | + "SearchExamplesResponse", |
2083 | 2178 | "SearchFeaturesRequest",
|
2084 | 2179 | "SearchFeaturesResponse",
|
2085 | 2180 | "SearchMigratableResourcesRequest",
|
|
2097 | 2192 | "SecretRef",
|
2098 | 2193 | "Segment",
|
2099 | 2194 | "ServiceAccountSpec",
|
| 2195 | + "Session", |
| 2196 | + "SessionEvent", |
| 2197 | + "SessionServiceClient", |
2100 | 2198 | "SharePointSources",
|
2101 | 2199 | "ShieldedVmConfig",
|
2102 | 2200 | "SlackSource",
|
|
2111 | 2209 | "StopNotebookRuntimeRequest",
|
2112 | 2210 | "StopNotebookRuntimeResponse",
|
2113 | 2211 | "StopTrialRequest",
|
| 2212 | + "StoredContentsExample", |
| 2213 | + "StoredContentsExampleFilter", |
| 2214 | + "StoredContentsExampleParameters", |
2114 | 2215 | "StratifiedSplit",
|
2115 | 2216 | "StreamDirectPredictRequest",
|
2116 | 2217 | "StreamDirectPredictResponse",
|
|
2249 | 2350 | "UpdateEndpointOperationMetadata",
|
2250 | 2351 | "UpdateEndpointRequest",
|
2251 | 2352 | "UpdateEntityTypeRequest",
|
| 2353 | + "UpdateExampleStoreOperationMetadata", |
| 2354 | + "UpdateExampleStoreRequest", |
2252 | 2355 | "UpdateExecutionRequest",
|
2253 | 2356 | "UpdateExplanationDatasetOperationMetadata",
|
2254 | 2357 | "UpdateExplanationDatasetRequest",
|
|
2282 | 2385 | "UpdateReasoningEngineOperationMetadata",
|
2283 | 2386 | "UpdateReasoningEngineRequest",
|
2284 | 2387 | "UpdateScheduleRequest",
|
| 2388 | + "UpdateSessionRequest", |
2285 | 2389 | "UpdateSpecialistPoolOperationMetadata",
|
2286 | 2390 | "UpdateSpecialistPoolRequest",
|
2287 | 2391 | "UpdateTensorboardExperimentRequest",
|
|
2300 | 2404 | "UploadRagFileResponse",
|
2301 | 2405 | "UpsertDatapointsRequest",
|
2302 | 2406 | "UpsertDatapointsResponse",
|
| 2407 | + "UpsertExamplesRequest", |
| 2408 | + "UpsertExamplesResponse", |
2303 | 2409 | "UserActionReference",
|
2304 | 2410 | "Value",
|
2305 | 2411 | "VertexAISearch",
|
|
0 commit comments