openai_interface/completions/mod.rs
1//! Given a prompt, the model will return one or more predicted completions,
2//! and can also return the probabilities of alternative tokens at each position.
3//! Compared to the `chat` API, this one does not provide the ability to have
4//! multiple rounds of conversation. This API is getting deprecated in favor of the
5//! `chat` API.
6
7pub mod request;