ayda 1.1.1

Ask your Documents Anything. A tool for querying your documents with a large language model.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! AnythingLLM client library.
//!
//! This library provides a client for the AnythingLLM server. For API documentation, see the
//! [documentation](http://localhost:3001/api/docs/) on your local server.
//!

pub use documents::*;
pub use workspace::*;

pub mod client;
pub mod documents;
pub mod error;
pub mod workspace;