27 releases (13 breaking)
new 0.14.0 | Nov 28, 2024 |
---|---|
0.12.3 | Oct 23, 2024 |
0.10.1 | Jul 4, 2024 |
0.7.1 | Nov 30, 2023 |
0.4.0 | Oct 29, 2022 |
#296 in Web programming
872 downloads per month
1.5MB
1.5K
SLoC
Aleph Alpha API client for Rust
Interact with large language models provided by the Aleph Alpha API in Rust code.
Usage
use aleph_alpha_client::{Client, TaskCompletion, How, Task};
#[tokio::main]
fn main() {
// Authenticate against API. Fetches token.
let client = Client::with_authentication("AA_API_TOKEN").unwrap();
// Name of the model we we want to use. Large models give usually better answer, but are also
// more costly.
let model = "luminous-base";
// The task we want to perform. Here we want to continue the sentence: "An apple a day ..."
let task = TaskCompletion::from_text("An apple a day").with_maximum_tokens(20);
// Retrieve the answer from the API
let response = client.completion(&task, model, &How::default()).await.unwrap();
// Print entire sentence with completion
println!("An apple a day{}", response.completion);
}
This is a work in progress currently the Rust client is not a priority on our Roadmap, so expect this client to be incomplete. If we work on it expect interfaces to break.
Dependencies
~18–32MB
~526K SLoC