From ec8e830e7be911ad72d16dac4080c6ce29a6eacc Mon Sep 17 00:00:00 2001 From: Rehan Date: Thu, 6 Feb 2025 23:56:14 -0500 Subject: [PATCH] Fix Typo (#529) --- examples/open_deep_research/scripts/text_web_browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/open_deep_research/scripts/text_web_browser.py b/examples/open_deep_research/scripts/text_web_browser.py index 4a95a6a..18763c4 100644 --- a/examples/open_deep_research/scripts/text_web_browser.py +++ b/examples/open_deep_research/scripts/text_web_browser.py @@ -394,7 +394,7 @@ class SearchInformationTool(Tool): class VisitTool(Tool): name = "visit_page" description = "Visit a webpage at a given URL and return its text. Given a url to a YouTube video, this returns the transcript." - inputs = {"url": {"type": "string", "description": "The relative or absolute url of the webapge to visit."}} + inputs = {"url": {"type": "string", "description": "The relative or absolute url of the webpage to visit."}} output_type = "string" def __init__(self, browser):