From f3b25e20dd2186df7efa8ec9e39f289d41f4e609 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 22:15:22 +0000 Subject: [PATCH 1/2] Initial plan From a0b70e172a75023e7f274163302acfcb468b5749 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 22:17:37 +0000 Subject: [PATCH 2/2] Fix design.md and add ruff copyright config per review comments Co-authored-by: JesuTerraz <96103167+JesuTerraz@users.noreply.github.com> --- .../docs/design.md | 2 -- .../pyproject.toml | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) 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