Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lilianweng/emoji-semantic-search
- Owner: lilianweng
- Created: 2022-02-01T06:48:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-01T01:53:16.000Z (almost 2 years ago)
- Last Synced: 2024-11-05T04:34:03.522Z (about 1 month ago)
- Language: Python
- Size: 185 MB
- Stars: 267
- Watchers: 3
- Forks: 27
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome-semantic-search - emoji semantic search
README
# Emoji Semantic Search
## Screenshot
The app is currently running at [emojisearch.app](https://www.emojisearch.app/)
## 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
```