khoj/environment.yml
Debanjum Singh Solanky d75df54385 Create API interface for Semantic Search
Use FastAPI, Uvicorn to create app with API endpoint at /search
Example Query: http://localhost:8000/?q="why sleep?"&t="notes'&n=5
2021-08-15 18:11:48 -07:00

11 lines
No EOL
172 B
YAML

name: semantic-search
channels:
- conda-forge
dependencies:
- python=3.*
- numpy=1.21.*
- pytorch
- transformers
- sentence-transformers
- fastapi
- uvicorn