Metadata-Version: 2.4
Name: lobster-ai-tui
Version: 1.1.406
Summary: Go TUI binary for Lobster AI (Charm/BubbleTea)
Author-email: Kevin Yar <kevin.yar@omics-os.com>
License: Apache-2.0
Project-URL: Homepage, https://lobsterbio.com
Project-URL: Repository, https://github.com/the-omics-os/lobster
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# lobster-ai-tui

Platform-specific Go TUI binary for [Lobster AI](https://lobsterbio.com).

This package provides the `lobster-tui` binary — a native terminal UI built with the
[Charm](https://charm.sh) stack (BubbleTea, Bubbles, Lipgloss, Glamour). It is
automatically installed as a dependency of `lobster-ai` on supported platforms.

## Supported Platforms

- Linux x86_64 (amd64)
- Linux ARM64 (aarch64)
- macOS ARM64 (Apple Silicon)
- macOS x86_64 (Intel)

## Usage

This package is not intended to be used directly. Install `lobster-ai` and run:

```bash
lobster chat          # Uses Go TUI by default
lobster chat --classic  # Fall back to Python Rich/Textual UI
```

## Binary Discovery

The `lobster-ai` CLI finds the binary via `lobster_ai_tui.get_binary_path()`:

```python
from lobster_ai_tui import get_binary_path
binary = get_binary_path()  # Returns Path to lobster-tui binary
```
