17 lines
631 B
Markdown
17 lines
631 B
Markdown
# Comparative Review Agent
|
||
|
||
This repository contains a **LangGraph** agent that builds a comparative review of three entities (e.g., technologies, products or approaches) using the Tavily search engine.
|
||
|
||
## Features
|
||
- Generates comparison criteria via an LLM.
|
||
- Performs web searches for each entity‑criterion pair with Tavily.
|
||
- Builds a Markdown table summarizing findings.
|
||
- Produces a concise verdict on which entity is best for each use case.
|
||
- CLI interface: `python -m src.compare_agent --entities A B C`.
|
||
|
||
## Requirements
|
||
```bash
|
||
pip install -r requirements.txt
|
||
```
|
||
|
||
See `requirements.txt` for the exact package versions. |