Expand description

Unofficial GCP Vertex AI Vizier Client API.

let project = env::var("GOOGLE_CLOUD_PROJECT").unwrap();
let location = "us-central1".to_string();

let mut client = VizierClient::new(project.clone(), location.clone())
    .await
    .unwrap();

let request = client
    .mk_list_studies_request_builder()
    .with_page_size(2)
    .build();

let studies = client.service.list_studies(request).await.unwrap();
let study_list = &studies.get_ref().studies;
for t in study_list {
    println!("- {}", &t.display_name);
}

Re-exports

Modules

  • google protos.
  • Model for Vizier API.
  • Utilities for the Vizier API.

Structs

Enums