Metadata-Version: 2.4
Name: streamlit-reasoning-visualizer
Version: 0.1.0
Summary: A Streamlit component to visualize LLM reasoning processes with collapsible thought sections and rich markdown/LaTeX rendering
Home-page: https://github.com/ketanmahandule/streamlit-reasoning-visualizer
Author: Ketan Mahandule
License: Apache-2.0
Project-URL: Homepage, https://github.com/ketanmahandule/streamlit-reasoning-visualizer
Project-URL: Bug Tracker, https://github.com/ketanmahandule/streamlit-reasoning-visualizer/issues
Project-URL: Documentation, https://github.com/ketanmahandule/streamlit-reasoning-visualizer#readme
Project-URL: Source Code, https://github.com/ketanmahandule/streamlit-reasoning-visualizer
Keywords: streamlit,streamlit-component,reasoning,visualization,llm,chain-of-thought,ai,machine-learning
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit>=1.24.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: build>=1.0.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Provides-Extra: example
Requires-Dist: ollama>=0.1.0; extra == "example"
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Streamlit Reasoning Visualizer

[![PyPI version](https://badge.fury.io/py/streamlit-reasoning-visualizer.svg)](https://pypi.org/project/streamlit-reasoning-visualizer/)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Streamlit](https://img.shields.io/badge/Streamlit-Component-FF4B4B?logo=streamlit)](https://streamlit.io/)

A beautiful, interactive Streamlit component for visualizing LLM reasoning processes with collapsible thought sections and rich markdown/LaTeX rendering.

![Reasoning Visualizer Demo](https://raw.githubusercontent.com/ketanmahandule/streamlit-reasoning-visualizer/main/assets/demo.gif)

## ✨ Features

- **🧠 Collapsible Reasoning Section** - Hide/show the model's chain-of-thought with smooth animations
- **📝 Rich Markdown Rendering** - Full markdown support including code blocks, tables, and formatting
- **🔢 LaTeX Math Support** - Beautiful equation rendering with KaTeX, including `\boxed{}` expressions
- **🏷️ Multi-format Tag Parsing** - Supports various reasoning tag formats used by different LLMs
- **🎨 Modern UI** - Clean, minimalist design with smooth animations using Framer Motion

## 📦 Installation

```bash
pip install streamlit-reasoning-visualizer
```

## 🚀 Quick Start

```python
import streamlit as st
from reasoning_visualizer import visualizer

st.title("Reasoning Visualizer Demo")

# Sample response with reasoning tags
response = """<think>
Let me work through this step by step.
1. First, I need to understand the problem
2. Then, I'll apply the relevant formula
3. Finally, I'll calculate the result

Using the quadratic formula: $x = \\frac{-b \\pm \\sqrt{b^2-4ac}}{2a}$
</think>

The answer is **42**.

$$\\boxed{x = 42}$$
"""

visualizer(text=response)
```

## 🏷️ Supported Reasoning Tag Formats

The component automatically detects and parses these tag formats:

| Format | Example |
|--------|---------|
| `<think>` | `<think>reasoning...</think>` |
| `[THOUGHT]` | `[THOUGHT]reasoning...[/THOUGHT]` |
| `<reasoning>` | `<reasoning>reasoning...</reasoning>` |
| `<chain_of_thought>` | `<chain_of_thought>reasoning...</chain_of_thought>` |

If no tags are found, the entire text is displayed as the final answer.

## 📖 API Reference

### `visualizer(text, key=None)`

Render the Reasoning Visualizer component.

**Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| `text` | `str` | The raw text containing reasoning tags and the answer |
| `key` | `str`, optional | Unique key for multiple visualizer instances |

**Example with multiple visualizers:**

```python
visualizer(text=response1, key="viz1")
visualizer(text=response2, key="viz2")
```

## 🔧 Development

### Prerequisites

- Python 3.8+
- Node.js 16+
- npm

### Setup

1. Clone the repository:
```bash
git clone https://github.com/ketanmahandule/streamlit-reasoning-visualizer.git
cd streamlit-reasoning-visualizer
```

2. Install Python dependencies:
```bash
pip install -e ".[dev]"
```

3. Install frontend dependencies:
```bash
cd reasoning_visualizer/frontend
npm install
```

4. Start development mode:

In `reasoning_visualizer/__init__.py`, set `_RELEASE = False`, then:

```bash
# Terminal 1: Start the React dev server
cd reasoning_visualizer/frontend
npm start

# Terminal 2: Run the example app
streamlit run example.py
```

### Building the Frontend

```bash
cd reasoning_visualizer/frontend
npm run build
```

### Running Tests

```bash
pytest tests/ -v
```

## 🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

## 📄 License

This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- Built with [Streamlit](https://streamlit.io/)
- Animations powered by [Framer Motion](https://www.framer.com/motion/)
- Math rendering by [KaTeX](https://katex.org/)
- Icons from [Lucide React](https://lucide.dev/)
