JSPM

  • Created
  • Published
  • Downloads 101022
  • Score
    100M100P100Q169875F
  • License Apache-2.0

Vertex AI client for Node.js

Package Exports

  • @google-cloud/aiplatform
  • @google-cloud/aiplatform/build/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@google-cloud/aiplatform) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Google Cloud Platform logo

Vertex AI: Node.js Client

release level npm version

Vertex AI client for Node.js

A comprehensive list of changes in each version may be found in the CHANGELOG.

Read more about the client libraries for Cloud APIs, including the older Google APIs Client Libraries, in Client Libraries Explained.

Table of contents:

Quickstart

Before you begin

  1. Select or create a Cloud Platform project.
  2. Enable billing for your project.
  3. Enable the Vertex AI API.
  4. Set up authentication so you can access the API from your local workstation.

Installing the client library

npm install @google-cloud/aiplatform

Using the client library

/**
 * TODO(developer): Uncomment these variables before running the sample.
 */
// const projectId = 'YOUR_PROJECT_ID';
// const location = 'YOUR_PROJECT_LOCATION';

const {EndpointServiceClient} = require('@google-cloud/aiplatform');

// Specifies the location of the api endpoint
const clientOptions = {
  apiEndpoint: 'us-central1-aiplatform.googleapis.com',
};
const client = new EndpointServiceClient(clientOptions);

async function listEndpoints() {
  // Configure the parent resource
  const parent = `projects/${projectId}/locations/${location}`;
  const request = {
    parent,
  };

  // Get and print out a list of all the endpoints for this resource
  const [result] = await client.listEndpoints(request);
  for (const endpoint of result) {
    console.log(`\nEndpoint name: ${endpoint.name}`);
    console.log(`Display name: ${endpoint.displayName}`);
    if (endpoint.deployedModels[0]) {
      console.log(
        `First deployed model: ${endpoint.deployedModels[0].model}`
      );
    }
  }
}
listEndpoints();

Samples

Samples are in the samples/ directory. Each sample's README.md has instructions for running its sample.

