1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! API DOC: <https://docs.cohere.com/reference/chat> //! MODEL NAMES: <https://docs.cohere.com/docs/models> //! PRICING: <https://cohere.com/pricing> // region: --- Modules mod adapter_impl; mod embed; mod streamer; pub use adapter_impl::*; pub use streamer::*; // endregion: --- Modules