personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(agents): increase page size to 20 agents per page

Increased the default page size from 10 to 20 agents to show more
completed agents at once in the agents view. Also added backend
support for different default limits based on agent type.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+4 -2
+1 -1
dream/templates/agents.html
··· 2174 2174 2175 2175 // Pagination state 2176 2176 let currentPage = 0; 2177 - let pageSize = 10; 2177 + let pageSize = 20; 2178 2178 let totalAgents = 0; 2179 2179 2180 2180 // Session history table functions
+3 -1
dream/views/agents.py
··· 178 178 179 179 def _get_agents_list(agent_type: str) -> object: 180 180 """Internal helper to get agents list.""" 181 - limit = int(request.args.get("limit", 10)) 181 + # Default limit depends on agent type - 20 for historical, 10 for live 182 + default_limit = 20 if agent_type == "historical" else 10 183 + limit = int(request.args.get("limit", default_limit)) 182 184 offset = int(request.args.get("offset", 0)) 183 185 184 186 # Validate parameters - cortex_agents already does this but let's be explicit