File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
application_integration_tool
openapi_tool/openapi_spec_parser Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 15
15
16
16
from typing import List
17
17
from typing import Optional
18
- from typing import override
19
18
from typing import Union
20
19
20
+ from typing_extensions import override
21
21
import yaml
22
22
23
23
from ...agents .readonly_context import ReadonlyContext
Original file line number Diff line number Diff line change 14
14
15
15
from typing import List
16
16
from typing import Optional
17
- from typing import override
18
17
from typing import Union
19
18
20
19
from fastapi .openapi .models import HTTPBearer
20
+ from typing_extensions import override
21
21
22
22
from ...auth .auth_credential import AuthCredential
23
23
from ...auth .auth_credential import AuthCredentialTypes
Original file line number Diff line number Diff line change 19
19
from typing import Any
20
20
from typing import List
21
21
from typing import Optional
22
- from typing import override
23
22
from typing import Type
24
23
from typing import Union
25
24
25
+ from typing_extensions import override
26
+
26
27
from ...agents .readonly_context import ReadonlyContext
27
28
from ...auth import OpenIdConnectWithConfig
28
29
from ...tools .base_toolset import BaseToolset
Original file line number Diff line number Diff line change 20
20
from typing import List
21
21
from typing import Literal
22
22
from typing import Optional
23
- from typing import override
24
23
from typing import Union
25
24
25
+ from typing_extensions import override
26
26
import yaml
27
27
28
28
from ....agents .readonly_context import ReadonlyContext
@@ -101,7 +101,7 @@ def __init__(
101
101
AuthCredential or use helpers in
102
102
`google.adk.tools.openapi_tool.auth.auth_helpers`
103
103
tool_filter: The filter used to filter the tools in the toolset. It can be
104
- either a tool predicate or a list of tool names of the tools to expose
104
+ either a tool predicate or a list of tool names of the tools to expose.
105
105
"""
106
106
if not spec_dict :
107
107
spec_dict = self ._load_spec (spec_str , spec_str_type )
You can’t perform that action at this time.
0 commit comments