enables deep research

This commit is contained in:
geoffsee
2025-05-28 19:43:36 -04:00
committed by Geoff Seemueller
parent 805b524471
commit 2e45c6b67b
14 changed files with 245 additions and 59 deletions

View File

@@ -97,6 +97,9 @@ pub async fn use_agent(Path(agent_id): Path<String>) -> impl IntoResponse {
"image-generator" => {
crate::agents::image_generator::agent(agent_id.as_str(), &*input).await
}
"deep-research" => {
crate::agents::deep_research::agent(agent_id.as_str(), &*input).await
}
"web-scrape" => crate::agents::scrape::agent(agent_id.as_str(), &*input).await,
_ => {
tracing::error!("Unsupported resource type: {}", resource);