Skip to content

Commit

Permalink
fix search link; overview
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalef committed Oct 14, 2023
1 parent bf0b068 commit aeb32f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
7 changes: 2 additions & 5 deletions docs/sdk/documents.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,7 @@ If you'd like to create the embedding vectors yourself and provide these to Zep,

documents = SimpleDirectoryReader("documents/").load_data()
storage_context = StorageContext.from_defaults(vector_store=vector_store)
index = VectorStoreIndex.from_documents(
documents,
storage_context=storage_context
)
index = VectorStoreIndex.from_documents(documents, storage_context=storage_context)
```

### Chunking your documents
Expand Down Expand Up @@ -304,7 +301,7 @@ Either a text query or an embedding vector can be used to search a collection.

Zep's Collection and Memory search support semantic search queries, JSONPath-based metadata filters, and a combination of both. Memory search also supports querying by message creation date.

Read more about [constructing search queries](../search_query.md).
Read more about [constructing search queries](search_query.md).

=== ":fontawesome-brands-python: Python"

Expand Down
5 changes: 3 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ nav:
- Home: index.md
- Quick Start ⚡️: deployment/quickstart.md
- SDKs and API:
- sdk/index.md
- Installation:
- sdk/index.md
- Document Store:
- sdk/documents.md
- Chat History:
- sdk/chat_history/index.md
- Overview: sdk/chat_history/index.md
- Users: sdk/chat_history/users.md
- Sessions: sdk/chat_history/sessions.md
- Memories: sdk/chat_history/memories.md
Expand Down

0 comments on commit aeb32f4

Please sign in to comment.