diff --git a/src/a2a_storage/README.md b/src/a2a_storage/README.md new file mode 100644 index 000000000..85b946791 --- /dev/null +++ b/src/a2a_storage/README.md @@ -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. + diff --git a/src/app/endpoints/README.md b/src/app/endpoints/README.md index 388edc42c..fc6fab97f 100644 --- a/src/app/endpoints/README.md +++ b/src/app/endpoints/README.md @@ -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. @@ -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. + diff --git a/tests/unit/a2a_storage/README.md b/tests/unit/a2a_storage/README.md new file mode 100644 index 000000000..9fdae62ab --- /dev/null +++ b/tests/unit/a2a_storage/README.md @@ -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. + diff --git a/tests/unit/app/endpoints/README.md b/tests/unit/app/endpoints/README.md index 691951f17..5043a01da 100644 --- a/tests/unit/app/endpoints/README.md +++ b/tests/unit/app/endpoints/README.md @@ -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. diff --git a/tests/unit/models/config/README.md b/tests/unit/models/config/README.md index 33c210016..67708ba34 100644 --- a/tests/unit/models/config/README.md +++ b/tests/unit/models/config/README.md @@ -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. diff --git a/tests/unit/utils/README.md b/tests/unit/utils/README.md index 4b785131d..8102a63a4 100644 --- a/tests/unit/utils/README.md +++ b/tests/unit/utils/README.md @@ -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.