Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lilianweng/emoji-semantic-search

Search the most relevant emojis given a natural language query
https://github.com/lilianweng/emoji-semantic-search

Last synced: 13 days ago
JSON representation

Search the most relevant emojis given a natural language query

Awesome Lists containing this project

README

        

# Emoji Semantic Search

## Screenshot

The app is currently running at [emojisearch.app](https://www.emojisearch.app/)

image

## Local test

Get your OpenAI API key at [https://openai.com/api/](https://openai.com/api/).

Build embedding index:
```bash
OPENAI_API_KEY={api_key} python server/data/build.py
```

Start backend:
```bash
OPENAI_API_KEY={api_key} python server/app.py
```

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