Metadata-Version: 2.4
Name: enthusiast-agent-catalog-web-import
Version: 1.0.0
Summary: Catalog Web Import Agent for Enthusiast
Author: Dawid Mularczyk
Author-email: dawid.mularczyk@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: beautifulsoup4 (>=4.14.2,<5.0.0)
Requires-Dist: curl_cffi (>=0.7.0,<1.0.0)
Requires-Dist: enthusiast-agent-tool-calling (>=1.2.0)
Requires-Dist: enthusiast-agent-tools (>=1.0.0,<2.0.0)
Requires-Dist: enthusiast-common (>=1.7.0,<2.0.0)
Requires-Dist: langchain (>=1.2.0,<2.0.0)
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 Catalog Web Import Agent

The Catalog Web Import agent accepts one or more product page URLs, fetches and extracts structured product data using an LLM, and upserts the results directly into the configured ecommerce platform. When confirmation mode is enabled (default), the agent presents extracted data to the user and waits for approval before writing to the catalog.

## Installing the Catalog Web Import Agent

Run the following command inside your application directory:
```commandline
poetry add enthusiast-agent-catalog-web-import
```

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

```python
AVAILABLE_AGENTS = [
    'enthusiast_agent_catalog_web_import.CatalogWebImportAgent',
]
```

To also register the agentic execution definition, add the following to your config/settings_override.py:

```python
AVAILABLE_AGENTIC_EXECUTION_DEFINITIONS = [
    'enthusiast_agent_catalog_web_import.CatalogWebImportExecutionDefinition',
]
```

