Skip to main content

prompt-inspector-ux 🔍

pypi CI Testing python platform License

prompt-inspector-ux is a local, interactive middleware and visualizer for generative AI and Agentic workflows. It intercepts outgoing LLM API payloads pre-flight and streams them to a local dashboard, allowing you to visualize exactly what tokens, images, audio, documents (PDFs, Word docs), and templates you are sending to model providers before making API requests.


📚 Interactive Documentation

For detailed installation guides, programmatic APIs, and configuration references: 👉 prompt-inspector-ux Documentation Site


Key Features

  • One-Line Integration: Just add import prompt_inspector; prompt_inspector.inspect() at the top of your script.
  • Multi-Provider Patches: Automatically hooks and captures:
    • OpenAI (Sync/Async Chat Completions, Azure OpenAI, Groq, and compatible endpoints).
    • Anthropic (Sync/Async Messages).
    • Google GenAI (New google-genai and legacy google-generativeai client model calls).
  • Framework Agnostic: Works out of the box with LangChain, LangGraph, and LlamaIndex by intercepting the underlying client SDK calls.
  • Rich Multimodal Visualizer Dashboard:
    • Prompt timeline sidebar tracking all model queries.
    • HTML Document Sandbox: Preview parsed templates inside a secure iframe.
    • Code Panel: View code snippets, syntax highlighted.
    • Inline Document Reader: Scroll and inspect PDFs and Word Documents (.docx) directly in the dashboard UI (powered by in-browser Mammoth.js conversion).
    • Media Players: Native HTML5 players for audio waves (.wav, .mp3) and video tokens.
    • Zero Overhead: Serves local files from the filesystem via a loopback port instead of sending massive base64 strings, saving CPU and memory.

Installation

Install using pip:

pip install prompt-inspector-ux

Or using uv:

uv add prompt-inspector-ux

Quickstart

Just call inspect() at the very beginning of your application. This spins up the server in a background thread and opens the browser tab to your dashboard:

import prompt_inspector
from openai import OpenAI

# 1. Start the visualizer and auto-patch all SDKs
prompt_inspector.inspect(port=8989)

# 2. Make your LLM calls normally (no other changes required!)
client = OpenAI()
response = client.chat.completions.create(
    model="gpt-4o",
    messages=[
        {"role": "user", "content": "Explain quantum mechanics in 1 sentence."}
    ]
)

Run Standalone CLI

To run the visualization server independently (for example, to persist your trace history across different script runs):

prompt-inspector start --port 8989

Then open http://localhost:8989 in your browser. Any scripts executing prompt_inspector.inspect() will detect the active server and stream traces to it.


Framework Integration Examples

1. LangChain / LangGraph

Since LangChain packages wrap standard provider SDKs under the hood, prompt-inspector captures them automatically with zero additional config or callbacks:

import prompt_inspector
from langchain_openai import ChatOpenAI
from langchain_core.messages import HumanMessage, SystemMessage

prompt_inspector.inspect()

# Works with standard, Groq, Azure, or self-hosted OpenAI instances
llm = ChatOpenAI(
    model="qwen/qwen3.6-27b",
    base_url="https://api.groq.com/openai/v1",
    api_key="your-groq-key"
)

messages = [
    SystemMessage(content="You are an expert systems architect."),
    HumanMessage(content="Explain Reciprocal Rank Fusion.")
]

llm.invoke(messages)

2. Google GenAI (Gemini)

Gemini supports rich multimodal prompts including images and document PDFs:

import prompt_inspector
from PIL import Image
from google import genai
from google.genai import types

prompt_inspector.inspect()

client = genai.Client()

# Send text, PIL Images, and PDF bytes directly
contents = [
    "Analyze this workflow diagram and summarize the text inside the PDF:",
    Image.open("flowchart.png"),
    types.Part.from_bytes(
        data=open("document.pdf", "rb").read(),
        mime_type="application/pdf"
    )
]

client.models.generate_content(
    model='gemini-2.5-flash',
    contents=contents
)

3. LlamaIndex

LlamaIndex models are patched automatically through their underlying completions layer:

import prompt_inspector
from llama_index.llms.openai import OpenAI

prompt_inspector.inspect()

llm = OpenAI(model="gpt-4")
response = llm.complete("Explain Retrieval-Augmented Generation.")

4. Anthropic Claude

Captures message blocks, system prompts, and media objects:

import prompt_inspector
import anthropic

prompt_inspector.inspect()

client = anthropic.Anthropic()
message = client.messages.create(
    model="claude-3-5-sonnet-20241022",
    max_tokens=1000,
    temperature=0,
    system="Respond only in markdown.",
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "What does this code do?"
                }
            ]
        }
    ]
)

Multimodal Payload Examples (Audio, Video, PDF, Word & Combinations)

prompt-inspector fully extracts and visualizes various document and media formats. Here is how you can send them using different SDKs and model providers.

1. Google GenAI (Gemini)

Gemini models support native multimodal inputs. You can send images (using PIL), audio, video, PDFs, and Word docs as inline bytes:

import base64
import prompt_inspector
from PIL import Image
from google import genai
from google.genai import types

prompt_inspector.inspect()
client = genai.Client()

