Skip to main content

acp_utils/
lib.rs

1#![doc = include_str!("../README.md")]
2
3/// Meta key under which Aether agents publish the machine-readable tool name on an ACP
4/// `ToolCall._meta`, so consumers can recover the original tool name from the humanized title.
5pub const AETHER_TOOL_NAME_META_KEY: &str = "aetherToolName";
6
7pub mod config_meta;
8pub mod config_option_id;
9pub mod content;
10pub mod elicitation;
11pub mod notifications;
12pub mod settings;
13
14#[cfg(feature = "client")]
15pub mod client;
16
17#[cfg(feature = "server")]
18pub mod server;
19
20#[cfg(feature = "testing")]
21pub mod testing;