Metadata-Version: 2.4
Name: metta-motto
Version: 0.0.12
Summary: Integration of MeTTa and LLMs for prompt templates, guidance, and chaining as well as composition with other agents.
Home-page: https://github.com/zarqa-ai/metta-motto
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: hyperon>=0.2.4
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Metta Motto

This package provides integration of MeTTa and LLMs for prompt tamplates, guidance, and chaining as well as composition with other agents.

## Installation

The main requirement is [MeTTa](https://github.com/trueagi-io/hyperon-experimental/).

The project itself can be installed via
```bash
git clone git@github.com:zarqa-ai/metta-motto.git
cd metta-motto
```

### Using-pip

Run the following command to install the project using pip:
```bash
pip install metta-motto
```

## Usage

The package can be used both as a Python package
```python
import motto
```

and MeTTa extention
```
!(import! &self motto)
```

Please, refer to the [tutorial](tutorial) and [examples](examples). [Tests](tests) can also be considered in addition.

## Tests

The unit tests can be executed via

```bash
cd tests
pytest
```
