No matter when the requests made, i always get 429 error with this request:
```
curl https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash-lite:batchGenerateContent
-H “x-goog-api-key: TOKEN”
-X POST
-H “Content-Type: application/json”
-d ‘{
“batch”: {
“display_name”: “my-batch-requests”,
“input_config”: {
“requests”: {
“requests”: [
{
“request”: {
“contents”: [
{
“parts”: [
{
“text”: “Tell me a fun fact about the ocean.”
}
]
}
]
}
},
{
“request”: {
“contents”: [
{
“parts”: [
{
“text”: “What is the capital of Finland?”
}
]
}
]
}
}
]
}
}
}
}’