feat: basic function for management of people

- recognize people info by input text or image
- create a people and save into relational database and vector database and object storage
- delete a people by people id
- get peoples with pagination and fitlers by gender, age and height
- get peoples with topN and searching by nature language
This commit is contained in:
2025-10-09 22:07:03 +08:00
parent 7cea2eb8a5
commit 52d1bc5cf4
19 changed files with 1327 additions and 0 deletions

17
pyproject.toml Normal file
View File

@@ -0,0 +1,17 @@
[project]
name = "service"
version = "0.1.0"
description = "This project is the web servcie sub-system for if.u projuect"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alibabacloud-ocr-api20210707>=3.1.3",
"chromadb>=1.1.1",
"fastapi>=0.118.2",
"langchain>=0.3.27",
"langchain-openai>=0.3.35",
"numpy>=2.3.3",
"python-multipart>=0.0.20",
"qiniu>=7.17.0",
"requests>=2.32.5",
]