diff --git a/libraries/microsoft-agents-a365-tooling-extensions-google/docs/design.md b/libraries/microsoft-agents-a365-tooling-extensions-google/docs/design.md index d13bf44..bc17295 100644 --- a/libraries/microsoft-agents-a365-tooling-extensions-google/docs/design.md +++ b/libraries/microsoft-agents-a365-tooling-extensions-google/docs/design.md @@ -20,7 +20,6 @@ service = McpToolRegistrationService() # Create agent with MCP tools agent = await service.add_tool_servers_to_agent( agent=existing_agent, - agentic_app_id="your-agent-id", auth=auth_context, auth_handler_name="graph", context=turn_context, @@ -51,7 +50,6 @@ Google ADK Agent with MCP tools | Parameter | Type | Description | |-----------|------|-------------| | `agent` | `Agent` | The existing Google ADK agent | -| `agentic_app_id` | `str` | Agentic App ID for the agent | | `auth` | `Authorization` | Auth context for token exchange | | `auth_handler_name` | `str` | Name of auth handler | | `context` | `TurnContext` | Conversation context | diff --git a/libraries/microsoft-agents-a365-tooling-extensions-google/pyproject.toml b/libraries/microsoft-agents-a365-tooling-extensions-google/pyproject.toml index f55d943..a02e216 100644 --- a/libraries/microsoft-agents-a365-tooling-extensions-google/pyproject.toml +++ b/libraries/microsoft-agents-a365-tooling-extensions-google/pyproject.toml @@ -65,6 +65,10 @@ target-version = ['py311'] line-length = 100 target-version = "py311" +[tool.ruff.lint.flake8-copyright] +notice-rgx = "# Copyright \\(c\\) Microsoft Corporation\\.\\r?\\n# Licensed under the MIT License\\." +min-file-size = 1 + [tool.mypy] python_version = "3.11" strict = true