No project description provided
Project description
ag-ui-protocol
Python SDK for the Agent-User Interaction (AG-UI) Protocol.
ag-ui-protocol provides Python developers with strongly-typed data structures and event encoding for building AG-UI compatible agent servers. Built on Pydantic for robust validation and automatic camelCase serialization for seamless frontend integration.
Installation
pip install ag-ui-protocol
poetry add ag-ui-protocol
pipenv install ag-ui-protocol
Features
- 🐍 Python-native – Idiomatic Python APIs with full type hints and validation
- 📋 Pydantic models – Runtime validation and automatic JSON serialization
- 🔄 Streaming events – 16 core event types for real-time agent communication
- ⚡ High performance – Efficient event encoding for Server-Sent Events
Quick example
from ag_ui.core import TextMessageContentEvent, EventType
from ag_ui.encoder import EventEncoder
# Create a streaming text event
event = TextMessageContentEvent(
type=EventType.TEXT_MESSAGE_CONTENT,
message_id="msg_123",
delta="Hello from Python!"
)
# Encode for HTTP streaming
encoder = EventEncoder()
sse_data = encoder.encode(event)
# Output: data: {"type":"TEXT_MESSAGE_CONTENT","messageId":"msg_123","delta":"Hello from Python!"}\n\n
Multimodal user message
from ag_ui.core import UserMessage, TextInputContent, ImageInputPart, InputContentUrlSource
message = UserMessage(
id="user-123",
content=[
TextInputContent(text="Please describe this image"),
ImageInputPart(
source=InputContentUrlSource(
value="https://example.com/cat.png",
mime_type="image/png",
)
),
],
)
payload = message.model_dump(by_alias=True)
# {"id": "user-123", "role": "user", "content": [...]}
BinaryInputContentis deprecated. Use modality-specific input parts (ImageInputPart,AudioInputPart,VideoInputPart,DocumentInputPart) withInputContentDataSourceorInputContentUrlSource.
Packages
ag_ui.core– Types, events, and data models for AG-UI protocolag_ui.encoder– Event encoding utilities for HTTP streaming
Documentation
- Concepts & architecture:
docs/concepts - Full API reference:
docs/sdk/python
Contributing
Bug reports and pull requests are welcome! Please read our contributing guide first.
License
MIT © 2025 AG-UI Protocol Contributors
Project details
Release history Release notifications | RSS feed
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 ag_ui_protocol-0.1.18.tar.gz.
File metadata
- Download URL: ag_ui_protocol-0.1.18.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b37c672c3fd6bac12b316c39f45ad9db9f137bbb885489c79f268507029a22ff
|
|
| MD5 |
76195ddfb60aa4d5a8970e683b9525f1
|
|
| BLAKE2b-256 |
4cd75711eada86da9bd7684e58645653a1693ef20b66cc3efbb1deeafef80f8d
|
File details
Details for the file ag_ui_protocol-0.1.18-py3-none-any.whl.
File metadata
- Download URL: ag_ui_protocol-0.1.18-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d151c0f0a34160647f1571163f7185746f4326b15a56d1560de5082a7a0e7a12
|
|
| MD5 |
6dea68fbe1c6ee142fbb1075c48eeb47
|
|
| BLAKE2b-256 |
d874913c9b8fc566c6da650aecbddf25a5d8186b54138df265eb9eb546f56141
|