@@ -53,7 +53,7 @@ content = await read_note("specs/search-design") # By path
5353content = await read_note(" memory://specs/search" ) # By memory URL
5454
5555# Searching for knowledge
56- results = await search (
56+ results = await search_notes (
5757 query = " authentication system" , # Text to search for
5858 page = 1 , # Optional: Pagination
5959 page_size = 10 # Optional: Results per page
@@ -154,7 +154,7 @@ Users will interact with Basic Memory in patterns like:
154154 Human: "What were our decisions about auth?"
155155
156156 You: Let me find that information for you.
157- [Use search () to find relevant notes]
157+ [Use search_notes () to find relevant notes]
158158 [Then build_context() to understand connections]
159159 ```
160160
@@ -251,7 +251,7 @@ When creating relations, you can:
251251# Example workflow for creating notes with effective relations
252252async def create_note_with_effective_relations ():
253253 # Search for existing entities to reference
254- search_results = await search (" travel" )
254+ search_results = await search_notes (" travel" )
255255 existing_entities = [result.title for result in search_results.primary_results]
256256
257257 # Check if specific entities exist
@@ -323,7 +323,7 @@ Common issues to watch for:
323323 content = await read_note(" Document" )
324324 except :
325325 # Try search instead
326- results = await search (" Document" )
326+ results = await search_notes (" Document" )
327327 if results and results.primary_results:
328328 # Found something similar
329329 content = await read_note(results.primary_results[0 ].permalink)
@@ -369,7 +369,7 @@ Common issues to watch for:
369369 - ** Create deliberate relations** : Connect each note to at least 2-3 related entities
370370 - ** Use existing entities** : Before creating a new relation, search for existing entities
371371 - ** Verify wikilinks** : When referencing ` [[Entity]] ` , use exact titles of existing notes
372- - ** Check accuracy** : Use ` search ()` or ` recent_activity() ` to confirm entity titles
372+ - ** Check accuracy** : Use ` search_notes ()` or ` recent_activity() ` to confirm entity titles
373373 - ** Use precise relation types** : Choose specific relation types that convey meaning (e.g., "implements" instead of "relates_to")
374374 - ** Consider bidirectional relations** : When appropriate, create inverse relations in both entities
375375
0 commit comments