Unable to upload files to Gemini 2.0 : File not exists in Gemini API

Hello.

I’m trying to use REST file upload API.
First, I’m uploading the file: (it’s in PHP).

        $requestFile = $this->gaiHttpClient->request('POST', '/upload/v1beta/files', [
            'body' => [
                'file' => $input->getFile()
            ]
        ]);

It’s works well - i’m getting a “https://generativelanguage.googleapis.com/v1beta/files/xxxmyfilexxx” URI.
When I’m trying to get the file using API, it’s telling that the file is “ACTIVE”.

But, when I’m trying to do a prompt with this URI using REST "/v1beta/models/gemini-2.0-flash:generateContent, I got this error :

File https://generativelanguage.googleapis.com/v1beta/files/xxxmyfilexxx not exist in the Gemini API.

Does anyone already encoutered this error?

(using inlineData it’s working well but my files are >10mb size so I need to pass an URI)

Hi @findl

Welcome to the forum.

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.

{
  "model" : "models/gemini-2.0-flash-exp",
  "contents" : [ {
    "role" : "user",
    "parts" : [ {
      "text" : "Describe the image with a creative description"
    }, {
      "fileData" : {
        "fileUri" : "https://generativelanguage.googleapis.com/v1beta/files/temb1dhk7gbe",
        "mimeType" : "image/jpeg"
      }
    } ]
  } ]
}

BTW, the limit is 20MB for inline data, as per documentation.

Cheers.

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

1 Like

‘generationConfig’ => [
‘temperature’ => 1,
‘topK’ => 40,
‘topP’ => 0.95,
‘maxOutputTokens’ => 8192,
‘responseModalities’ => [‘text’, ‘image’],
‘responseMimeType’ => ‘text/plain’
]

Make sure you have “responseModalities” with text and image. Happened to me, php, but solved it.

Hi @quangthien27

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.

Cheers.

You maybe right.

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 :melting_face: