Crate chromadb_rs
source ·Expand description
§Chromadb-rs
The unofficial lib for Chroma in rust. Chroma-rs uses endpoints of the chroma db backend.
Currently the lib is a work in progress… check out the github repo to contribute.
§Chroma client
Creates a new ChromaClient instance:
use chromadb_rs::client::{ChromaClient, ChromaClientParams};
let client = ChromaClient::new(ChromaClientParams {
host: "localhost".to_string(),
port: "8000".to_string(),
ssl: false,
});