Skip to content

Commit 492b81d

Browse files
committed
Nick: origin api-sdk in python sdk
1 parent 8a8d7d6 commit 492b81d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/python-sdk/firecrawl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from .firecrawl import FirecrawlApp # noqa
1515

16-
__version__ = "1.10.2"
16+
__version__ = "1.11.0"
1717

1818
# Define the logger for the Firecrawl project
1919
logger: logging.Logger = logging.getLogger("firecrawl")

apps/python-sdk/firecrawl/firecrawl.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,8 @@ def async_extract(self, urls: List[str], params: Optional[Dict[str, Any]] = None
737737
request_data = {
738738
**jsonData,
739739
'allowExternalLinks': params.get('allow_external_links', False) if params else False,
740-
'schema': schema
740+
'schema': schema,
741+
'origin': 'api-sdk'
741742
}
742743

743744
try:

0 commit comments

Comments
 (0)