response = model.generate_content(contents=“Who won Wimbledon this year?”)
runs without problems. But if I add tools=‘google_search_retrieval’ as described in the documentation:
response = model.generate_content(contents=“Who won Wimbledon this year?”,
tools=‘google_search_retrieval’)
then I get the error message: ResourceExhausted: 429 Resource has been exhausted (e.g. check quota).
Is tools=‘google_search_retrieval’ available only for paid account? Thank you!