firecrawl-py 1.13.3__tar.gz → 1.13.4__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-py might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl-py
3
- Version: 1.13.3
3
+ Version: 1.13.4
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
@@ -13,7 +13,7 @@ import os
13
13
 
14
14
  from .firecrawl import FirecrawlApp # noqa
15
15
 
16
- __version__ = "1.13.3"
16
+ __version__ = "1.13.4"
17
17
 
18
18
  # Define the logger for the Firecrawl project
19
19
  logger: logging.Logger = logging.getLogger("firecrawl")
@@ -669,9 +669,9 @@ class FirecrawlApp:
669
669
  schema = schema.model_json_schema()
670
670
  # Otherwise assume it's already a JSON schema dict
671
671
 
672
- jsonData = {'urls': urls, **params}
673
672
  request_data = {
674
- **jsonData,
673
+ 'urls': urls,
674
+ 'prompt': params.get('prompt', None),
675
675
  'allowExternalLinks': params.get('allow_external_links', params.get('allowExternalLinks', False)),
676
676
  'enableWebSearch': params.get('enable_web_search', params.get('enableWebSearch', False)),
677
677
  'showSources': params.get('show_sources', params.get('showSources', False)),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl-py
3
- Version: 1.13.3
3
+ Version: 1.13.4
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
@@ -0,0 +1,3 @@
1
+ build
2
+ dist
3
+ firecrawl
@@ -1 +0,0 @@
1
- firecrawl
File without changes
File without changes
File without changes
File without changes