tirea_extension_interaction/
lib.rs1mod interaction_plugin;
6mod interaction_response;
7mod outbox;
8
9pub const INTERACTION_PLUGIN_ID: &str = "interaction";
10pub const INTERACTION_RESPONSE_PLUGIN_ID: &str = "interaction_response";
11pub(crate) const RECOVERY_RESUME_TOOL_ID: &str = "agent_run";
12
13pub const AGENT_RECOVERY_INTERACTION_ACTION: &str = "recover_agent_run";
15
16pub const AGENT_RECOVERY_INTERACTION_PREFIX: &str = "agent_recovery_";
18
19pub use interaction_plugin::InteractionPlugin;
20pub use outbox::InteractionOutbox;