Skip to content

Commit

Permalink
Nick: origin api-sdk in python sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
nickscamara committed Jan 31, 2025
1 parent 8a8d7d6 commit 492b81d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/python-sdk/firecrawl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from .firecrawl import FirecrawlApp # noqa

__version__ = "1.10.2"
__version__ = "1.11.0"

# Define the logger for the Firecrawl project
logger: logging.Logger = logging.getLogger("firecrawl")
Expand Down
3 changes: 2 additions & 1 deletion apps/python-sdk/firecrawl/firecrawl.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,8 @@ def async_extract(self, urls: List[str], params: Optional[Dict[str, Any]] = None
request_data = {
**jsonData,
'allowExternalLinks': params.get('allow_external_links', False) if params else False,
'schema': schema
'schema': schema,
'origin': 'api-sdk'
}

try:
Expand Down

0 comments on commit 492b81d

Please sign in to comment.