Metadata-Version: 2.4
Name: llm-eliza
Version: 0.1.0
Summary: LLM plugin providing access to the ELIZA chatbot
Keywords: llm,plugin,eliza,chatbot
Author: Evan Hahn
Author-email: Evan Hahn <me@evanhahn.com>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
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.9
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Dist: llm>=0.28
Requires-Python: >=3.14
Project-URL: Homepage, https://codeberg.org/EvanHahn/llm-eliza
Project-URL: Issues, https://codeberg.org/EvanHahn/llm-eliza/issues
Project-URL: Repository, https://codeberg.org/EvanHahn/llm-eliza.git
Description-Content-Type: text/markdown

# llm-eliza

[LLM] plugin providing access to the [ELIZA] language model. ELIZA, released in 1966, is a state-of-the-art language model. It offers zero-GPU inference with sub-millisecond semantic throughput, and scores highly on EQ measurements (emotional intelligence).

## Installation

Install this plugin in the same environment as [LLM].

```sh
llm install llm-eliza
```

## Usage

Start an interactive chat session:

```sh
llm chat -m eliza
```

Ask a one-off query:

```sh
llm -m eliza "i'm worried about computers."
# => What do you think machines have to do with your problem?
```

## Development

To set up this plugin locally, first checkout the code. Then install it:

```sh
llm install -e .
```

To run the tests:

```sh
uv sync
uv run python -m unittest discover -s tests -v
```

[LLM]: https://llm.datasette.io/
[ELIZA]: https://en.wikipedia.org/wiki/ELIZA