Metadata-Version: 2.4
Name: enthusiast-agent-product-search
Version: 1.3.0
Summary: Product Search Agent for Enthusiast
Author: Damian Sowiński
Author-email: damian.sowinski@upsidelab.io
Requires-Python: >=3.10,<4
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: enthusiast-common (>=1.6.0,<2.0.0)
Requires-Dist: enthusiast_agent_tool_calling (>=1.1.0)
Requires-Dist: langchain (>=0.3.26,<0.4.0)
Project-URL: Documentation, https://upsidelab.io/tools/enthusiast/agents/product-search
Project-URL: Homepage, https://upsidelab.io/tools/enthusiast
Project-URL: Issues, https://github.com/upsidelab/enthusiast/issues
Project-URL: Repository, https://github.com/upsidelab/enthusiast.git
Description-Content-Type: text/markdown

# Enthusiast Product Search Agent

The Product Search agent takes unstructured user requests - anything from a rough idea to a precise query - and filters your product catalog to find relevant matches. When the request is ambiguous or too broad, it asks targeted follow-up questions until it narrows the results to the desired number of products.

## Installing the Product Search Agent

Run the following command inside your application directory:
```commandline
poetry add enthusiast-agent-product-search
```

Then, register the agent in your config/settings_override.py.

```python
AVAILABLE_AGENTS = [
    'enthusiast_agent_product_search.ProductSearchAgent',
]
```
