edit: faiss 전용 rest 서버 추가

This commit is contained in:
2025-04-28 11:26:19 +09:00
parent 19e62f5724
commit 6b212125a4
76 changed files with 6014 additions and 92 deletions

6
rest_main.py Normal file
View File

@@ -0,0 +1,6 @@
import uvicorn
from main_rest.app.common.config import conf
if __name__ == '__main__':
uvicorn.run('main_rest.app.main:app', host='0.0.0.0', port=conf().REST_SERVER_PORT, reload=True)