Skip to content

Instantly share code, notes, and snippets.

@khaerulumam42
Created February 10, 2025 10:51
Show Gist options
  • Save khaerulumam42/c16d1e6b94a197f913f3527d96128ccd to your computer and use it in GitHub Desktop.
Save khaerulumam42/c16d1e6b94a197f913f3527d96128ccd to your computer and use it in GitHub Desktop.
# Search for similar documents
query = 'bagaimana cara ganti pin?'
similar_docs = search_similar_documents(vector_store, query)
# Print results
for doc in similar_docs:
print(f'Similar document: {doc.page_content}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment