From 0721828d171a9dd5b106da8e119ef0be6587bfa6 Mon Sep 17 00:00:00 2001 From: onur-askui <210008309+onur-askui@users.noreply.github.com> Date: Wed, 11 Jun 2025 09:03:00 +0200 Subject: [PATCH] update openrouter example --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 34b28c15..8ffe9786 100644 --- a/README.md +++ b/README.md @@ -461,8 +461,7 @@ custom_models: ModelRegistry = { ), } -with VisionAgent(model_registry=custom_registry, model={"get":"my-custom-model"}) as agent: - agent.click("search field") +with VisionAgent(models=custom_registry, model={"get":"my-custom-model"}) as agent: result = agent.get("What is the main heading on the screen?") print(result) ```