Interact with large language models provided by the Aleph Alpha API in Rust code.
```rust use alephalphaclient::{Client, TaskCompletion};
fn main() { // Authenticate against API. Fetches token. let client = Client::new("AAAPITOKEN").await;
// 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: "The most important thing
// is ..."
let task = TaskCompletion::from_text("An apple a day", 10);
// Send the task to the client.
let response = client.execute(model, &task).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.