Drop prompt_conversation, collect_text_from_response, Message, and Dialogue to redesign the conversation feature later.
10 lines
135 B
Rust
10 lines
135 B
Rust
mod client;
|
|
pub mod error;
|
|
pub mod network;
|
|
mod types;
|
|
|
|
pub mod prelude {
|
|
pub use crate::client::*;
|
|
pub use crate::types::*;
|
|
}
|