Search
Search your documents and retrieve relevant content
Max: 100
Filter results below this threshold
Filter results by document metadata
Improve result relevance with reranking
Visual document understanding
Additional pages to retrieve before and after matched pages
1from morphik import Morphik23client = Morphik()45results = client.retrieve_chunks(6 query ="your search query",7 k =10,8 min_score =0,9 use_reranking =False,10 use_colpali =True11)1213for result in results:14 print(result.content)