Metadata-Version: 2.3
Name: tnh-scholar
Version: 0.2.1
Summary: TNH Scholar is an AI-driven project designed to explore, query, and translate the teachings of Thich Nhat Hanh and Plum Village community.
License: GPL-3.0-only
Keywords: nlp,dharma,processing,text,translation,ai
Author: Aaron K. Solomon
Author-email: aaron.kyle.solomon@gmail.com
Requires-Python: >=3.12,<3.13
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: gui
Provides-Extra: ocr
Provides-Extra: query
Requires-Dist: beautifulsoup4 (==4.12.3) ; extra == "query"
Requires-Dist: click (==8.1.8)
Requires-Dist: colorlog (==6.9.0)
Requires-Dist: ebooklib (==0.18) ; extra == "query"
Requires-Dist: fitz (==0.0.1.dev2) ; extra == "ocr"
Requires-Dist: flask (==3.1.0)
Requires-Dist: gitpython (==3.1.44)
Requires-Dist: google-cloud (==0.34.0) ; extra == "ocr"
Requires-Dist: google-cloud-vision (==3.9.0) ; extra == "ocr"
Requires-Dist: jinja2 (==3.1.5)
Requires-Dist: langchain-community (==0.3.13) ; extra == "gui"
Requires-Dist: langdetect (==1.0.9)
Requires-Dist: lxml (==5.3.0)
Requires-Dist: nltk (==3.9.1)
Requires-Dist: numpy (==2.0.2)
Requires-Dist: openai (==2.5.0)
Requires-Dist: openai-whisper (==20240930)
Requires-Dist: packaging (==24.2)
Requires-Dist: pdf2image (==1.17.0) ; extra == "ocr"
Requires-Dist: pillow (==11.1.0) ; extra == "ocr"
Requires-Dist: pycountry (==24.6.1)
Requires-Dist: pydantic (==2.10.4)
Requires-Dist: pydantic-settings (==2.6.1)
Requires-Dist: pydub (==0.25.1)
Requires-Dist: pyngrok (==7.2.3)
Requires-Dist: python-dotenv (==1.0.1)
Requires-Dist: python-json-logger (==2.0.7)
Requires-Dist: pyyaml (==6.0.2)
Requires-Dist: regex (==2024.11.6)
Requires-Dist: requests (==2.32.3)
Requires-Dist: spacy (==3.8.3) ; extra == "query"
Requires-Dist: streamlit (==1.41.1) ; extra == "gui"
Requires-Dist: supabase (==2.11.0) ; extra == "gui"
Requires-Dist: tenacity (==9.0.0)
Requires-Dist: tiktoken (==0.8.0)
Requires-Dist: torch (==2.5.1)
Requires-Dist: tqdm (==4.67.1)
Requires-Dist: transformers (==4.48)
Requires-Dist: unidecode (==1.3.8)
Requires-Dist: yt-dlp (>=2025.1.15)
Project-URL: Bug Tracker, https://github.com/aaronksolomon/tnh-scholar/issues
Project-URL: Documentation, https://aaronksolomon.github.io/tnh-scholar/
Project-URL: Homepage, https://aaronksolomon.github.io/tnh-scholar/
Description-Content-Type: text/markdown

# TNH Scholar README

TNH Scholar is an AI-driven project designed to explore, query, process and translate the teachings of Thich Nhat Hanh and the Plum Village community. The project provides tools for practitioners and scholars to engage with mindfulness and spiritual wisdom through natural language processing and machine learning models.

## Vision & Goals

TNH Scholar aims to make the teachings of Thich Nhat Hanh and the Plum Village tradition more accessible and discoverable through modern AI techniques. By combining natural language processing, machine learning, semantic search, and careful curation, we create pathways for practitioners and scholars to translate, search, organize, process and otherwise find meaningful connections among the body of teachings.

## Features

TNH Scholar is currently in active prototyping. Key capabilities:

- **Audio and transcript processing**: `audio-transcribe` with diarization and YouTube support
- **Text formatting and translation**: `tnh-gen` CLI (rename in flight; see [ADR-VSC01](docs/architecture/ui-ux/vs-code-integration/adr-vsc01-vscode-integration-strategy.md) and [ADR-VSC02](docs/architecture/ui-ux/vs-code-integration/adr-vsc02-tnh-gen-cli-implementation.md)) for punctuation, translation, sectioning, and prompt-driven processing
- **Acquisition utilities**: `ytt-fetch` for transcripts; `token-count` and `nfmt` for prep and planning
- **Setup and configuration**: `tnh-setup` plus guided config in Getting Started
- **Prompt system**: See ADRs under [docs/architecture/prompt-system/index.md](docs/architecture/prompt-system/index.md) for decisions and roadmap

## Quick Start

### Installation (PyPI)

```bash
pip install tnh-scholar
tnh-setup
```

