These are the schema definitions for the new JSON-RPC APIs associated with accounts. These are not wired up to business logic yet and will currently throw an internal error indicating these are unimplemented.
14 lines
281 B
Rust
14 lines
281 B
Rust
pub mod account;
|
|
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;
|