I'm trying to send two images from spring boot to fastAPI using FeignClient, the API accepts two UploadFile as parameter : async def predict_img(image1: UploadFile = File(...), image2: UploadFile = File(...)):
How do I got about doing this?
I'm trying to send two images from spring boot to fastAPI using FeignClient, the API accepts two UploadFile as parameter : async def predict_img(image1: UploadFile = File(...), image2: UploadFile = File(...)):
How do I got about doing this?