agentstage
A Python-first UI layer for LangChain and LangGraph agents.
agentstage takes an agent you have already built and gives it a production-quality web frontend, written entirely in Python. There is no React, no TypeScript, no CSS, and no manual WebSocket wiring to write, and no Node.js required on your machine to run it.
from langchain.agents import create_agent
from agentstage import AgentApp
agent = create_agent(model="...", tools=[search_documents])
app = AgentApp(agent=agent, title="Document Assistant")
app.chat(streaming=True, citations=True)
app.tool_calls(visible=True, collapsible=True)
app.human_approval(enabled=True)
app.thread_history(enabled=True)
app.run()
That gives you a working app with chat input, streaming output, markdown rendering, visible tool calls, loading and error states, and conversation history.
Features
- Streaming chat. Token-level streaming over Server-Sent Events, with markdown rendering on the client.
- Tool call visibility. Tool invocations and their results are shown in the UI as they happen, collapsible and configurable.
- Human-in-the-loop approval. Pause a run at a LangGraph interrupt and resume it from an approve or reject action in the UI.
- Citations. Sources attached to a message through LangChain's
Citationcontent blocks are rendered as a sources list. - File uploads. Upload files for an agent to use, with a size cap, a MIME allowlist, and content verification independent of the declared content type.
- Conversation history. Threads are listed, renamed, and deleted from a sidebar, backed by an in-memory or SQLite store.
- Mountable. Mount the whole app, or just its JSON API, into an existing FastAPI service under a prefix, alongside your own routes and authentication.
Installation
agentstage is not yet published to PyPI. In the meantime, install it directly from GitHub:
pip install git+https://github.com/rahulrd25/agentstage.git
Once published, installation will be:
pip install agentstage-ui
Requires Python 3.12 or later.
Quick start
from langgraph.graph import END, START, MessagesState, StateGraph
from langchain_core.messages import AIMessage
from agentstage import AgentApp
def call_model(state: MessagesState) -> dict:
return {"messages": [AIMessage(content="Hello from your agent!")]}
graph = StateGraph(MessagesState)
graph.add_node("model", call_model)
graph.add_edge(START, "model")
graph.add_edge("model", END)
agent = graph.compile()
app = AgentApp(agent, title="My First Agent")
app.chat(streaming=True)
app.run()
Then open http://127.0.0.1:8000/. See docs/getting-started.md for the full walkthrough.
Documentation
- Getting started
- Architecture
- Events
- LangGraph notes
- Troubleshooting
- Comparisons with Streamlit and Reflex
Examples
Each example is a complete, runnable app in well under 100 lines of Python, with no frontend code to write.
uv run python examples/basic_chat/app.py # streaming chat and tool calls
uv run python examples/human_approval/app.py # approve or reject before a risky action
uv run python examples/citations_and_files/app.py # sources list and file upload
uv run python examples/threads_and_persistence/app.py # conversation sidebar, SQLite-backed
uv run python examples/mount_into_existing_app/app.py # mounted into a host app's own auth
How it works
LangChain/LangGraph agent your Python, server-side only
|
| astream(stream_mode=["updates", "messages"])
v
Adapter -> normalized AgentEvent the stable public contract
|
v
FastAPI + SSE text/event-stream, one-way
|
v
Browser UI static assets shipped in the wheel
Agent execution and all API keys stay on the server. The adapter normalizes LangGraph's event stream into a stable AgentEvent contract, decoupling the UI from LangGraph's own streaming API, which is still experimental. Client-to-server actions such as submitting a message, approving an interrupt, or canceling a run are ordinary HTTP requests; only the agent's output streams back over SSE.
See docs/architecture.md for the full set of design decisions and the reasoning behind them.
Who this is for
A Python developer comfortable with FastAPI, LangChain, LangGraph, LLM APIs, and async Python, who does not want to hand-write a frontend to ship an agent.
agentstage is not a general-purpose app framework, not a replacement for LangChain or LangGraph, not a BI tool, and not a drag-and-drop builder. See docs/comparisons.md for how it relates to Streamlit and Reflex.
Security
- Agent execution runs on the server only. API keys are never exposed to the browser.
- Client-submitted user IDs and tenant IDs are never trusted.
- Tool output is treated as untrusted data; markdown rendering is sanitized against it.
- Hidden chain-of-thought is never sent to the client, only tool calls, citations, and safe execution metadata.
- There is no arbitrary code execution from the UI.
- Authentication is exposed as a hook interface, not an implementation. Row-level authorization remains the responsibility of the host application.
Project status
agentstage is pre-alpha. Chat, streaming, tool call visibility, human approval, citations, file uploads, conversation history, and mounting into an existing FastAPI app all work end to end today, and are covered by an automated test suite. The public API is not yet guaranteed stable between releases.
Contributing
See CONTRIBUTING.md for development setup, running the test suite, and the project layout.
License
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentstage_ui-0.1.1.tar.gz.
File metadata
- Download URL: agentstage_ui-0.1.1.tar.gz
- Upload date:
- Size: 953.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ebdaf4ac12fe8e750834ec0fdf76391c898fcfb9b88b607e2c4d0a1f613981e
|
|
| MD5 |
fd8dc643fa4d17abe538cb26dd96537b
|
|
| BLAKE2b-256 |
db69368cd67ee582def4b2aa12a5e751b50f30b7bd51580d5dc397211a4a4f65
|
Provenance
The following attestation bundles were made for agentstage_ui-0.1.1.tar.gz:
Publisher:
release.yml on rahulrd25/agentstage
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentstage_ui-0.1.1.tar.gz -
Subject digest:
7ebdaf4ac12fe8e750834ec0fdf76391c898fcfb9b88b607e2c4d0a1f613981e - Sigstore transparency entry: 2475841756
- Sigstore integration time:
-
Permalink:
rahulrd25/agentstage@d5afcc8f96fd084a5c68e913a59f0f61b41c99a1 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rahulrd25
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d5afcc8f96fd084a5c68e913a59f0f61b41c99a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file agentstage_ui-0.1.1-py3-none-any.whl.
File metadata
- Download URL: agentstage_ui-0.1.1-py3-none-any.whl
- Upload date:
- Size: 1.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f093d94b1c72acda410b59f8db7752d9d75d86e324f30c4bc806722a8ddce029
|
|
| MD5 |
b5c0db7729bbdf08d43edadc9c0d5c40
|
|
| BLAKE2b-256 |
0cce9c47d5555a48a2d2aa9f61b8fae2f32c2a371cd93e784d1a13c36461812a
|
Provenance
The following attestation bundles were made for agentstage_ui-0.1.1-py3-none-any.whl:
Publisher:
release.yml on rahulrd25/agentstage
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentstage_ui-0.1.1-py3-none-any.whl -
Subject digest:
f093d94b1c72acda410b59f8db7752d9d75d86e324f30c4bc806722a8ddce029 - Sigstore transparency entry: 2475841781
- Sigstore integration time:
-
Permalink:
rahulrd25/agentstage@d5afcc8f96fd084a5c68e913a59f0f61b41c99a1 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rahulrd25
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d5afcc8f96fd084a5c68e913a59f0f61b41c99a1 -
Trigger Event:
push
-
Statement type: