Metadata-Version: 2.4
Name: aiui
Version: 0.3.45
Summary: YAML-driven website generator - CLI and compiler
Project-URL: Homepage, https://github.com/MervinPraison/PraisonAIUI
Project-URL: Documentation, https://praisonai.com/docs/aiui
Project-URL: Repository, https://github.com/MervinPraison/PraisonAIUI
Author: Mervin Praison
License: MIT
Keywords: aiui,cli,docs,generator,website,yaml
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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.9
Requires-Dist: pydantic>=2.0
Requires-Dist: pypdf>=4.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Requires-Dist: starlette>=0.37
Requires-Dist: typer>=0.9
Requires-Dist: uvicorn[standard]>=0.29
Requires-Dist: watchfiles>=0.21
Provides-Extra: all
Requires-Dist: chonkie>=1.0.2; extra == 'all'
Requires-Dist: chromadb>=1.0.0; extra == 'all'
Requires-Dist: litellm>=1.81.0; extra == 'all'
Requires-Dist: markitdown[all]>=0.1.0; (python_version >= '3.10') and extra == 'all'
Requires-Dist: mem0ai>=0.1.0; extra == 'all'
Requires-Dist: mem0ai[graph]>=0.1.0; extra == 'all'
Provides-Extra: dev
Requires-Dist: mypy>=1.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0; extra == 'dev'
Provides-Extra: graph
Requires-Dist: chromadb>=1.0.0; extra == 'graph'
Requires-Dist: mem0ai[graph]>=0.1.0; extra == 'graph'
Provides-Extra: knowledge
Requires-Dist: chonkie>=1.0.2; extra == 'knowledge'
Requires-Dist: chromadb>=1.0.0; extra == 'knowledge'
Requires-Dist: markitdown[all]>=0.1.0; (python_version >= '3.10') and extra == 'knowledge'
Requires-Dist: mem0ai>=0.1.0; extra == 'knowledge'
Provides-Extra: memory
Requires-Dist: chromadb>=1.0.0; extra == 'memory'
Requires-Dist: litellm>=1.81.0; extra == 'memory'
Description-Content-Type: text/markdown

# PraisonAIUI

[![Python Tests](https://github.com/MervinPraison/PraisonAIUI/actions/workflows/ci.yml/badge.svg)](https://github.com/MervinPraison/PraisonAIUI/actions)
[![PyPI version](https://badge.fury.io/py/praisonaiui.svg)](https://badge.fury.io/py/praisonaiui)

> **One YAML file → One complete website**

PraisonAIUI is a YAML-driven website generator. Write one config file, point to a docs folder, run `aiui build` — get a modern, production-ready documentation site.

## Philosophy

> **We are a wrapper, not a framework.**

We integrate best-in-class libraries instead of reinventing them:

| Feature | Library |
|---------|---------|
| Markdown | `react-markdown` + `remark-gfm` |
| UI Components | shadcn/ui |
| Theming | Tailwind CSS v4 + CSS variables |
| Validation | Pydantic |

## Quick Start

```bash
pip install aiui
aiui init
aiui build
aiui serve
```

Open http://localhost:8000 — your site is ready.

## Configuration

```yaml
# aiui.template.yaml
schemaVersion: 1

site:
  title: "My Docs"
  theme:
    preset: "blue"      # 22 Tailwind color presets available
    radius: "md"        # none, sm, md, lg, xl
    darkMode: true

content:
  docs:
    dir: "./docs"

# Auto-install shadcn components at build time
dependencies:
  shadcn:
    - accordion
    - tabs

templates:
  docs:
    layout: "ThreeColumnLayout"   # or TwoColumnLayout, CenteredLayout
    slots:
      main: { type: "DocContent" }

routes:
  - match: "/docs/**"
    template: "docs"
```

## Layouts

| Layout | Description |
|--------|-------------|
| `ThreeColumnLayout` | Sidebar + Content + TOC (classic docs) |
| `TwoColumnLayout` | Sidebar + Content (no TOC) |
| `CenteredLayout` | Centered content, no sidebar |
| `FullWidthLayout` | Full-width content |

## Theme Presets

22 official [Tailwind colors](https://tailwindcss.com/docs/colors) available:

`zinc` `slate` `stone` `gray` `neutral` `red` `orange` `amber` `yellow` `lime` `green` `emerald` `teal` `cyan` `sky` `blue` `indigo` `violet` `purple` `fuchsia` `pink` `rose`

Each with automatic light/dark mode support.

## UI Styles

PraisonAIUI supports 5 distinct UI styles, selectable via `--style`:

| Style | Flag | Frontend Layout | Best For |
|-------|------|----------------|----------|
| **Docs** | `--style docs` | `ThreeColumnLayout` | Documentation sites, knowledge bases |
| **Chat** | `--style chat` | `ChatLayout` (fullscreen, sidebar, floating widget) | Conversational AI, customer support, Q&A |
| **Agents** | `--style agents` | `AgentUILayout` (agent tabs + session history) | Multi-agent playground, agent experimentation |
| **Playground** | `--style playground` | `PlaygroundLayout` (input/output panels) | Prompt testing, side-by-side comparison |
| **Custom** | `--style custom` | User-defined | Custom layouts with full control |

### Chat Mode (default for `aiui run`)

```bash
aiui run app.py                    # fullscreen chat
aiui run chat.yaml                 # YAML-defined chat
```

### Agents Mode (multi-agent playground)

```bash
aiui run app.py --style agents     # tabbed agent UI with sidebar
```

### Docs Mode (default for `aiui build`)

```bash
aiui build                         # static documentation site
aiui serve                         # serve built docs
```

## CLI Commands

```bash
aiui init              # Create aiui.template.yaml
aiui init --frontend   # Scaffold full React project
aiui validate          # Validate YAML config
aiui build             # Compile to static site
aiui serve             # Dev server with hot reload
aiui dev -e examples   # Dev dashboard with live switching
```

## Architecture

```
aiui.template.yaml     →  aiui build  →  aiui/
       ↓                                    ├── index.html
    docs/*.md                               ├── docs/*.md
                                            ├── ui-config.json
                                            └── assets/
```

## Development

```bash
git clone https://github.com/MervinPraison/PraisonAIUI.git
cd PraisonAIUI
pip install -e .[dev]
pytest tests -v
```

## License

MIT © [Praison Limited](https://praison.ai)
