You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
753 B
16 lines
753 B
# Communication Examples
|
|
|
|
This directory contains examples demonstrating various communication backends for agent conversations.
|
|
|
|
## Examples
|
|
|
|
- [duckdb_agent.py](duckdb_agent.py) - DuckDB-backed conversation storage
|
|
- [pulsar_conversation.py](pulsar_conversation.py) - Apache Pulsar messaging integration
|
|
- [redis_conversation.py](redis_conversation.py) - Redis-backed conversation storage
|
|
- [sqlite_conversation.py](sqlite_conversation.py) - SQLite conversation storage
|
|
|
|
## Overview
|
|
|
|
Communication examples demonstrate different backend storage and messaging systems for managing agent conversations. These examples show how to persist conversations, enable distributed communication, and manage conversation state across different storage backends.
|
|
|