Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions crates/goose/src/agents/platform_extensions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pub mod chatrecall;
pub mod code_execution;
pub mod developer;
pub mod ext_manager;
pub mod summarize;
pub mod summon;
pub mod todo;
pub mod tom;
Expand Down Expand Up @@ -104,6 +105,18 @@ pub static PLATFORM_EXTENSIONS: Lazy<HashMap<&'static str, PlatformExtensionDef>
},
);

map.insert(
summarize::EXTENSION_NAME,
PlatformExtensionDef {
name: summarize::EXTENSION_NAME,
display_name: "Summarize",
description: "Load files/directories and get an LLM summary in a single call",
default_enabled: false,
unprefixed_tools: false,
client_factory: |ctx| Box::new(summarize::SummarizeClient::new(ctx).unwrap()),
},
);

#[cfg(feature = "code-mode")]
map.insert(
code_execution::EXTENSION_NAME,
Expand Down
Loading
Loading