From 374f95d665eebf8a69cca0d9b75e2082dd44a0ef Mon Sep 17 00:00:00 2001 From: adk-bot Date: Thu, 9 Oct 2025 19:24:38 +0000 Subject: [PATCH] docs: Add note about OpenAPI $defs support --- docs/tools/openapi-tools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/openapi-tools.md b/docs/tools/openapi-tools.md index 7fd00e09b..1f2ec1fcd 100644 --- a/docs/tools/openapi-tools.md +++ b/docs/tools/openapi-tools.md @@ -20,7 +20,7 @@ The process involves these main steps when you use `OpenAPIToolset`: 1. **Initialization & Parsing**: * You provide the OpenAPI specification to `OpenAPIToolset` either as a Python dictionary, a JSON string, or a YAML string. - * The toolset internally parses the spec, resolving any internal references (`$ref`) to understand the complete API structure. + * The toolset internally parses the spec, resolving any internal references (`$ref`) to understand the complete API structure. This includes support for resolving references in the `$defs` section of the OpenAPI schema. 2. **Operation Discovery**: * It identifies all valid API operations (e.g., `GET`, `POST`, `PUT`, `DELETE`) defined within the `paths` object of your specification.