Adds a new ItemStarted event and delivers UserMessage as the first item type (more to come). Renames `InputItem` to `UserInput` considering we're using the `Item` suffix for actual items.
13 lines
264 B
Rust
13 lines
264 B
Rust
mod conversation_id;
|
|
pub use conversation_id::ConversationId;
|
|
pub mod config_types;
|
|
pub mod custom_prompts;
|
|
pub mod items;
|
|
pub mod message_history;
|
|
pub mod models;
|
|
pub mod num_format;
|
|
pub mod parse_command;
|
|
pub mod plan_tool;
|
|
pub mod protocol;
|
|
pub mod user_input;
|