We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f66e6d commit 63091f7Copy full SHA for 63091f7
README.md
@@ -243,7 +243,7 @@ iam_client = aws_iam_mcp_client(
243
async with iam_client as (read, write, session_id_callback):
244
async with ClientSession(read, write) as session:
245
tools = await McpToolSpec(client=session).to_tool_list_async()
246
- agent = ReActAgent(llm=model, tools=tools)
+ agent = ReActAgent(tools=tools, ...)
247
```
248
249
### Running Examples
mcp_proxy_for_aws/__init__.py
@@ -17,6 +17,5 @@
17
from importlib.metadata import version as _metadata_version
18
19
20
-__version__ = _metadata_version('mcp-proxy-for-aws')
21
-
22
__all__ = ['__version__']
+__version__ = _metadata_version('mcp-proxy-for-aws')
0 commit comments