Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 25 additions & 9 deletions docs-firecrawl-llm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs-firecrawl-llm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"main": "index.js",
"type": "module",
"dependencies": {
"@mendable/firecrawl-js": "^1.24.0",
"dotenv": "^16.4.7"
"@mendable/firecrawl-js": "^4.0.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Firecrawl v4 removes LLMs.txt methods used by code

High Severity

Upgrading @mendable/firecrawl-js from ^1.24.0 to ^4.0.0 is a breaking change. The Firecrawl v1→v2 migration guide explicitly states that generateLLMsText(...), asyncGenerateLLMsText(...), and checkGenerateLLMsTextStatus(id) were removed from the v2 SDK. The code in index.js calls both firecrawl.asyncGenerateLLMsText() and firecrawl.checkGenerateLLMsTextStatus(), which will throw TypeError: ... is not a function at runtime with the v4 SDK.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b736f1d. Configure here.

"dotenv": "^17.0.0"
},
"scripts": {
"llms": "node index.js"
Expand Down
Loading