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: Explicitly Add google-api-core to Dependencies #1027

Merged

Conversation

pppp606
Copy link
Contributor

@pppp606 pppp606 commented Mar 14, 2025

Currently, google-api-core is only installed when optional dependencies are included, but it is directly imported in the code. This leads to an import error when running without optional dependencies, causing an infinite loop in error handling.

else:
from google.api_core.exceptions import ResourceExhausted
from openai import RateLimitError
if isinstance(error, RateLimitError) or isinstance(error, ResourceExhausted):
logger.warning(f'{prefix}{error_msg}')
await asyncio.sleep(self.settings.retry_delay)
self.state.consecutive_failures += 1
else:
logger.error(f'{prefix}{error_msg}')
self.state.consecutive_failures += 1

To prevent this, google-api-core has been explicitly added to pyproject.toml under dependencies, ensuring it is always installed and avoiding unexpected failures due to missing dependencies.

Fixes #1001
Fixes #1020

@pppp606 pppp606 marked this pull request as ready for review March 14, 2025 18:07
@CLAassistant
Copy link

CLAassistant commented Mar 14, 2025

CLA assistant check
All committers have signed the CLA.

@pirate pirate merged commit d2bf968 into browser-use:main Mar 26, 2025
1 check passed
@pirate
Copy link
Member

pirate commented Mar 26, 2025

thanks 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

blank chromium page at step 1, nothing happens OpenAI 400-level error loop fails to stop the Agent
3 participants