Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 637 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 637 Bytes

Emoji Semantic Search

Screenshot

The app is currently running at emojisearch.app

image

Local test

Get your OpenAI API key at https://openai.com/api/.

Build embedding index:

OPENAI_API_KEY={api_key} python server/data/build.py

Start backend:

OPENAI_API_KEY={api_key} python server/app.py

Start frontend

cd client
npm install  # Run once
REACT_APP_SERVER_ADDRESS="http://localhost:5000" npm start