Metadata-Version: 2.4
Name: enthusiast-agent-user-manual-search
Version: 1.2.0
Summary: User Manual 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.5.0,<2.0.0)
Requires-Dist: enthusiast_agent_re_act (>=1.2.0)
Requires-Dist: enthusiast_agent_tool_calling (>=1.0.0)
Requires-Dist: langchain (>=0.3.26,<0.4.0)
Project-URL: Documentation, https://upsidelab.io/tools/enthusiast/agents/user-manual-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 User Manual Search Agent

The User Manual agent operates over a collection of product manuals and provides precise, context-aware answers to user or support-team questions. Responses include direct citations with links back to the relevant section of the manual, and the agent performs a sanity check to ensure the answer aligns with the documented information before returning it.

## Installing the User Manual Search Agent

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

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

```python
AVAILABLE_AGENTS = {
    "enthusiast-agent-user-manual-search": {
        "name": "User Manual Search",
        "agent_directory_path": "enthusiast_agent_user_manual_search"
    },
}
```
