Metadata-Version: 2.4
Name: trace-agent-ui
Version: 0.0.2
Summary: TraceAgent UI static server.
Author-email: Enrique Javier Villar Cea <villarcea.enriquejavier@gmail.com>, Javier Rodriguez Castellano <javirodriguezcastellano@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/LixusSoftware/TraceAgent
Project-URL: Repository, https://github.com/LixusSoftware/TraceAgent
Project-URL: Issues, https://github.com/LixusSoftware/TraceAgent/issues
Keywords: agent,observability,tracing,llm,tools
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: fastapi<1.0.0,>=0.115.0
Requires-Dist: httpx<1.0.0,>=0.27.0
Requires-Dist: uvicorn[standard]<1.0.0,>=0.30.0

# TraceAgent UI

![GitHub Release](https://img.shields.io/github/v/release/LixusSoftware/TraceAgent)
![GitHub Stars](https://img.shields.io/github/stars/LixusSoftware/TraceAgent)
![GitHub License](https://img.shields.io/github/license/LixusSoftware/TraceAgent)
![Tests](https://github.com/LixusSoftware/TraceAgent/actions/workflows/test.yml/badge.svg)
![Docker Build](https://github.com/LixusSoftware/TraceAgent/actions/workflows/build-docker.yml/badge.svg)

Static file server for the TraceAgent React frontend. Serves the built SPA and proxies `/api/*` to the backend.

## Install

```bash
pip install trace-agent-ui
```

## Run

```bash
TRACE_AGENT_SERVER_URL=http://localhost:8000 trace-agent-ui
```

The UI will be available at `http://localhost:8080` and will proxy API requests to the backend.

## Docker

```bash
docker run \
  -p 8080:8080 \
  -e TRACE_AGENT_SERVER_URL=http://host.docker.internal:8000 \
  ghcr.io/lixussoftware/trace-agent-ui
```

## License

MIT
