Sending image from Spring Boot to Python FastAPI

Viewed 18

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?

0 Answers
Related