fix(browser_base_fetch): correct function signature and async_mode handling

- Added missing `async_mode` parameter to the function signature.
This commit is contained in:
Tuhin Mallick 2024-09-08 10:59:04 +02:00 committed by GitHub
parent 29ef63d85a
commit 007ff084c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@ browserbase integration module
"""
from typing import List
def browser_base_fetch(api_key: str, project_id: str, link: List[str], text_content: bool = True) -> List[str]:
def browser_base_fetch(api_key: str, project_id: str, link: List[str], text_content: bool = True, async_mode: bool = False) -> List[str]:
"""
BrowserBase Fetch