AI search:
your data + 10 lines of code.

What?

For example, here's a search bar on 1/5 of Wikipedia, 40 GB of text. Try it!

Enter

How?

As promised, 10 lines of code:

import simon
context = simon.create_context("wikisearch", openai_api_key="sk-mykey", db_config={**postgres_creds})
simon.setup(context) # do this once per *database*

# store some articles
ds = simon.Datastore(context)
articles = ["https://en.wikipedia.org/wiki/Chicken", ...]
for i in articles:
ds.store_remote(i)

# search the articles
s = simon.Search(context)
json_results = s.query("what's a chicken")

Epic!

Ready to make your data work for you? pip install simon-search and let's rock: Quick Start Guide

Have a question? Want to contribute? Reach out on GitHub! We are eager to help you get semantic searching 🙌