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: 20 additions & 0 deletions src/a2a_storage/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# List of source files stored in `src/a2a_storage` directory

## [__init__.py](__init__.py)
A2A protocol persistent storage components.

## [context_store.py](context_store.py)
Abstract base class for A2A context-to-conversation mapping storage.

## [in_memory_context_store.py](in_memory_context_store.py)
In-memory implementation of A2A context store.

## [postgres_context_store.py](postgres_context_store.py)
PostgreSQL implementation of A2A context store.

## [sqlite_context_store.py](sqlite_context_store.py)
SQLite implementation of A2A context store.

## [storage_factory.py](storage_factory.py)
Factory for creating A2A storage backends.

2 changes: 1 addition & 1 deletion src/app/endpoints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Implementation of all endpoints.

## [a2a.py](a2a.py)
Handler for A2A (Agent-to-Agent) protocol endpoints using Responses API.
See [A2A Protocol Documentation](../../../docs/a2a_protocol.md) for details.

## [authorized.py](authorized.py)
Handler for REST API call to authorized endpoint.
Expand Down Expand Up @@ -66,3 +65,4 @@ Streaming query handler using Responses API (v2).

## [tools.py](tools.py)
Handler for REST API call to list available tools from MCP servers.

14 changes: 14 additions & 0 deletions tests/unit/a2a_storage/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# List of source files stored in `tests/unit/a2a_storage` directory

## [__init__.py](__init__.py)
Unit tests for A2A storage module.

## [test_in_memory_context_store.py](test_in_memory_context_store.py)
Unit tests for InMemoryA2AContextStore.

## [test_sqlite_context_store.py](test_sqlite_context_store.py)
Unit tests for SQLiteA2AContextStore.

## [test_storage_factory.py](test_storage_factory.py)
Unit tests for A2AStorageFactory.

3 changes: 3 additions & 0 deletions tests/unit/app/endpoints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## [__init__.py](__init__.py)
Unit tests for endpoints implementations.

## [test_a2a.py](test_a2a.py)
Unit tests for the A2A (Agent-to-Agent) protocol endpoints.

## [test_authorized.py](test_authorized.py)
Unit tests for the /authorized REST API endpoint.

Expand Down
3 changes: 3 additions & 0 deletions tests/unit/models/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## [__init__.py](__init__.py)
Unit tests for models defined in config.py.

## [test_a2a_state_configuration.py](test_a2a_state_configuration.py)
Unit tests for A2AStateConfiguration.

## [test_authentication_configuration.py](test_authentication_configuration.py)
Unit tests for AuthenticationConfiguration model.

Expand Down
3 changes: 3 additions & 0 deletions tests/unit/utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ Unit tests for MCP headers utility functions.
## [test_responses.py](test_responses.py)
Unit tests for utils/responses.py functions.

## [test_shields.py](test_shields.py)
Unit tests for utils/shields.py functions.

## [test_suid.py](test_suid.py)
Unit tests for functions defined in utils.suid module.

Expand Down
Loading