Skip to main content

rig_vertexai/
lib.rs

1#![cfg_attr(
2    test,
3    allow(
4        clippy::expect_used,
5        clippy::indexing_slicing,
6        clippy::panic,
7        clippy::unwrap_used,
8        clippy::unreachable
9    )
10)]
11
12pub mod client;
13pub mod completion;
14pub(crate) mod types;
15
16pub use client::{Client, ClientBuilder};