personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

increase genai retry attempts from 5 to 8

Default 5 attempts (~15s retry window) was insufficient for transient
503 spikes on gemini-3-flash-preview. 8 attempts extends the window to
~2 minutes before giving up.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

+1 -1
+1 -1
think/providers/google.py
··· 86 86 raise ValueError("GOOGLE_API_KEY not found in environment") 87 87 client = genai.Client( 88 88 api_key=api_key, 89 - http_options=types.HttpOptions(retry_options=types.HttpRetryOptions()), 89 + http_options=types.HttpOptions(retry_options=types.HttpRetryOptions(attempts=8)), 90 90 ) 91 91 return client 92 92