mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-28 21:01:55 +08:00
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:
parent
29ef63d85a
commit
007ff084c6
@ -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
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user