Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Gemini #492

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lmms_eval/models/gemini_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ def get_uuid(task, split, doc_id):

message = [contexts] + visuals

content = ""

for attempt in range(5):
try:
content = self.model.generate_content(
Expand All @@ -172,7 +174,7 @@ def get_uuid(task, split, doc_id):
break
except Exception:
pass
if attempt < 5 - 1: # If we have retries left, sleep and then continue to next attempt
if attempt < 4 - 1: # If we have retries left, sleep and then continue to next attempt
time.sleep(NUM_SECONDS_TO_SLEEP)
else: # If this was the last attempt, log and return empty
eval_logger.error(f"All 5 attempts failed. Last error message: {str(e)}")
Expand Down
Loading