From d55c23ec07eb6baba8ec3b1df3676118c43dce08 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 17 Apr 2024 21:50:41 -0700 Subject: [PATCH] Update README.md --- README.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b35adfe5..56f8c5cd 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ We provide an easy to use API with our hosted version. You can find the playgrou - [x] [API](https://firecrawl.dev/playground) - [x] [Python SDK](https://github.com/mendableai/firecrawl/tree/main/apps/python-sdk) +- [X] [Node SDK](https://github.com/mendableai/firecrawl/tree/main/apps/js-sdk) - [x] [Langchain Integration 🦜🔗](https://python.langchain.com/docs/integrations/document_loaders/firecrawl/) -- [x] [Llama Index Integration 🦙](https://docs.llamaindex.ai/en/stable/) -- [X] [JS SDK](https://github.com/mendableai/firecrawl/tree/main/apps/js-sdk) +- [x] [Llama Index Integration 🦙](https://docs.llamaindex.ai/en/latest/examples/data_connectors/WebPageDemo/#using-firecrawl-reader) - [ ] LangchainJS - Coming Soon @@ -63,15 +63,16 @@ curl -X GET https://api.firecrawl.dev/v0/crawl/status/1234-5678-9101 \ "total": 22, "data": [ { - "content": "Raw Content ", - "markdown": "# Markdown Content", - "provider": "web-scraper", - "metadata": { - "title": "Mendable | AI for CX and Sales", - "description": "AI for CX and Sales", - "language": null, - "sourceURL": "https://www.mendable.ai/", - } + "content": "Raw Content ", + "markdown": "# Markdown Content", + "provider": "web-scraper", + "metadata": { + "title": "Mendable | AI for CX and Sales", + "description": "AI for CX and Sales", + "language": null, + "sourceURL": "https://www.mendable.ai/", + } + } ] } ```