chroma-api-types 0.14.0

Chroma-provided crate for api-types used in the Chroma API.
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};
use std::collections::HashSet;

#[derive(Serialize, Deserialize, Debug)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
pub struct GetUserIdentityResponse {
    pub user_id: String,
    pub tenant: String,
    pub databases: HashSet<String>,
}