|
52 | 52 | )
|
53 | 53 | from .services.featurestore_service import FeaturestoreServiceClient
|
54 | 54 | from .services.featurestore_service import FeaturestoreServiceAsyncClient
|
| 55 | +from .services.gen_ai_tuning_service import GenAiTuningServiceClient |
| 56 | +from .services.gen_ai_tuning_service import GenAiTuningServiceAsyncClient |
55 | 57 | from .services.index_endpoint_service import IndexEndpointServiceClient
|
56 | 58 | from .services.index_endpoint_service import IndexEndpointServiceAsyncClient
|
57 | 59 | from .services.index_service import IndexServiceClient
|
|
454 | 456 | from .types.featurestore_service import UpdateFeatureRequest
|
455 | 457 | from .types.featurestore_service import UpdateFeaturestoreOperationMetadata
|
456 | 458 | from .types.featurestore_service import UpdateFeaturestoreRequest
|
| 459 | +from .types.genai_tuning_service import CancelTuningJobRequest |
| 460 | +from .types.genai_tuning_service import CreateTuningJobRequest |
| 461 | +from .types.genai_tuning_service import GetTuningJobRequest |
| 462 | +from .types.genai_tuning_service import ListTuningJobsRequest |
| 463 | +from .types.genai_tuning_service import ListTuningJobsResponse |
457 | 464 | from .types.hyperparameter_tuning_job import HyperparameterTuningJob
|
458 | 465 | from .types.index import Index
|
459 | 466 | from .types.index import IndexDatapoint
|
|
939 | 946 | from .types.training_pipeline import StratifiedSplit
|
940 | 947 | from .types.training_pipeline import TimestampSplit
|
941 | 948 | from .types.training_pipeline import TrainingPipeline
|
| 949 | +from .types.tuning_job import SupervisedHyperParameters |
| 950 | +from .types.tuning_job import SupervisedTuningDatasetDistribution |
| 951 | +from .types.tuning_job import SupervisedTuningDataStats |
| 952 | +from .types.tuning_job import SupervisedTuningSpec |
| 953 | +from .types.tuning_job import TunedModel |
| 954 | +from .types.tuning_job import TuningDataStats |
| 955 | +from .types.tuning_job import TuningJob |
942 | 956 | from .types.types import BoolArray
|
943 | 957 | from .types.types import DoubleArray
|
944 | 958 | from .types.types import Int64Array
|
|
1006 | 1020 | "FeatureRegistryServiceAsyncClient",
|
1007 | 1021 | "FeaturestoreOnlineServingServiceAsyncClient",
|
1008 | 1022 | "FeaturestoreServiceAsyncClient",
|
| 1023 | + "GenAiTuningServiceAsyncClient", |
1009 | 1024 | "IndexEndpointServiceAsyncClient",
|
1010 | 1025 | "IndexServiceAsyncClient",
|
1011 | 1026 | "JobServiceAsyncClient",
|
|
1091 | 1106 | "CancelNasJobRequest",
|
1092 | 1107 | "CancelPipelineJobRequest",
|
1093 | 1108 | "CancelTrainingPipelineRequest",
|
| 1109 | + "CancelTuningJobRequest", |
1094 | 1110 | "Candidate",
|
1095 | 1111 | "CheckTrialEarlyStoppingStateMetatdata",
|
1096 | 1112 | "CheckTrialEarlyStoppingStateRequest",
|
|
1175 | 1191 | "CreateTensorboardTimeSeriesRequest",
|
1176 | 1192 | "CreateTrainingPipelineRequest",
|
1177 | 1193 | "CreateTrialRequest",
|
| 1194 | + "CreateTuningJobRequest", |
1178 | 1195 | "CsvDestination",
|
1179 | 1196 | "CsvSource",
|
1180 | 1197 | "CustomJob",
|
|
1349 | 1366 | "FunctionResponse",
|
1350 | 1367 | "GcsDestination",
|
1351 | 1368 | "GcsSource",
|
| 1369 | + "GenAiTuningServiceClient", |
1352 | 1370 | "GenerateContentRequest",
|
1353 | 1371 | "GenerateContentResponse",
|
1354 | 1372 | "GenerationConfig",
|
|
1404 | 1422 | "GetTensorboardTimeSeriesRequest",
|
1405 | 1423 | "GetTrainingPipelineRequest",
|
1406 | 1424 | "GetTrialRequest",
|
| 1425 | + "GetTuningJobRequest", |
1407 | 1426 | "GoogleDriveSource",
|
1408 | 1427 | "GoogleSearchRetrieval",
|
1409 | 1428 | "GroundednessInput",
|
|
1552 | 1571 | "ListTrainingPipelinesResponse",
|
1553 | 1572 | "ListTrialsRequest",
|
1554 | 1573 | "ListTrialsResponse",
|
| 1574 | + "ListTuningJobsRequest", |
| 1575 | + "ListTuningJobsResponse", |
1555 | 1576 | "LlmUtilityServiceClient",
|
1556 | 1577 | "LookupStudyRequest",
|
1557 | 1578 | "MachineSpec",
|
|
1817 | 1838 | "SummarizationVerbosityInstance",
|
1818 | 1839 | "SummarizationVerbosityResult",
|
1819 | 1840 | "SummarizationVerbositySpec",
|
| 1841 | + "SupervisedHyperParameters", |
| 1842 | + "SupervisedTuningDataStats", |
| 1843 | + "SupervisedTuningDatasetDistribution", |
| 1844 | + "SupervisedTuningSpec", |
1820 | 1845 | "SyncFeatureViewRequest",
|
1821 | 1846 | "SyncFeatureViewResponse",
|
1822 | 1847 | "TFRecordDestination",
|
|
1861 | 1886 | "TrainingPipeline",
|
1862 | 1887 | "Trial",
|
1863 | 1888 | "TrialContext",
|
| 1889 | + "TunedModel", |
| 1890 | + "TuningDataStats", |
| 1891 | + "TuningJob", |
1864 | 1892 | "Type",
|
1865 | 1893 | "UndeployIndexOperationMetadata",
|
1866 | 1894 | "UndeployIndexRequest",
|
|
0 commit comments