Metadata-Version: 2.4
Name: elizaos-plugin-eliza-classic
Version: 2.0.0a5
Summary: Classic ELIZA pattern matching plugin for elizaOS - no LLM required
Project-URL: Homepage, https://github.com/elizaos-plugins/plugin-eliza-classic
Project-URL: Repository, https://github.com/elizaos-plugins/plugin-eliza-classic
Author: elizaOS Contributors
License-Expression: MIT
License-File: LICENSE
Keywords: agent,chatbot,eliza,elizaos,pattern-matching
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest-xprocess<1.0.0,>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# elizaos-plugin-eliza-classic

Python implementation of the Classic ELIZA pattern matching plugin for elizaOS.

## Installation

```bash
pip install elizaos-plugin-eliza-classic
```

## Usage

```python
from elizaos_plugin_eliza_classic import ElizaClassicPlugin

plugin = ElizaClassicPlugin()

# Generate a response
response = plugin.generate_response("I feel sad today")
print(response)  # => "I am sorry to hear that you are feeling that way."

# Get the greeting
greeting = plugin.get_greeting()
print(greeting)  # => "Hello. I am ELIZA..."
```

## License

MIT



