The launch moved.
The reason didn’t get lost.
The team needed another week to finish the integration. The decision is in Monday’s conversation; the new date is in the launch brief.
The words in a question may differ from the words in a memory. Combine keyword and similarity search to find useful context, then connect graph and resource retrieval where your application needs them.
Search with context.
The launch moved.
The reason didn’t get lost.
The team needed another week to finish the integration. The decision is in Monday’s conversation; the new date is in the launch brief.
Bring relevant evidence into your agent’s response, with the source still attached.
Ask why a customer paused a project. The useful context could include their last conversation, a delivery procedure, and the original brief. Combine retrieval methods in your application to find relevant evidence across the memory it keeps.
Search past events and decisions in episodic memory. Recover what happened with the context attached to the experience.
Similarity search can find related information without an exact phrase match. A question about a delayed launch can lead to a note about a postponed release.
Graph retrieval connects the question to people, projects, and related facts. Use relationships to add context around a match.
Search stored resources such as briefs and reports. Retrieve the original material your agent needs to support its response.
Names, product codes, and precise phrases matter. Keyword search complements similarity search when the exact wording is important.
The engine offers weighted scoring and rank fusion to combine search results. Choose the retrieval strategy your application needs to produce a focused list.
Search the episodic memory index with a natural-language question. The HTTP endpoint returns matching record IDs and relevance scores, ready for your application to look up and use in its response.
# Use your configured Mind endpoint and an authorized token.
curl "$AKASHA_URL/v1/memory/retrieval/hybrid" \
-H "Authorization: Bearer $AKASHA_TOKEN" \
-H "x-akasha-capability: $AKASHA_CAPABILITY" \
-H "Content-Type: application/json" \
-d '{"text":"Why did Q3 revenue dip?","limit":5}'
# Response: {"rows":[{"id":"<record-id>","score":0.82}]}
# Example score; results depend on the stored information.The HTTP memory endpoint combines keyword and vector retrieval over the episodic index. Connect the graph and resource interfaces in your application when a question needs additional context.
Use the right retrieval methods to bring relevant knowledge into your application. Start with a question your agent needs to answer.