gpt4all 0.1.0

Rust bindings for GPT4All
1
2
3
4
5
6
7
8
9
10
11
12
13

/// Errors that can occur when interacting with a model source.
#[derive(Debug)]
pub enum ModelSourceError {
    /// Error fetching available models.
    FetchError,
    /// Error parsing model information.
    ModelInfoParsingError,
    /// Error downloading a model.
    ModelDownloadError,
    /// Model not found on the source.
    ModelNotFound
}