Spaces:
Paused
Paused
File size: 565 Bytes
48e00e6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
[tool.poetry]
name = "image-search"
version = "0.1.0"
description = ""
authors = ["Andrew Smith <silentworks@supabase.com>"]
readme = "README.md"
packages = [{include = "image_search"}]
[tool.poetry.dependencies]
python = "^3.10"
vecs = "^0.2.6"
sentence-transformers = "^2.2.2"
fastapi = "^0.99.1"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
[tool.poetry.scripts]
start = "image_search.main:start"
seed = "image_search.main:seed"
search = "image_search.main:search"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|