Prerequisites: Python 3.12.4+, OpenAI API key (CLI tools), Google Vision (optional OCR), pip or Poetry.

### Development setup (from source)

Follow [DEV_SETUP.md](DEV_SETUP.md) for the full workflow. Short version:

```bash
pyenv install 3.12.4
poetry config virtualenvs.in-project true
make setup        # runtime deps
make setup-dev    # runtime + dev deps (recommended)
```

### Set OpenAI credentials

```bash
export OPENAI_API_KEY="your-api-key"
```

### Example usage

**Transcribe Audio from YouTube:**

```bash
audio-transcribe --yt_url "https://youtube.com/watch?v=example" --split --transcribe
```

**Process Text with TNH-GEN (was previously tnh-fab: CLI refactor and rename in progress; see ADR-VSC01/VSC02):**

**Download Video Transcripts:**

```bash
ytt-fetch "https://youtube.com/watch?v=example" -l en -o transcript.txt
```

## Getting Started

- **Practitioners**: Install, configure credentials, and follow the [Quick Start Guide](docs/getting-started/quick-start-guide.md); workflows live in the [User Guide](docs/user-guide/overview.md).
- **Developers**: Set up via [DEV_SETUP.md](DEV_SETUP.md) and [Contributing](CONTRIBUTING.md); review [System Design](docs/development/system-design.md) and the [CLI docs](docs/cli-reference/index.md); run `make docs` to view locally.
  - **Project Philosophy & Vision**: Developers and researchers should review the conceptual foundations in `docs/project/vision.md`, `docs/project/philosophy.md`, `docs/project/principles.md`, and `docs/project/conceptual-architecture.md` to understand the system’s long-term direction and design intent.
- **Researchers**: Explore [Research](docs/research/index.md) for experiments and direction; see [Architecture](docs/architecture/index.md) for pipelines/ADRs (e.g., [ADR-K01](docs/architecture/knowledge-base/adr/adr-k01-kb-architecture-strategy.md)).

## Documentation Overview

Comprehensive documentation is available in multiple formats:

- **Online Documentation**: [aaronksolomon.github.io/tnh-scholar/](https://aaronksolomon.github.io/tnh-scholar/)
- **GitHub Repository**: [github.com/aaronksolomon/tnh-scholar](https://github.com/aaronksolomon/tnh-scholar)

### Documentation Structure

- **[Getting Started](docs/getting-started/index.md)** – Installation, setup, and first steps
- **[CLI Docs](docs/cli-reference/index.md)** – Command-line tool documentation
- **[User Guide](docs/user-guide/index.md)** – Detailed usage guides, prompts, and workflows
- **[API Reference](docs/api/index.md)** – Python API documentation for programmatic use
- **[Architecture](docs/architecture/index.md)** – Design decisions, ADRs, and system overview
- **[Development](docs/development/index.md)** – Contributing guidelines and development setup
- **[Research](docs/research/index.md)** – Research notes, experiments, and background
- **[Documentation Operations](docs/docs-ops/index.md)** – Documentation roadmap and maintenance

## Architecture Overview

- Documentation strategy: [ADR-DD01](docs/architecture/docs-system/adr/adr-dd01-docs-reorg-strategy.md) and [ADR-DD02](docs/architecture/docs-system/adr/adr-dd02-main-content-nav.md)
- GenAI, transcription, and prompt system ADRs live under [Architecture](docs/architecture/index.md) (see ADR-A*, ADR-TR*, ADR-PT*).
- System design references: [Object–Service Design](docs/architecture/object-service/object-service-design-overview.md) and [System Design](docs/development/system-design.md).

## Development

- Common commands: `make test`, `make lint`, `make format`, `make docs`, `poetry run mypy src/`
- Optional dependency groups (development only): `tnh-scholar[ocr]`, `tnh-scholar[gui]`, `tnh-scholar[query]`, `tnh-scholar[dev]`
- Troubleshooting and workflows: [DEV_SETUP.md](DEV_SETUP.md)

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for coding standards, testing expectations, and PR workflow. We welcome contributions from practitioners, developers, and scholars.

## Project Status

TNH Scholar is currently in **alpha stage** (v0.1.3). Expect ongoing API and workflow changes during active development.

## Support & Community

- Bug reports & feature requests: [GitHub Issues](https://github.com/aaronksolomon/tnh-scholar/issues)
- Questions & discussions: [GitHub Discussions](https://github.com/aaronksolomon/tnh-scholar/discussions)

## Documentation Map

For an auto-generated list of every document (titles and metadata), see the [Documentation Index](docs/documentation_index.md).

## License

This project is licensed under the [GPL-3.0 License](LICENSE).

---

**For more information, visit the [full documentation](https://aaronksolomon.github.io/tnh-scholar/) or explore the [source code](https://github.com/aaronksolomon/tnh-scholar).**

