使用模型: BAAI/bge-large-zh-v1.5
pip3 install -r requirements.txt
根目录使用:
sh launcher.sh
cd src
uvicorn app:app --host 0.0.0.0 --port 8000 --reload
后端服务测试:
http://localhost:8000/frontend/index.html
报错:
/usr/local/bin/python3.10 /Users/lemon/PythonProject/SearchSimilarText/src/main.py
INFO: Will watch for changes in these directories: ['/Users/lemon/PythonProject/SearchSimilarText/src']
ERROR: [Errno 48] Address already in use
查看端口占用情况:
lsof -i :8000
杀死对应的进程:
kill -9 [PID]