بنقرة واحدة
memory-query
Search semantic memory for facts, relationships, and learned procedures
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Search semantic memory for facts, relationships, and learned procedures
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Permanently learn from a web page by extracting and storing knowledge triples
Quickly read and extract clean content from a web page (temporary, not stored)
Create, update, and track personal goals with priority levels
Recall past conversations and recent activity timeline from episodic memory
Get a structured thematic overview of all knowledge or a specific topic
Browse and explore the knowledge graph interactively
| name | memory-query |
| description | Search semantic memory for facts, relationships, and learned procedures |
Search your long-term semantic memory for facts and relationships.
from sophia_memory import memory
import json
# Search for facts about a topic
results = memory.query("topic to search for", limit=10)
print(json.dumps(results, indent=2))
Look up learned procedures for accomplishing specific tasks:
from sophia_memory import memory
import json
results = memory.query_procedure("goal or task description", limit=10)
print(json.dumps(results, indent=2))