Are you using the FileData property instead of the InlineData? Also, do you specify the MIME type?
Kindly note that files uploaded to File API have a limited lifetime of 48 hours only, and are deleted automatically.
Here’s the payload I generate with my SDK for .NET (built from scratch using the REST calls). Maybe it gives you an idea.
The file header parameter ‘Content Type’ should be set to a file format like ‘video/mp4’ instead of the example ‘Content Type: application/json’ provided by Gemini
How does a parameter responseModalities which applies to the model’s response only have any kind of impact in the parameters used to send a request?
The important part is that the mimeType of the uploaded file has to match its content. If it doesn’t match, then the Gemini API won’t process the file.
I just had the same issue as Findl had, but I’m pretty sure I had proper mime type sent along the request (true mime extracted from the uploaded file, not used file extension), then adding responseModalities just works (found it on Gemini doc).
It indeed doesn’t make sense as it’s an output param, or maybe it needs the image modality defined explicitly before it does look for the input file. Anw, that just worked for me