Metadata-Version: 2.4
Name: merallm
Version: 0.2.0
Summary: A polished Python chat workspace for Ollama and OpenRouter models
Home-page: https://github.com/pankajkarman/MeraLLM
Project-URL: Source, https://github.com/pankajkarman/MeraLLM
Project-URL: Issues, https://github.com/pankajkarman/MeraLLM/issues
Keywords: ai,chat,ollama,openrouter,fastapi,llm
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: FastAPI
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: fastapi<1,>=0.115
Requires-Dist: uvicorn[standard]<1,>=0.30
Requires-Dist: requests<3,>=2.31
Requires-Dist: ddgs<10,>=9
Requires-Dist: PyPDF2<4,>=3
Provides-Extra: release
Requires-Dist: build<2,>=1; extra == "release"
Requires-Dist: twine<7,>=6; extra == "release"
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# MeraLLM

Python chat workspace for Ollama and OpenRouter models, built with FastAPI.

## Features

- Model and skill favorites
- Projects, chat search, web search, agent mode, and MCP tools
- Markdown, equations, tables, code, and Mermaid diagrams
- File attachments up to 100 MB
- Responsive light and dark interface

## Install

```powershell
python -m pip install merallm
```

Install the latest GitHub version:

```powershell
python -m pip install "git+https://github.com/pankajkarman/MeraLLM.git"
```

For local development:

```powershell
python -m pip install -e .
```

Install and start [Ollama](https://ollama.com/) to use local models.

## Configure

```powershell
$env:OPENROUTER_API_KEY="your-key-here"
$env:MERALLM_DATA_DIR="optional-custom-data-path"
```

The data directory can also be changed under **Settings → MERALLM_DATA_DIR**.

## Run

```powershell
merallm
```

Open <http://127.0.0.1:8002>. Use `merallm --help` for host, port, and reload
options.

## Uninstall

```powershell
python -m pip uninstall merallm
```

Uninstalling does not delete chats or preferences. Delete the configured data
directory manually if you also want to remove local data.
