feat: POST /api/v1/agents/search - Gemma4 function calling agent

This commit is contained in:
Accusys
2026-05-22 12:10:37 +08:00
parent 600ce8e964
commit 380dd87d8b
5 changed files with 716 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ use crate::core::db::{Database, PostgresDb};
use crate::Embedder;
use super::agent_api;
use super::agent_search;
use super::auth;
use super::docs;
use super::files;
@@ -82,6 +83,7 @@ pub async fn start_server(host: &str, port: u16) -> anyhow::Result<()> {
.merge(tmdb_api::tmdb_routes())
.merge(identity_api::identity_routes())
.merge(agent_api::agent_routes())
.merge(agent_search::agent_search_routes())
.merge(identity_agent_api::identity_agent_routes())
.merge(five_w1h_agent_api::five_w1h_agent_routes())
.merge(media_api::bbox_routes())