firecrawl 1.10.1__tar.gz → 1.11.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of firecrawl might be problematic. Click here for more details.
- {firecrawl-1.10.1 → firecrawl-1.11.0}/PKG-INFO +1 -1
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl/__init__.py +1 -1
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl/firecrawl.py +7 -1
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl.egg-info/PKG-INFO +1 -1
- {firecrawl-1.10.1 → firecrawl-1.11.0}/LICENSE +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/README.md +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl/__tests__/e2e_withAuth/__init__.py +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl/__tests__/e2e_withAuth/test.py +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl/__tests__/v1/e2e_withAuth/__init__.py +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl/__tests__/v1/e2e_withAuth/test.py +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl.egg-info/SOURCES.txt +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl.egg-info/dependency_links.txt +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl.egg-info/requires.txt +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/firecrawl.egg-info/top_level.txt +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/pyproject.toml +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/setup.cfg +0 -0
- {firecrawl-1.10.1 → firecrawl-1.11.0}/setup.py +0 -0
|
@@ -51,6 +51,11 @@ class FirecrawlApp:
|
|
|
51
51
|
schema_: Optional[Any] = pydantic.Field(None, alias='schema')
|
|
52
52
|
system_prompt: Optional[str] = None
|
|
53
53
|
allow_external_links: Optional[bool] = False
|
|
54
|
+
enable_web_search: Optional[bool] = False
|
|
55
|
+
# Just for backwards compatibility
|
|
56
|
+
enableWebSearch: Optional[bool] = False
|
|
57
|
+
|
|
58
|
+
|
|
54
59
|
|
|
55
60
|
class ExtractResponse(pydantic.BaseModel):
|
|
56
61
|
"""
|
|
@@ -732,7 +737,8 @@ class FirecrawlApp:
|
|
|
732
737
|
request_data = {
|
|
733
738
|
**jsonData,
|
|
734
739
|
'allowExternalLinks': params.get('allow_external_links', False) if params else False,
|
|
735
|
-
'schema': schema
|
|
740
|
+
'schema': schema,
|
|
741
|
+
'origin': 'api-sdk'
|
|
736
742
|
}
|
|
737
743
|
|
|
738
744
|
try:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|