init commit,

This commit is contained in:
louiscklaw
2025-05-28 09:55:51 +08:00
commit efe70ceb69
8042 changed files with 951668 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
[tool.poetry]
name = "image-search"
version = "0.1.0"
description = "Image Search with Supabase Vector"
authors = ["thorwebdev <thor@supabase.io>"]
readme = "README.md"
packages = [{include = "image_search"}]
[tool.poetry.dependencies]
python = "^3.11"
sentence-transformers = "^2.2.2"
vecs = "^0.2.4"
matplotlib = "^3.7.1"
[tool.poetry.scripts]
seed = "image_search.main:seed"
search = "image_search.main:search"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"