Sample Source Code Try it
Dataset_service.create_dataset source code Open in Cloud Shell
Dataset_service.create_dataset_version source code Open in Cloud Shell
Dataset_service.delete_dataset source code Open in Cloud Shell
Dataset_service.delete_dataset_version source code Open in Cloud Shell
Dataset_service.delete_saved_query source code Open in Cloud Shell
Dataset_service.export_data source code Open in Cloud Shell
Dataset_service.get_annotation_spec source code Open in Cloud Shell
Dataset_service.get_dataset source code Open in Cloud Shell
Dataset_service.get_dataset_version source code Open in Cloud Shell
Dataset_service.import_data source code Open in Cloud Shell
Dataset_service.list_annotations source code Open in Cloud Shell
Dataset_service.list_data_items source code Open in Cloud Shell
Dataset_service.list_dataset_versions source code Open in Cloud Shell
Dataset_service.list_datasets source code Open in Cloud Shell
Dataset_service.list_saved_queries source code Open in Cloud Shell
Dataset_service.restore_dataset_version source code Open in Cloud Shell
Dataset_service.search_data_items source code Open in Cloud Shell
Dataset_service.update_dataset source code Open in Cloud Shell
Dataset_service.update_dataset_version source code Open in Cloud Shell
Deployment_resource_pool_service.create_deployment_resource_pool source code Open in Cloud Shell
Deployment_resource_pool_service.delete_deployment_resource_pool source code Open in Cloud Shell
Deployment_resource_pool_service.get_deployment_resource_pool source code Open in Cloud Shell
Deployment_resource_pool_service.list_deployment_resource_pools source code Open in Cloud Shell
Deployment_resource_pool_service.query_deployed_models source code Open in Cloud Shell
Deployment_resource_pool_service.update_deployment_resource_pool source code Open in Cloud Shell
Endpoint_service.create_endpoint source code Open in Cloud Shell
Endpoint_service.delete_endpoint source code Open in Cloud Shell
Endpoint_service.deploy_model source code Open in Cloud Shell
Endpoint_service.get_endpoint source code Open in Cloud Shell
Endpoint_service.list_endpoints source code Open in Cloud Shell
Endpoint_service.mutate_deployed_model source code Open in Cloud Shell
Endpoint_service.undeploy_model source code Open in Cloud Shell
Endpoint_service.update_endpoint source code Open in Cloud Shell
Endpoint_service.update_endpoint_long_running source code Open in Cloud Shell
Evaluation_service.evaluate_instances source code Open in Cloud Shell
Feature_online_store_admin_service.create_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.create_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.delete_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.delete_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.get_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.get_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.get_feature_view_sync source code Open in Cloud Shell
Feature_online_store_admin_service.list_feature_online_stores source code Open in Cloud Shell
Feature_online_store_admin_service.list_feature_view_syncs source code Open in Cloud Shell
Feature_online_store_admin_service.list_feature_views source code Open in Cloud Shell
Feature_online_store_admin_service.sync_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.update_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.update_feature_view source code Open in Cloud Shell
Feature_online_store_service.fetch_feature_values source code Open in Cloud Shell
Feature_online_store_service.search_nearest_entities source code Open in Cloud Shell
Feature_registry_service.batch_create_features source code Open in Cloud Shell
Feature_registry_service.create_feature source code Open in Cloud Shell
Feature_registry_service.create_feature_group source code Open in Cloud Shell
Feature_registry_service.delete_feature source code Open in Cloud Shell
Feature_registry_service.delete_feature_group source code Open in Cloud Shell
Feature_registry_service.get_feature source code Open in Cloud Shell
Feature_registry_service.get_feature_group source code Open in Cloud Shell
Feature_registry_service.list_feature_groups source code Open in Cloud Shell
Feature_registry_service.list_features source code Open in Cloud Shell
Feature_registry_service.update_feature source code Open in Cloud Shell
Feature_registry_service.update_feature_group source code Open in Cloud Shell
Featurestore_online_serving_service.read_feature_values source code Open in Cloud Shell
Featurestore_online_serving_service.streaming_read_feature_values source code Open in Cloud Shell
Featurestore_online_serving_service.write_feature_values source code Open in Cloud Shell
Featurestore_service.batch_create_features source code Open in Cloud Shell
Featurestore_service.batch_read_feature_values source code Open in Cloud Shell
Featurestore_service.create_entity_type source code Open in Cloud Shell
Featurestore_service.create_feature source code Open in Cloud Shell
Featurestore_service.create_featurestore source code Open in Cloud Shell
Featurestore_service.delete_entity_type source code Open in Cloud Shell
Featurestore_service.delete_feature source code Open in Cloud Shell
Featurestore_service.delete_feature_values source code Open in Cloud Shell
Featurestore_service.delete_featurestore source code Open in Cloud Shell
Featurestore_service.export_feature_values source code Open in Cloud Shell
Featurestore_service.get_entity_type source code Open in Cloud Shell
Featurestore_service.get_feature source code Open in Cloud Shell
Featurestore_service.get_featurestore source code Open in Cloud Shell
Featurestore_service.import_feature_values source code Open in Cloud Shell
Featurestore_service.list_entity_types source code Open in Cloud Shell
Featurestore_service.list_features source code Open in Cloud Shell
Featurestore_service.list_featurestores source code Open in Cloud Shell
Featurestore_service.search_features source code Open in Cloud Shell
Featurestore_service.update_entity_type source code Open in Cloud Shell
Featurestore_service.update_feature source code Open in Cloud Shell
Featurestore_service.update_featurestore source code Open in Cloud Shell
Gen_ai_cache_service.create_cached_content source code Open in Cloud Shell
Gen_ai_cache_service.delete_cached_content source code Open in Cloud Shell
Gen_ai_cache_service.get_cached_content source code Open in Cloud Shell
Gen_ai_cache_service.list_cached_contents source code Open in Cloud Shell
Gen_ai_cache_service.update_cached_content source code Open in Cloud Shell
Gen_ai_tuning_service.cancel_tuning_job source code Open in Cloud Shell
Gen_ai_tuning_service.create_tuning_job source code Open in Cloud Shell
Gen_ai_tuning_service.get_tuning_job source code Open in Cloud Shell
Gen_ai_tuning_service.list_tuning_jobs source code Open in Cloud Shell
Gen_ai_tuning_service.rebase_tuned_model source code Open in Cloud Shell
Index_endpoint_service.create_index_endpoint source code Open in Cloud Shell
Index_endpoint_service.delete_index_endpoint source code Open in Cloud Shell
Index_endpoint_service.deploy_index source code Open in Cloud Shell
Index_endpoint_service.get_index_endpoint source code Open in Cloud Shell
Index_endpoint_service.list_index_endpoints source code Open in Cloud Shell
Index_endpoint_service.mutate_deployed_index source code Open in Cloud Shell
Index_endpoint_service.undeploy_index source code Open in Cloud Shell
Index_endpoint_service.update_index_endpoint source code Open in Cloud Shell
Index_service.create_index source code Open in Cloud Shell
Index_service.delete_index source code Open in Cloud Shell
Index_service.get_index source code Open in Cloud Shell
Index_service.list_indexes source code Open in Cloud Shell
Index_service.remove_datapoints source code Open in Cloud Shell
Index_service.update_index source code Open in Cloud Shell
Index_service.upsert_datapoints source code Open in Cloud Shell
Job_service.cancel_batch_prediction_job source code Open in Cloud Shell
Job_service.cancel_custom_job source code Open in Cloud Shell
Job_service.cancel_data_labeling_job source code Open in Cloud Shell
Job_service.cancel_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.cancel_nas_job source code Open in Cloud Shell
Job_service.create_batch_prediction_job source code Open in Cloud Shell
Job_service.create_custom_job source code Open in Cloud Shell
Job_service.create_data_labeling_job source code Open in Cloud Shell
Job_service.create_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.create_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.create_nas_job source code Open in Cloud Shell
Job_service.delete_batch_prediction_job source code Open in Cloud Shell
Job_service.delete_custom_job source code Open in Cloud Shell
Job_service.delete_data_labeling_job source code Open in Cloud Shell
Job_service.delete_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.delete_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.delete_nas_job source code Open in Cloud Shell
Job_service.get_batch_prediction_job source code Open in Cloud Shell
Job_service.get_custom_job source code Open in Cloud Shell
Job_service.get_data_labeling_job source code Open in Cloud Shell
Job_service.get_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.get_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.get_nas_job source code Open in Cloud Shell
Job_service.get_nas_trial_detail source code Open in Cloud Shell
Job_service.list_batch_prediction_jobs source code Open in Cloud Shell
Job_service.list_custom_jobs source code Open in Cloud Shell
Job_service.list_data_labeling_jobs source code Open in Cloud Shell
Job_service.list_hyperparameter_tuning_jobs source code Open in Cloud Shell
Job_service.list_model_deployment_monitoring_jobs source code Open in Cloud Shell
Job_service.list_nas_jobs source code Open in Cloud Shell
Job_service.list_nas_trial_details source code Open in Cloud Shell
Job_service.pause_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.resume_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.search_model_deployment_monitoring_stats_anomalies source code Open in Cloud Shell
Job_service.update_model_deployment_monitoring_job source code Open in Cloud Shell
Llm_utility_service.compute_tokens source code Open in Cloud Shell
Llm_utility_service.count_tokens source code Open in Cloud Shell
Match_service.find_neighbors source code Open in Cloud Shell
Match_service.read_index_datapoints source code Open in Cloud Shell
Metadata_service.add_context_artifacts_and_executions source code Open in Cloud Shell
Metadata_service.add_context_children source code Open in Cloud Shell
Metadata_service.add_execution_events source code Open in Cloud Shell
Metadata_service.create_artifact source code Open in Cloud Shell
Metadata_service.create_context source code Open in Cloud Shell
Metadata_service.create_execution source code Open in Cloud Shell
Metadata_service.create_metadata_schema source code Open in Cloud Shell
Metadata_service.create_metadata_store source code Open in Cloud Shell
Metadata_service.delete_artifact source code Open in Cloud Shell
Metadata_service.delete_context source code Open in Cloud Shell
Metadata_service.delete_execution source code Open in Cloud Shell
Metadata_service.delete_metadata_store source code Open in Cloud Shell
Metadata_service.get_artifact source code Open in Cloud Shell
Metadata_service.get_context source code Open in Cloud Shell
Metadata_service.get_execution source code Open in Cloud Shell
Metadata_service.get_metadata_schema source code Open in Cloud Shell
Metadata_service.get_metadata_store source code Open in Cloud Shell
Metadata_service.list_artifacts source code Open in Cloud Shell
Metadata_service.list_contexts source code Open in Cloud Shell
Metadata_service.list_executions source code Open in Cloud Shell
Metadata_service.list_metadata_schemas source code Open in Cloud Shell
Metadata_service.list_metadata_stores source code Open in Cloud Shell
Metadata_service.purge_artifacts source code Open in Cloud Shell
Metadata_service.purge_contexts source code Open in Cloud Shell
Metadata_service.purge_executions source code Open in Cloud Shell
Metadata_service.query_artifact_lineage_subgraph source code Open in Cloud Shell
Metadata_service.query_context_lineage_subgraph source code Open in Cloud Shell
Metadata_service.query_execution_inputs_and_outputs source code Open in Cloud Shell
Metadata_service.remove_context_children source code Open in Cloud Shell
Metadata_service.update_artifact source code Open in Cloud Shell
Metadata_service.update_context source code Open in Cloud Shell
Metadata_service.update_execution source code Open in Cloud Shell
Migration_service.batch_migrate_resources source code Open in Cloud Shell
Migration_service.search_migratable_resources source code Open in Cloud Shell
Model_garden_service.get_publisher_model source code Open in Cloud Shell
Model_service.batch_import_evaluated_annotations source code Open in Cloud Shell
Model_service.batch_import_model_evaluation_slices source code Open in Cloud Shell
Model_service.copy_model source code Open in Cloud Shell
Model_service.delete_model source code Open in Cloud Shell
Model_service.delete_model_version source code Open in Cloud Shell
Model_service.export_model source code Open in Cloud Shell
Model_service.get_model source code Open in Cloud Shell
Model_service.get_model_evaluation source code Open in Cloud Shell
Model_service.get_model_evaluation_slice source code Open in Cloud Shell
Model_service.import_model_evaluation source code Open in Cloud Shell
Model_service.list_model_evaluation_slices source code Open in Cloud Shell
Model_service.list_model_evaluations source code Open in Cloud Shell
Model_service.list_model_version_checkpoints source code Open in Cloud Shell
Model_service.list_model_versions source code Open in Cloud Shell
Model_service.list_models source code Open in Cloud Shell
Model_service.merge_version_aliases source code Open in Cloud Shell
Model_service.update_explanation_dataset source code Open in Cloud Shell
Model_service.update_model source code Open in Cloud Shell
Model_service.upload_model source code Open in Cloud Shell
Notebook_service.assign_notebook_runtime source code Open in Cloud Shell
Notebook_service.create_notebook_execution_job source code Open in Cloud Shell
Notebook_service.create_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.delete_notebook_execution_job source code Open in Cloud Shell
Notebook_service.delete_notebook_runtime source code Open in Cloud Shell
Notebook_service.delete_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.get_notebook_execution_job source code Open in Cloud Shell
Notebook_service.get_notebook_runtime source code Open in Cloud Shell
Notebook_service.get_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.list_notebook_execution_jobs source code Open in Cloud Shell
Notebook_service.list_notebook_runtime_templates source code Open in Cloud Shell
Notebook_service.list_notebook_runtimes source code Open in Cloud Shell
Notebook_service.start_notebook_runtime source code Open in Cloud Shell
Notebook_service.stop_notebook_runtime source code Open in Cloud Shell
Notebook_service.update_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.upgrade_notebook_runtime source code Open in Cloud Shell
Persistent_resource_service.create_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.delete_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.get_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.list_persistent_resources source code Open in Cloud Shell
Persistent_resource_service.reboot_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.update_persistent_resource source code Open in Cloud Shell
Pipeline_service.batch_cancel_pipeline_jobs source code Open in Cloud Shell
Pipeline_service.batch_delete_pipeline_jobs source code Open in Cloud Shell
Pipeline_service.cancel_pipeline_job source code Open in Cloud Shell
Pipeline_service.cancel_training_pipeline source code Open in Cloud Shell
Pipeline_service.create_pipeline_job source code Open in Cloud Shell
Pipeline_service.create_training_pipeline source code Open in Cloud Shell
Pipeline_service.delete_pipeline_job source code Open in Cloud Shell
Pipeline_service.delete_training_pipeline source code Open in Cloud Shell
Pipeline_service.get_pipeline_job source code Open in Cloud Shell
Pipeline_service.get_training_pipeline source code Open in Cloud Shell
Pipeline_service.list_pipeline_jobs source code Open in Cloud Shell
Pipeline_service.list_training_pipelines source code Open in Cloud Shell
Prediction_service.direct_predict source code Open in Cloud Shell
Prediction_service.direct_raw_predict source code Open in Cloud Shell
Prediction_service.explain source code Open in Cloud Shell
Prediction_service.generate_content source code Open in Cloud Shell
Prediction_service.predict source code Open in Cloud Shell
Prediction_service.raw_predict source code Open in Cloud Shell
Prediction_service.server_streaming_predict source code Open in Cloud Shell
Prediction_service.stream_direct_predict source code Open in Cloud Shell
Prediction_service.stream_direct_raw_predict source code Open in Cloud Shell
Prediction_service.stream_generate_content source code Open in Cloud Shell
Prediction_service.stream_raw_predict source code Open in Cloud Shell
Prediction_service.streaming_predict source code Open in Cloud Shell
Prediction_service.streaming_raw_predict source code Open in Cloud Shell
Reasoning_engine_execution_service.query_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_execution_service.stream_query_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.create_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.delete_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.get_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.list_reasoning_engines source code Open in Cloud Shell
Reasoning_engine_service.update_reasoning_engine source code Open in Cloud Shell
Schedule_service.create_schedule source code Open in Cloud Shell
Schedule_service.delete_schedule source code Open in Cloud Shell
Schedule_service.get_schedule source code Open in Cloud Shell
Schedule_service.list_schedules source code Open in Cloud Shell
Schedule_service.pause_schedule source code Open in Cloud Shell
Schedule_service.resume_schedule source code Open in Cloud Shell
Schedule_service.update_schedule source code Open in Cloud Shell
Specialist_pool_service.create_specialist_pool source code Open in Cloud Shell
Specialist_pool_service.delete_specialist_pool source code Open in Cloud Shell
Specialist_pool_service.get_specialist_pool source code Open in Cloud Shell
Specialist_pool_service.list_specialist_pools source code Open in Cloud Shell
Specialist_pool_service.update_specialist_pool source code Open in Cloud Shell
Tensorboard_service.batch_create_tensorboard_runs source code Open in Cloud Shell
Tensorboard_service.batch_create_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.batch_read_tensorboard_time_series_data source code Open in Cloud Shell
Tensorboard_service.create_tensorboard source code Open in Cloud Shell
Tensorboard_service.create_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.create_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.create_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.export_tensorboard_time_series_data source code Open in Cloud Shell
Tensorboard_service.get_tensorboard source code Open in Cloud Shell
Tensorboard_service.get_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.get_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.get_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.list_tensorboard_experiments source code Open in Cloud Shell
Tensorboard_service.list_tensorboard_runs source code Open in Cloud Shell
Tensorboard_service.list_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.list_tensorboards source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_blob_data source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_size source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_time_series_data source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_usage source code Open in Cloud Shell
Tensorboard_service.update_tensorboard source code Open in Cloud Shell
Tensorboard_service.update_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.update_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.update_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.write_tensorboard_experiment_data source code Open in Cloud Shell
Tensorboard_service.write_tensorboard_run_data source code Open in Cloud Shell
Vertex_rag_data_service.create_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.delete_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.delete_rag_file source code Open in Cloud Shell
Vertex_rag_data_service.get_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.get_rag_file source code Open in Cloud Shell
Vertex_rag_data_service.import_rag_files source code Open in Cloud Shell
Vertex_rag_data_service.list_rag_corpora source code Open in Cloud Shell
Vertex_rag_data_service.list_rag_files source code Open in Cloud Shell
Vertex_rag_data_service.update_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.upload_rag_file source code Open in Cloud Shell
Vertex_rag_service.augment_prompt source code Open in Cloud Shell
Vertex_rag_service.corroborate_content source code Open in Cloud Shell
Vertex_rag_service.retrieve_contexts source code Open in Cloud Shell
Vizier_service.add_trial_measurement source code Open in Cloud Shell
Vizier_service.check_trial_early_stopping_state source code Open in Cloud Shell
Vizier_service.complete_trial source code Open in Cloud Shell
Vizier_service.create_study source code Open in Cloud Shell
Vizier_service.create_trial source code Open in Cloud Shell
Vizier_service.delete_study source code Open in Cloud Shell
Vizier_service.delete_trial source code Open in Cloud Shell
Vizier_service.get_study source code Open in Cloud Shell
Vizier_service.get_trial source code Open in Cloud Shell
Vizier_service.list_optimal_trials source code Open in Cloud Shell
Vizier_service.list_studies source code Open in Cloud Shell
Vizier_service.list_trials source code Open in Cloud Shell
Vizier_service.lookup_study source code Open in Cloud Shell
Vizier_service.stop_trial source code Open in Cloud Shell
Vizier_service.suggest_trials source code Open in Cloud Shell
Dataset_service.assemble_data source code Open in Cloud Shell
Dataset_service.assess_data source code Open in Cloud Shell
Dataset_service.create_dataset source code Open in Cloud Shell
Dataset_service.create_dataset_version source code Open in Cloud Shell
Dataset_service.delete_dataset source code Open in Cloud Shell
Dataset_service.delete_dataset_version source code Open in Cloud Shell
Dataset_service.delete_saved_query source code Open in Cloud Shell
Dataset_service.export_data source code Open in Cloud Shell
Dataset_service.get_annotation_spec source code Open in Cloud Shell
Dataset_service.get_dataset source code Open in Cloud Shell
Dataset_service.get_dataset_version source code Open in Cloud Shell
Dataset_service.import_data source code Open in Cloud Shell
Dataset_service.list_annotations source code Open in Cloud Shell
Dataset_service.list_data_items source code Open in Cloud Shell
Dataset_service.list_dataset_versions source code Open in Cloud Shell
Dataset_service.list_datasets source code Open in Cloud Shell
Dataset_service.list_saved_queries source code Open in Cloud Shell
Dataset_service.restore_dataset_version source code Open in Cloud Shell
Dataset_service.search_data_items source code Open in Cloud Shell
Dataset_service.update_dataset source code Open in Cloud Shell
Dataset_service.update_dataset_version source code Open in Cloud Shell
Deployment_resource_pool_service.create_deployment_resource_pool source code Open in Cloud Shell
Deployment_resource_pool_service.delete_deployment_resource_pool source code Open in Cloud Shell
Deployment_resource_pool_service.get_deployment_resource_pool source code Open in Cloud Shell
Deployment_resource_pool_service.list_deployment_resource_pools source code Open in Cloud Shell
Deployment_resource_pool_service.query_deployed_models source code Open in Cloud Shell
Deployment_resource_pool_service.update_deployment_resource_pool source code Open in Cloud Shell
Endpoint_service.create_endpoint source code Open in Cloud Shell
Endpoint_service.delete_endpoint source code Open in Cloud Shell
Endpoint_service.deploy_model source code Open in Cloud Shell
Endpoint_service.fetch_publisher_model_config source code Open in Cloud Shell
Endpoint_service.get_endpoint source code Open in Cloud Shell
Endpoint_service.list_endpoints source code Open in Cloud Shell
Endpoint_service.mutate_deployed_model source code Open in Cloud Shell
Endpoint_service.set_publisher_model_config source code Open in Cloud Shell
Endpoint_service.undeploy_model source code Open in Cloud Shell
Endpoint_service.update_endpoint source code Open in Cloud Shell
Endpoint_service.update_endpoint_long_running source code Open in Cloud Shell
Evaluation_service.evaluate_dataset source code Open in Cloud Shell
Evaluation_service.evaluate_instances source code Open in Cloud Shell
Example_store_service.create_example_store source code Open in Cloud Shell
Example_store_service.delete_example_store source code Open in Cloud Shell
Example_store_service.fetch_examples source code Open in Cloud Shell
Example_store_service.get_example_store source code Open in Cloud Shell
Example_store_service.list_example_stores source code Open in Cloud Shell
Example_store_service.remove_examples source code Open in Cloud Shell
Example_store_service.search_examples source code Open in Cloud Shell
Example_store_service.update_example_store source code Open in Cloud Shell
Example_store_service.upsert_examples source code Open in Cloud Shell
Extension_execution_service.execute_extension source code Open in Cloud Shell
Extension_execution_service.query_extension source code Open in Cloud Shell
Extension_registry_service.delete_extension source code Open in Cloud Shell
Extension_registry_service.get_extension source code Open in Cloud Shell
Extension_registry_service.import_extension source code Open in Cloud Shell
Extension_registry_service.list_extensions source code Open in Cloud Shell
Extension_registry_service.update_extension source code Open in Cloud Shell
Feature_online_store_admin_service.create_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.create_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.delete_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.delete_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.get_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.get_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.get_feature_view_sync source code Open in Cloud Shell
Feature_online_store_admin_service.list_feature_online_stores source code Open in Cloud Shell
Feature_online_store_admin_service.list_feature_view_syncs source code Open in Cloud Shell
Feature_online_store_admin_service.list_feature_views source code Open in Cloud Shell
Feature_online_store_admin_service.sync_feature_view source code Open in Cloud Shell
Feature_online_store_admin_service.update_feature_online_store source code Open in Cloud Shell
Feature_online_store_admin_service.update_feature_view source code Open in Cloud Shell
Feature_online_store_service.feature_view_direct_write source code Open in Cloud Shell
Feature_online_store_service.fetch_feature_values source code Open in Cloud Shell
Feature_online_store_service.search_nearest_entities source code Open in Cloud Shell
Feature_online_store_service.streaming_fetch_feature_values source code Open in Cloud Shell
Feature_registry_service.batch_create_features source code Open in Cloud Shell
Feature_registry_service.create_feature source code Open in Cloud Shell
Feature_registry_service.create_feature_group source code Open in Cloud Shell
Feature_registry_service.create_feature_monitor source code Open in Cloud Shell
Feature_registry_service.create_feature_monitor_job source code Open in Cloud Shell
Feature_registry_service.delete_feature source code Open in Cloud Shell
Feature_registry_service.delete_feature_group source code Open in Cloud Shell
Feature_registry_service.delete_feature_monitor source code Open in Cloud Shell
Feature_registry_service.get_feature source code Open in Cloud Shell
Feature_registry_service.get_feature_group source code Open in Cloud Shell
Feature_registry_service.get_feature_monitor source code Open in Cloud Shell
Feature_registry_service.get_feature_monitor_job source code Open in Cloud Shell
Feature_registry_service.list_feature_groups source code Open in Cloud Shell
Feature_registry_service.list_feature_monitor_jobs source code Open in Cloud Shell
Feature_registry_service.list_feature_monitors source code Open in Cloud Shell
Feature_registry_service.list_features source code Open in Cloud Shell
Feature_registry_service.update_feature source code Open in Cloud Shell
Feature_registry_service.update_feature_group source code Open in Cloud Shell
Feature_registry_service.update_feature_monitor source code Open in Cloud Shell
Featurestore_online_serving_service.read_feature_values source code Open in Cloud Shell
Featurestore_online_serving_service.streaming_read_feature_values source code Open in Cloud Shell
Featurestore_online_serving_service.write_feature_values source code Open in Cloud Shell
Featurestore_service.batch_create_features source code Open in Cloud Shell
Featurestore_service.batch_read_feature_values source code Open in Cloud Shell
Featurestore_service.create_entity_type source code Open in Cloud Shell
Featurestore_service.create_feature source code Open in Cloud Shell
Featurestore_service.create_featurestore source code Open in Cloud Shell
Featurestore_service.delete_entity_type source code Open in Cloud Shell
Featurestore_service.delete_feature source code Open in Cloud Shell
Featurestore_service.delete_feature_values source code Open in Cloud Shell
Featurestore_service.delete_featurestore source code Open in Cloud Shell
Featurestore_service.export_feature_values source code Open in Cloud Shell
Featurestore_service.get_entity_type source code Open in Cloud Shell
Featurestore_service.get_feature source code Open in Cloud Shell
Featurestore_service.get_featurestore source code Open in Cloud Shell
Featurestore_service.import_feature_values source code Open in Cloud Shell
Featurestore_service.list_entity_types source code Open in Cloud Shell
Featurestore_service.list_features source code Open in Cloud Shell
Featurestore_service.list_featurestores source code Open in Cloud Shell
Featurestore_service.search_features source code Open in Cloud Shell
Featurestore_service.update_entity_type source code Open in Cloud Shell
Featurestore_service.update_feature source code Open in Cloud Shell
Featurestore_service.update_featurestore source code Open in Cloud Shell
Gen_ai_cache_service.create_cached_content source code Open in Cloud Shell
Gen_ai_cache_service.delete_cached_content source code Open in Cloud Shell
Gen_ai_cache_service.get_cached_content source code Open in Cloud Shell
Gen_ai_cache_service.list_cached_contents source code Open in Cloud Shell
Gen_ai_cache_service.update_cached_content source code Open in Cloud Shell
Gen_ai_tuning_service.cancel_tuning_job source code Open in Cloud Shell
Gen_ai_tuning_service.create_tuning_job source code Open in Cloud Shell
Gen_ai_tuning_service.get_tuning_job source code Open in Cloud Shell
Gen_ai_tuning_service.list_tuning_jobs source code Open in Cloud Shell
Gen_ai_tuning_service.rebase_tuned_model source code Open in Cloud Shell
Index_endpoint_service.create_index_endpoint source code Open in Cloud Shell
Index_endpoint_service.delete_index_endpoint source code Open in Cloud Shell
Index_endpoint_service.deploy_index source code Open in Cloud Shell
Index_endpoint_service.get_index_endpoint source code Open in Cloud Shell
Index_endpoint_service.list_index_endpoints source code Open in Cloud Shell
Index_endpoint_service.mutate_deployed_index source code Open in Cloud Shell
Index_endpoint_service.undeploy_index source code Open in Cloud Shell
Index_endpoint_service.update_index_endpoint source code Open in Cloud Shell
Index_service.create_index source code Open in Cloud Shell
Index_service.delete_index source code Open in Cloud Shell
Index_service.get_index source code Open in Cloud Shell
Index_service.list_indexes source code Open in Cloud Shell
Index_service.remove_datapoints source code Open in Cloud Shell
Index_service.update_index source code Open in Cloud Shell
Index_service.upsert_datapoints source code Open in Cloud Shell
Job_service.cancel_batch_prediction_job source code Open in Cloud Shell
Job_service.cancel_custom_job source code Open in Cloud Shell
Job_service.cancel_data_labeling_job source code Open in Cloud Shell
Job_service.cancel_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.cancel_nas_job source code Open in Cloud Shell
Job_service.create_batch_prediction_job source code Open in Cloud Shell
Job_service.create_custom_job source code Open in Cloud Shell
Job_service.create_data_labeling_job source code Open in Cloud Shell
Job_service.create_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.create_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.create_nas_job source code Open in Cloud Shell
Job_service.delete_batch_prediction_job source code Open in Cloud Shell
Job_service.delete_custom_job source code Open in Cloud Shell
Job_service.delete_data_labeling_job source code Open in Cloud Shell
Job_service.delete_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.delete_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.delete_nas_job source code Open in Cloud Shell
Job_service.get_batch_prediction_job source code Open in Cloud Shell
Job_service.get_custom_job source code Open in Cloud Shell
Job_service.get_data_labeling_job source code Open in Cloud Shell
Job_service.get_hyperparameter_tuning_job source code Open in Cloud Shell
Job_service.get_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.get_nas_job source code Open in Cloud Shell
Job_service.get_nas_trial_detail source code Open in Cloud Shell
Job_service.list_batch_prediction_jobs source code Open in Cloud Shell
Job_service.list_custom_jobs source code Open in Cloud Shell
Job_service.list_data_labeling_jobs source code Open in Cloud Shell
Job_service.list_hyperparameter_tuning_jobs source code Open in Cloud Shell
Job_service.list_model_deployment_monitoring_jobs source code Open in Cloud Shell
Job_service.list_nas_jobs source code Open in Cloud Shell
Job_service.list_nas_trial_details source code Open in Cloud Shell
Job_service.pause_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.resume_model_deployment_monitoring_job source code Open in Cloud Shell
Job_service.search_model_deployment_monitoring_stats_anomalies source code Open in Cloud Shell
Job_service.update_model_deployment_monitoring_job source code Open in Cloud Shell
Llm_utility_service.compute_tokens source code Open in Cloud Shell
Llm_utility_service.count_tokens source code Open in Cloud Shell
Match_service.find_neighbors source code Open in Cloud Shell
Match_service.read_index_datapoints source code Open in Cloud Shell
Metadata_service.add_context_artifacts_and_executions source code Open in Cloud Shell
Metadata_service.add_context_children source code Open in Cloud Shell
Metadata_service.add_execution_events source code Open in Cloud Shell
Metadata_service.create_artifact source code Open in Cloud Shell
Metadata_service.create_context source code Open in Cloud Shell
Metadata_service.create_execution source code Open in Cloud Shell
Metadata_service.create_metadata_schema source code Open in Cloud Shell
Metadata_service.create_metadata_store source code Open in Cloud Shell
Metadata_service.delete_artifact source code Open in Cloud Shell
Metadata_service.delete_context source code Open in Cloud Shell
Metadata_service.delete_execution source code Open in Cloud Shell
Metadata_service.delete_metadata_store source code Open in Cloud Shell
Metadata_service.get_artifact source code Open in Cloud Shell
Metadata_service.get_context source code Open in Cloud Shell
Metadata_service.get_execution source code Open in Cloud Shell
Metadata_service.get_metadata_schema source code Open in Cloud Shell
Metadata_service.get_metadata_store source code Open in Cloud Shell
Metadata_service.list_artifacts source code Open in Cloud Shell
Metadata_service.list_contexts source code Open in Cloud Shell
Metadata_service.list_executions source code Open in Cloud Shell
Metadata_service.list_metadata_schemas source code Open in Cloud Shell
Metadata_service.list_metadata_stores source code Open in Cloud Shell
Metadata_service.purge_artifacts source code Open in Cloud Shell
Metadata_service.purge_contexts source code Open in Cloud Shell
Metadata_service.purge_executions source code Open in Cloud Shell
Metadata_service.query_artifact_lineage_subgraph source code Open in Cloud Shell
Metadata_service.query_context_lineage_subgraph source code Open in Cloud Shell
Metadata_service.query_execution_inputs_and_outputs source code Open in Cloud Shell
Metadata_service.remove_context_children source code Open in Cloud Shell
Metadata_service.update_artifact source code Open in Cloud Shell
Metadata_service.update_context source code Open in Cloud Shell
Metadata_service.update_execution source code Open in Cloud Shell
Migration_service.batch_migrate_resources source code Open in Cloud Shell
Migration_service.search_migratable_resources source code Open in Cloud Shell
Model_garden_service.accept_publisher_model_eula source code Open in Cloud Shell
Model_garden_service.check_publisher_model_eula_acceptance source code Open in Cloud Shell
Model_garden_service.deploy source code Open in Cloud Shell
Model_garden_service.deploy_publisher_model source code Open in Cloud Shell
Model_garden_service.export_publisher_model source code Open in Cloud Shell
Model_garden_service.get_publisher_model source code Open in Cloud Shell
Model_garden_service.list_publisher_models source code Open in Cloud Shell
Model_monitoring_service.create_model_monitor source code Open in Cloud Shell
Model_monitoring_service.create_model_monitoring_job source code Open in Cloud Shell
Model_monitoring_service.delete_model_monitor source code Open in Cloud Shell
Model_monitoring_service.delete_model_monitoring_job source code Open in Cloud Shell
Model_monitoring_service.get_model_monitor source code Open in Cloud Shell
Model_monitoring_service.get_model_monitoring_job source code Open in Cloud Shell
Model_monitoring_service.list_model_monitoring_jobs source code Open in Cloud Shell
Model_monitoring_service.list_model_monitors source code Open in Cloud Shell
Model_monitoring_service.search_model_monitoring_alerts source code Open in Cloud Shell
Model_monitoring_service.search_model_monitoring_stats source code Open in Cloud Shell
Model_monitoring_service.update_model_monitor source code Open in Cloud Shell
Model_service.batch_import_evaluated_annotations source code Open in Cloud Shell
Model_service.batch_import_model_evaluation_slices source code Open in Cloud Shell
Model_service.copy_model source code Open in Cloud Shell
Model_service.delete_model source code Open in Cloud Shell
Model_service.delete_model_version source code Open in Cloud Shell
Model_service.export_model source code Open in Cloud Shell
Model_service.get_model source code Open in Cloud Shell
Model_service.get_model_evaluation source code Open in Cloud Shell
Model_service.get_model_evaluation_slice source code Open in Cloud Shell
Model_service.import_model_evaluation source code Open in Cloud Shell
Model_service.list_model_evaluation_slices source code Open in Cloud Shell
Model_service.list_model_evaluations source code Open in Cloud Shell
Model_service.list_model_version_checkpoints source code Open in Cloud Shell
Model_service.list_model_versions source code Open in Cloud Shell
Model_service.list_models source code Open in Cloud Shell
Model_service.merge_version_aliases source code Open in Cloud Shell
Model_service.update_explanation_dataset source code Open in Cloud Shell
Model_service.update_model source code Open in Cloud Shell
Model_service.upload_model source code Open in Cloud Shell
Notebook_service.assign_notebook_runtime source code Open in Cloud Shell
Notebook_service.create_notebook_execution_job source code Open in Cloud Shell
Notebook_service.create_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.delete_notebook_execution_job source code Open in Cloud Shell
Notebook_service.delete_notebook_runtime source code Open in Cloud Shell
Notebook_service.delete_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.get_notebook_execution_job source code Open in Cloud Shell
Notebook_service.get_notebook_runtime source code Open in Cloud Shell
Notebook_service.get_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.list_notebook_execution_jobs source code Open in Cloud Shell
Notebook_service.list_notebook_runtime_templates source code Open in Cloud Shell
Notebook_service.list_notebook_runtimes source code Open in Cloud Shell
Notebook_service.start_notebook_runtime source code Open in Cloud Shell
Notebook_service.stop_notebook_runtime source code Open in Cloud Shell
Notebook_service.update_notebook_runtime_template source code Open in Cloud Shell
Notebook_service.upgrade_notebook_runtime source code Open in Cloud Shell
Persistent_resource_service.create_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.delete_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.get_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.list_persistent_resources source code Open in Cloud Shell
Persistent_resource_service.reboot_persistent_resource source code Open in Cloud Shell
Persistent_resource_service.update_persistent_resource source code Open in Cloud Shell
Pipeline_service.batch_cancel_pipeline_jobs source code Open in Cloud Shell
Pipeline_service.batch_delete_pipeline_jobs source code Open in Cloud Shell
Pipeline_service.cancel_pipeline_job source code Open in Cloud Shell
Pipeline_service.cancel_training_pipeline source code Open in Cloud Shell
Pipeline_service.create_pipeline_job source code Open in Cloud Shell
Pipeline_service.create_training_pipeline source code Open in Cloud Shell
Pipeline_service.delete_pipeline_job source code Open in Cloud Shell
Pipeline_service.delete_training_pipeline source code Open in Cloud Shell
Pipeline_service.get_pipeline_job source code Open in Cloud Shell
Pipeline_service.get_training_pipeline source code Open in Cloud Shell
Pipeline_service.list_pipeline_jobs source code Open in Cloud Shell
Pipeline_service.list_training_pipelines source code Open in Cloud Shell
Prediction_service.chat_completions source code Open in Cloud Shell
Prediction_service.count_tokens source code Open in Cloud Shell
Prediction_service.direct_predict source code Open in Cloud Shell
Prediction_service.direct_raw_predict source code Open in Cloud Shell
Prediction_service.explain source code Open in Cloud Shell
Prediction_service.generate_content source code Open in Cloud Shell
Prediction_service.predict source code Open in Cloud Shell
Prediction_service.raw_predict source code Open in Cloud Shell
Prediction_service.server_streaming_predict source code Open in Cloud Shell
Prediction_service.stream_direct_predict source code Open in Cloud Shell
Prediction_service.stream_direct_raw_predict source code Open in Cloud Shell
Prediction_service.stream_generate_content source code Open in Cloud Shell
Prediction_service.stream_raw_predict source code Open in Cloud Shell
Prediction_service.streaming_predict source code Open in Cloud Shell
Prediction_service.streaming_raw_predict source code Open in Cloud Shell
Reasoning_engine_execution_service.query_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_execution_service.stream_query_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.create_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.delete_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.get_reasoning_engine source code Open in Cloud Shell
Reasoning_engine_service.list_reasoning_engines source code Open in Cloud Shell
Reasoning_engine_service.update_reasoning_engine source code Open in Cloud Shell
Schedule_service.create_schedule source code Open in Cloud Shell
Schedule_service.delete_schedule source code Open in Cloud Shell
Schedule_service.get_schedule source code Open in Cloud Shell
Schedule_service.list_schedules source code Open in Cloud Shell
Schedule_service.pause_schedule source code Open in Cloud Shell
Schedule_service.resume_schedule source code Open in Cloud Shell
Schedule_service.update_schedule source code Open in Cloud Shell
Session_service.append_event source code Open in Cloud Shell
Session_service.create_session source code Open in Cloud Shell
Session_service.delete_session source code Open in Cloud Shell
Session_service.get_session source code Open in Cloud Shell
Session_service.list_events source code Open in Cloud Shell
Session_service.list_sessions source code Open in Cloud Shell
Session_service.update_session source code Open in Cloud Shell
Specialist_pool_service.create_specialist_pool source code Open in Cloud Shell
Specialist_pool_service.delete_specialist_pool source code Open in Cloud Shell
Specialist_pool_service.get_specialist_pool source code Open in Cloud Shell
Specialist_pool_service.list_specialist_pools source code Open in Cloud Shell
Specialist_pool_service.update_specialist_pool source code Open in Cloud Shell
Tensorboard_service.batch_create_tensorboard_runs source code Open in Cloud Shell
Tensorboard_service.batch_create_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.batch_read_tensorboard_time_series_data source code Open in Cloud Shell
Tensorboard_service.create_tensorboard source code Open in Cloud Shell
Tensorboard_service.create_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.create_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.create_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.delete_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.export_tensorboard_time_series_data source code Open in Cloud Shell
Tensorboard_service.get_tensorboard source code Open in Cloud Shell
Tensorboard_service.get_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.get_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.get_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.list_tensorboard_experiments source code Open in Cloud Shell
Tensorboard_service.list_tensorboard_runs source code Open in Cloud Shell
Tensorboard_service.list_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.list_tensorboards source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_blob_data source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_size source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_time_series_data source code Open in Cloud Shell
Tensorboard_service.read_tensorboard_usage source code Open in Cloud Shell
Tensorboard_service.update_tensorboard source code Open in Cloud Shell
Tensorboard_service.update_tensorboard_experiment source code Open in Cloud Shell
Tensorboard_service.update_tensorboard_run source code Open in Cloud Shell
Tensorboard_service.update_tensorboard_time_series source code Open in Cloud Shell
Tensorboard_service.write_tensorboard_experiment_data source code Open in Cloud Shell
Tensorboard_service.write_tensorboard_run_data source code Open in Cloud Shell
Vertex_rag_data_service.create_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.delete_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.delete_rag_file source code Open in Cloud Shell
Vertex_rag_data_service.get_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.get_rag_engine_config source code Open in Cloud Shell
Vertex_rag_data_service.get_rag_file source code Open in Cloud Shell
Vertex_rag_data_service.import_rag_files source code Open in Cloud Shell
Vertex_rag_data_service.list_rag_corpora source code Open in Cloud Shell
Vertex_rag_data_service.list_rag_files source code Open in Cloud Shell
Vertex_rag_data_service.update_rag_corpus source code Open in Cloud Shell
Vertex_rag_data_service.update_rag_engine_config source code Open in Cloud Shell
Vertex_rag_data_service.upload_rag_file source code Open in Cloud Shell
Vertex_rag_service.augment_prompt source code Open in Cloud Shell
Vertex_rag_service.corroborate_content source code Open in Cloud Shell
Vertex_rag_service.retrieve_contexts source code Open in Cloud Shell
Vizier_service.add_trial_measurement source code Open in Cloud Shell
Vizier_service.check_trial_early_stopping_state source code Open in Cloud Shell
Vizier_service.complete_trial source code Open in Cloud Shell
Vizier_service.create_study source code Open in Cloud Shell
Vizier_service.create_trial source code Open in Cloud Shell
Vizier_service.delete_study source code Open in Cloud Shell
Vizier_service.delete_trial source code Open in Cloud Shell
Vizier_service.get_study source code Open in Cloud Shell
Vizier_service.get_trial source code Open in Cloud Shell
Vizier_service.list_optimal_trials source code Open in Cloud Shell
Vizier_service.list_studies source code Open in Cloud Shell
Vizier_service.list_trials source code Open in Cloud Shell
Vizier_service.lookup_study source code Open in Cloud Shell
Vizier_service.stop_trial source code Open in Cloud Shell
Vizier_service.suggest_trials source code Open in Cloud Shell
Quickstart source code Open in Cloud Shell

