Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# TraceCraft
<p align="center">
<img src="docs/assets/tracecraft-logo.png" alt="TraceCraft" width="100%">
</p>

[![CI](https://github.com/LocalAI/tracecraft/actions/workflows/ci.yml/badge.svg)](https://github.com/LocalAI/tracecraft/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/LocalAI/tracecraft/branch/main/graph/badge.svg)](https://codecov.io/gh/LocalAI/tracecraft)
[![PyPI version](https://badge.fury.io/py/tracecraft.svg)](https://badge.fury.io/py/tracecraft)
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
<p align="center">
<a href="https://github.com/LocalAI/tracecraft/actions/workflows/ci.yml"><img src="https://github.com/LocalAI/tracecraft/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
<a href="https://codecov.io/gh/LocalAI/tracecraft"><img src="https://codecov.io/gh/LocalAI/tracecraft/branch/main/graph/badge.svg" alt="Coverage"></a>
<a href="https://badge.fury.io/py/tracecraft"><img src="https://badge.fury.io/py/tracecraft.svg" alt="PyPI version"></a>
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.11+-blue.svg" alt="Python 3.11+"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License: Apache-2.0"></a>
</p>

<p align="center"><strong>Vendor-neutral LLM observability — instrument once, observe anywhere.</strong></p>

> **Vendor-neutral LLM observability — instrument once, observe anywhere.**
>
> [!WARNING]
> This project is under active development. APIs may change between releases and it is not yet production-ready. Use with that in mind.

Expand Down
Binary file added docs/assets/tracecraft-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 10 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<p align="center">
<img src="assets/tracecraft-logo.png" alt="TraceCraft" width="100%">
</p>

# TraceCraft

**Vendor-neutral LLM observability — instrument once, observe anywhere.**
Expand Down Expand Up @@ -147,15 +151,15 @@ For fine-grained control — custom span names, explicit inputs/outputs, structu

```mermaid
graph LR
External[Any OTLP App] -->|OTEL_EXPORTER_OTLP_ENDPOINT| Receiver[tracecraft serve]
App[Your App + tracecraft.init()] -->|auto-instr / decorators| JSONL[JSONL / SQLite]
External["Any OTLP App"] -->|"OTEL_EXPORTER_OTLP_ENDPOINT"| Receiver["tracecraft serve"]
App["Your App + tracecraft.init()"] -->|"auto-instr / decorators"| JSONL["JSONL / SQLite"]
Receiver --> JSONL

JSONL --> TUI[Terminal UI]
JSONL --> TUI["Terminal UI"]

App -->|OTLP export| Langfuse
App -->|OTLP export| Datadog
App -->|OTLP export| Phoenix
App -->|"OTLP export"| Langfuse
App -->|"OTLP export"| Datadog
App -->|"OTLP export"| Phoenix
```

**Path 1 — Zero code changes (OTLP env var):**
Expand Down
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ theme:
font:
text: Roboto
code: Roboto Mono
logo: assets/tracecraft-logo.png
favicon: assets/tracecraft-logo.png
icon:
repo: fontawesome/brands/github
features:
Expand Down
2 changes: 2 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "python",
"bootstrap-sha": "8ff0177079097540407bd49bd0a1df342ee0c06a",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"packages": {
".": {
"release-type": "python",
Expand Down