animeic 2 жил өмнө
parent
commit
f19b4c2a6e
2 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 1 1
      readme.md
  2. 1 1
      src/main.py

+ 1 - 1
readme.md

@@ -17,7 +17,7 @@
 # url || image 参数必传
 @app.post('/img/upload')
 
-# file:image,form:limit,table_name
+# file:image,query:limit,table_name
 # image参数必传
 @app.post('/img/search')
 

+ 1 - 1
src/main.py

@@ -96,7 +96,7 @@ async def upload_images(image: UploadFile = File(None),id: str = None,url: str =
 
 # file:image,form:limit,table_name
 @app.post('/img/search')
-async def search_images(image: UploadFile = File(...), limit: int = Form(TOP_K), table_name: str = None):
+async def search_images(image: UploadFile = File(...), limit: int = TOP_K, table_name: str = None):
     # Search the upload image in Milvus/MySQL
     try:
         # Save the upload image to server.