From dc7f22f76c7f1644217ce204d004f766d16cb2e6 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Tue, 8 Oct 2024 23:49:56 -0700 Subject: [PATCH] Mention no. of docs in agents knowledge base in its badge hover text --- src/interface/web/app/agents/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/interface/web/app/agents/page.tsx b/src/interface/web/app/agents/page.tsx index 332ac0d2..82ed4529 100644 --- a/src/interface/web/app/agents/page.tsx +++ b/src/interface/web/app/agents/page.tsx @@ -302,9 +302,7 @@ function AgentCard(props: AgentCardProps) { } text={`knowledge`} - hoverText={ - "The agent has a custom knowledge base it can use to give you answers." - } + hoverText={`The agent has a custom knowledge base with ${props.data.files.length} documents. It can use them to give you answers.`} /> )}