Skip to content

Commit 948e6c1

Browse files
committed
Fixes typo in examples
1 parent 4ddb701 commit 948e6c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/basic_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
dotenv.load_dotenv()
88

9-
tools = [ScraperAPIAmazonSearchTool(output_format="json")]
9+
tools = [ScraperAPIAmazonSearchTool()]
1010
llm = ChatOpenAI(model_name="gpt-4o", temperature=0)
1111

1212
prompt = ChatPromptTemplate.from_messages(

examples/web_browsing_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
dotenv.load_dotenv()
1313

1414

15-
scraper_tool = ScraperAPITool(output_format="markdown", premium=True, render=True)
15+
scraper_tool = ScraperAPITool()
1616
tools = [scraper_tool]
1717
llm = ChatOpenAI(model_name="gpt-4.1", temperature=0)
1818

0 commit comments

Comments
 (0)