Essofore - a document store powered by semantic search

What is Essofore?

Essofore is a document store powered by a semantic search engine that understands the meaning of your query rather than searching for keywords in your query.

Who is it for?

You are a developer in a large organization in charge of developing their enterprise search or RAG applications.

Top 3 Problems Solved

Top 10 Highlights

Example


    from essofore_client.api.collections import create_collection, upload_document, search
    from essofore_client.models.document_type import DocumentType
    create_collection.sync_detailed(collection_id="1", title="Sherlock Holmes", client=client)
    with open(file, 'rb') as f:
      upload_document.sync_detailed(client=client,
                                  collection_id = "1",
                                  document_id = "pg2350",
                                  title="The Hound of the Baskervilles", 
                                  doc_type=DocumentType.TXT,
                                  source_url = url,
                                  body=Blob(f))
   response = search.sync_detailed(client=client, collection_id="1", q="Who is Sherlock Holmes?", k=5)
   for r in response.parsed:
       print_search_result(r)    
  

Free Trial available. Contact Us.