Metadata-Version: 2.4
Name: langchain-human-fallback
Version: 0.0.1
Summary: Utilities for adding human fallback flows to LangChain apps.
Author: CodeVF LLC
License: MIT
Project-URL: Homepage, https://github.com/codevfllc/langchain-human-fallback
Project-URL: Repository, https://github.com/codevfllc/langchain-human-fallback
Project-URL: Issues, https://github.com/codevfllc/langchain-human-fallback/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# langchain-human-fallback

`langchain-human-fallback` is a small Python package scaffold for human-in-the-loop fallback patterns in LangChain-style applications.

## Install (local)

```bash
python3 -m pip install -e .
```

## Build package artifacts

```bash
python3 -m pip install --upgrade build
python3 -m build
```

This creates:
- `dist/langchain_human_fallback-<version>.tar.gz`
- `dist/langchain_human_fallback-<version>-py3-none-any.whl`

## Publish to PyPI

```bash
python3 -m pip install --upgrade twine
python3 -m twine upload dist/*
```

Tip: publish once ASAP with this name to claim it, then iterate on functionality in later releases.
