lm-studio-api-extended 0.1.3

Unofficial Rust client for LM Studio with text embedding support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod role;       pub use role::Role;
pub mod message;    pub use message::Message;
pub mod request;    pub use request::Request;

pub mod delta;      pub use delta::Delta;
pub mod usage;      pub use usage::Usage;
pub mod choice;     pub use choice::{ Choice, StreamChoice };
pub mod stream;     pub use stream::Stream;
pub mod response;   pub use response::{ Response, ResponseReader };

pub mod model;      pub use model::Model;
pub mod context;    pub use context::Context;
pub mod chat;       pub use chat::Chat;