# Helper to read file bytes
def read_bytes(path):
    with open(path, "rb") as f:
        return f.read()

# --- Example A: Sending an Audio File ---
audio_contents = [
    "Analyze the sound cue in this clip:",
    types.Part.from_bytes(data=read_bytes("instructions.wav"), mime_type="audio/wav")
]
client.models.generate_content(model="gemini-2.5-flash", contents=audio_contents)

# --- Example B: Sending a Video File ---
video_contents = [
    "Provide a summary of the activity in this video:",
    types.Part.from_bytes(data=read_bytes("screen_recording.mp4"), mime_type="video/mp4")
]
client.models.generate_content(model="gemini-2.5-flash", contents=video_contents)

# --- Example C: Sending a PDF Document ---
pdf_contents = [
    "Verify the ranking equations in this PDF:",
    types.Part.from_bytes(data=read_bytes("equations.pdf"), mime_type="application/pdf")
]
client.models.generate_content(model="gemini-2.5-flash", contents=pdf_contents)

# --- Example D: Sending a Word Document (.docx) ---
docx_contents = [
    "Summarize this project brief:",
    types.Part.from_bytes(
        data=read_bytes("project_brief.docx"), 
        mime_type="application/vnd.openxmlformats-officedocument.wordprocessingml.document"
    )
]
client.models.generate_content(model="gemini-2.5-flash", contents=docx_contents)

# --- Example E: Combination Payload (Text + Image + Audio + PDF) ---
complex_contents = [
    "Review the flowchart, listen to the audio instructions, and verify with the pdf sheet:",
    Image.open("flowchart.png"),
    types.Part.from_bytes(data=read_bytes("instructions.wav"), mime_type="audio/wav"),
    types.Part.from_bytes(data=read_bytes("formulas.pdf"), mime_type="application/pdf")
]
client.models.generate_content(model="gemini-2.5-flash", contents=complex_contents)

2. OpenAI / Groq / Compatible Endpoints

For OpenAI-compatible endpoints, you pass multimodal structures inside the messages array:

import base64
import prompt_inspector
from openai import OpenAI

prompt_inspector.inspect()
client = OpenAI()

def encode_b64(path):
    with open(path, "rb") as f:
        return base64.b64encode(f.read()).decode("utf-8")

# --- Combination Payload (Text + Image + Audio + Document) ---
messages = [
    {
        "role": "user",
        "content": [
            {
                "type": "text", 
                "text": "Analyze the diagram, hear the sound, and verify with the PDF document:"
            },
            {
                "type": "image_url",
                "image_url": {"url": f"data:image/png;base64,{encode_b64('diagram.png')}"}
            },
            {
                "type": "input_audio",
                "input_audio": {
                    "data": encode_b64("instructions.wav"),
                    "format": "wav"
                }
            },
            {
                "type": "document",
                "document": {
                    "data": {
                        "base64": encode_b64("reference.pdf")
                    },
                    "mime_type": "application/pdf"
                }
            }
        ]
    }
]

client.chat.completions.create(
    model="gpt-4o",
    messages=messages
)

Local Development Setup

If you want to run or contribute to prompt-inspector locally:

  1. Clone the repository:

    git clone https://github.com/SachinMishra-ux/prompt-inspector.git
    cd prompt-inspector
    
  2. Set up the virtual environment:

    uv sync
    
  3. Build the React Dashboard UI: The frontend is built using Vite and Tailwind CSS. Build the static assets:

    npm run build --prefix ui
    

    This compiles the bundle directly into the python package's static/ directory so it is distributed with the PyPI wheel.

  4. Run Unit Tests:

    uv run python3 -m unittest discover -s tests/unit
    

License

This project is licensed under the MIT License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prompt_inspector_ux-0.1.1.tar.gz (13.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

prompt_inspector_ux-0.1.1-py3-none-any.whl (199.9 kB view details)

Uploaded Python 3

File details

Details for the file prompt_inspector_ux-0.1.1.tar.gz.

File metadata

  • Download URL: prompt_inspector_ux-0.1.1.tar.gz
  • Upload date:
  • Size: 13.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for prompt_inspector_ux-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c1f6545cda93d685ca86f73e29992f1819cda6a00280ea227cb37f970217f035
MD5 48f50e5633ef879826a7086bf2b7b69a
BLAKE2b-256 92ca8df3c06275003fbdd9d9b485d0692c43c22ba3de889ec5986b4379df60a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for prompt_inspector_ux-0.1.1.tar.gz:

Publisher: python-publish.yml on SachinMishra-ux/prompt-inspector

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prompt_inspector_ux-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for prompt_inspector_ux-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8668688e94ba15074d3017d7dff03819da25613315c3ce9721f1fe4fe848878e
MD5 7332a3cb5864c48d168b5a9407f7c4c1
BLAKE2b-256 b645bb33edc2501ce77de690709bfb36f87ee59f4e4f91f3a38593f34e287285

See more details on using hashes here.

Provenance

The following attestation bundles were made for prompt_inspector_ux-0.1.1-py3-none-any.whl:

Publisher: python-publish.yml on SachinMishra-ux/prompt-inspector

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.3

2 files

0.1.2

2 files

This release

0.1.1 This release

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page