The Vertex AI Node.js Client API Reference documentation also contains samples.

Supported Node.js Versions

Our client libraries follow the Node.js release schedule. Libraries are compatible with all current active and maintenance versions of Node.js. If you are using an end-of-life version of Node.js, we recommend that you update as soon as possible to an actively supported LTS version.

Google's client libraries support legacy versions of Node.js runtimes on a best-efforts basis with the following warnings:

  • Legacy versions are not tested in continuous integration.
  • Some security patches and features cannot be backported.
  • Dependencies cannot be kept up-to-date.

Client libraries targeting some end-of-life versions of Node.js are available, and can be installed through npm dist-tags. The dist-tags follow the naming convention legacy-(version). For example, npm install @google-cloud/aiplatform@legacy-8 installs client libraries for versions compatible with Node.js 8.

Versioning

This library follows Semantic Versioning.

This library is considered to be stable. The code surface will not change in backwards-incompatible ways unless absolutely necessary (e.g. because of critical security issues) or with an extensive deprecation period. Issues and requests against stable libraries are addressed with the highest priority.

More Information: Google Cloud Platform Launch Stages

Contributing

Contributions welcome! See the Contributing Guide.

Please note that this README.md, the samples/README.md, and a variety of configuration files in this repository (including .nycrc and tsconfig.json) are generated from a central template. To edit one of these files, make an edit to its templates in directory.

License

Apache Version 2.0

See LICENSE