nblm-core 0.1.3

Core library for NotebookLM Enterprise API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod auth;
pub mod client;
mod error;
pub mod models;

pub use auth::{EnvTokenProvider, GcloudTokenProvider, StaticTokenProvider, TokenProvider};
pub use client::{NblmClient, RetryConfig, Retryer};
pub use error::{Error, Result};

use std::sync::Arc;

pub type DynTokenProvider = Arc<dyn TokenProvider>;