4cd2d4af2b
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
"""
|
|
Example: Using a fallback LLM model.
|
|
|
|
When the primary LLM fails with rate limits (429), authentication errors (401),
|
|
payment/credit errors (402), or server errors (500, 502, 503, 504), the agent
|
|
automatically switches to the fallback model and continues execution.
|
|
|
|
Note: The primary LLM will first exhaust its own retry logic (typically 5 attempts
|
|
with exponential backoff) before the fallback is triggered. This means transient errors
|
|
are handled by the provider's built-in retries, and the fallback only kicks in when
|
|
the provider truly can't recover.
|
|
|
|
This is useful for:
|
|
- High availability: Keep your agent running even when one provider has issues
|
|
- Cost optimization: Use a cheaper model as fallback when the primary is rate limited
|
|
- Multi-provider resilience: Switch between OpenAI, Anthropic, Google, etc.
|
|
|
|
@dev You need to add OPENAI_API_KEY and ANTHROPIC_API_KEY to your environment variables.
|
|
"""
|
|
|
|
import asyncio
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
from browser_use import Agent
|
|
from browser_use.llm import ChatAnthropic, ChatOpenAI
|
|
|
|
llm = ChatAnthropic(model='claude-sonnet-4-0')
|
|
fallback_llm = ChatOpenAI(model='gpt-4o')
|
|
|
|
agent = Agent(
|
|
task='Go to github.com and find the browser-use repository',
|
|
llm=llm,
|
|
fallback_llm=fallback_llm,
|
|
)
|
|
|
|
|
|
async def main():
|
|
result = await agent.run()
|
|
print(result)
|
|
|
|
# You can check if fallback was used:
|
|
if agent.is_using_fallback_llm:
|
|
print('Note: Agent switched to fallback LLM during execution')
|
|
print(f'Current model: {agent.current_llm_model}')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|