feat: Enhance agent system prompt with write_todos examples, and apply minor code formatting across connector pages and hooks.

This commit is contained in:
Anish Sarkar 2025-12-28 01:41:27 +05:30
parent 0164659f7a
commit 74f17f61ec
9 changed files with 57 additions and 37 deletions

View file

@ -80,11 +80,9 @@ export function NavNotes({
const [isAllNotesSidebarOpen, setIsAllNotesSidebarOpen] = useState(false);
// Poll for active reindexing tasks to show inline loading indicators
const { summary } = useLogsSummary(
searchSpaceId ? Number(searchSpaceId) : 0,
24,
{ refetchInterval: 2000 }
);
const { summary } = useLogsSummary(searchSpaceId ? Number(searchSpaceId) : 0, 24, {
refetchInterval: 2000,
});
// Create a Set of document IDs that are currently being reindexed
const reindexingDocumentIds = useMemo(() => {