Metadata-Version: 2.1
Name: langchain_interpreter
Version: 0.0.5
Summary: A way to turn json into langchain pipelines.
Project-URL: Homepage, https://github.com/eoriont/langchain_interpreter
Project-URL: Bug Tracker, https://github.com/eoriont/langchain_interpreter/issues
Author-email: Elijah Tarr <elijahotarr@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Langchain Interpreter

[![Documentation Status](https://readthedocs.org/projects/langchain-interpreter/badge/?version=latest)](https://langchain-interpreter.readthedocs.io/en/latest/?badge=latest)

This project aims to allow for langchain pipelines to be created from a config file.

Documentation: https://langchain-interpreter.readthedocs.io/

## To publish

1. Update version number in `pyproject.toml`

2.
        python -m build

3.
        twine upload --skip-existing dist/*

## Documentation

This command generates docs for each module? (run in project dir)

```
sphinx-apidoc -f -o docs src/langchain_interpreter/
```

This command builds the docs:
```
cd docs
make html
```

This command cleans the html out:
```
cd docs
make clean
```

## For examples

Install the project:
```
pip install -e .
```
