Skip to content
Merged
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
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,26 +50,30 @@ Lightfeed Extractor is a Typescript library built for robust web data extraction

## Installation

Install the extractor:

```bash
npm install @lightfeed/extractor @langchain/openai
npm install @lightfeed/extractor
```

Install the LangChain integration package for your chosen provider. `@langchain/core` is a peer dependency — it's shared automatically:
Then install the LLM provider you want to use:

```bash
# OpenAI
npm install @lightfeed/extractor @langchain/openai
npm install @langchain/openai

# Google Gemini
npm install @lightfeed/extractor @langchain/google-genai
npm install @langchain/google-genai

# Anthropic
npm install @lightfeed/extractor @langchain/anthropic
npm install @langchain/anthropic

# Ollama (local models)
npm install @lightfeed/extractor @langchain/ollama
npm install @langchain/ollama
```

`@langchain/core` will be installed automatically as a peer dependency.

## Usage

### E-commerce Product Extraction
Expand Down
Loading