Search consumes token credits under Cognee Cloud’s usage-based billing. If your workspace runs out of prepaid credits, queries may fail — the workspace owner can top up on the Billing page.
Sending a query
- Choose a dataset using the Searching: … picker above the input bar.
- Choose a scope using the pills above the input bar (see Search scope below).
- Type a natural language query in the search bar (placeholder Ask a question about your data…) and press Enter to send; use Shift+Enter for a newline.
- Results appear in the conversation area below.
- “What are the main entities?”
- “Summarize the uploaded documents”
- “What relationships exist in the data?”
GET /api/v1/search endpoint.
Dataset and scope
The active dataset (brain) is controlled by the current breadcrumb selection. The label above the input bar shows which brain is being searched. Scope selector pills above the input bar control the retrieval target:
Agent Memory uses the most recent session as context; if no recent session exists, the search has no session context to draw from.
Conversation history
The sidebar on the left lists past conversations grouped by date. Click any conversation to reopen it, use + to start a new one, or use the sidebar toggle to collapse and expand the history panel. Past searches are loaded from the backend viaGET /api/v1/search. New conversations created during the current page session appear alongside that history.
Conversations are backed by backend sessions whose ids are prefixed with
search-ui-, so your history survives a page refresh. Legacy single-Q&A entries are read-only; continuing one forks it into a new session.How search works
The UI search calls thePOST /api/v1/recall endpoint with the selected scope. Company Brain behaves like a standard graph retrieval, while Agent Memory adds the most recent agent session and trace context to the results. For details on available search types and parameters, see Search Basics.
The search bar on the Dashboard provides the same functionality inline. The dedicated Search page offers more space for results and conversation history.