|
| 1 | +# Copyright (c) Microsoft. All rights reserved. |
| 2 | + |
| 3 | +import asyncio |
| 4 | +import os |
| 5 | +from dotenv import load_dotenv |
| 6 | + |
| 7 | +from azure.identity.aio import DefaultAzureCredential |
| 8 | + |
| 9 | +from semantic_kernel.agents import AzureAIAgent, AzureAIAgentSettings, AzureAIAgentThread |
| 10 | +from semantic_kernel.connectors.mcp import MCPStdioPlugin |
| 11 | + |
| 12 | +""" |
| 13 | +The following sample demonstrates how to create a AzureAIAgent that |
| 14 | +answers questions about Github using a Semantic Kernel Plugin from a MCP server. |
| 15 | +
|
| 16 | +It uses the Azure AI Foundry Agent service to create a agent, so make sure to |
| 17 | +set the required environment variables for the Azure AI Foundry service: |
| 18 | +- AZURE_AI_AGENT_PROJECT_CONNECTION_STRING |
| 19 | +- AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME |
| 20 | +""" |
| 21 | + |
| 22 | +load_dotenv() |
| 23 | + |
| 24 | + |
| 25 | +async def main() -> None: |
| 26 | + """Main function that creates the plugin, the agent and starts the conversation loop.""" |
| 27 | + async with ( |
| 28 | + # 1. Login to Azure and create a Azure AI Project Client |
| 29 | + DefaultAzureCredential() as creds, |
| 30 | + AzureAIAgent.create_client(credential=creds) as client, |
| 31 | + # 2. Create the MCP plugin |
| 32 | + MCPStdioPlugin( |
| 33 | + name="github", |
| 34 | + description="Github Plugin", |
| 35 | + command="docker", |
| 36 | + args=["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"], |
| 37 | + env={"GITHUB_PERSONAL_ACCESS_TOKEN": os.getenv("GITHUB_PERSONAL_ACCESS_TOKEN")}, |
| 38 | + ) as github_plugin, |
| 39 | + ): |
| 40 | + # 3. Create the agent, with the MCP plugin and the thread |
| 41 | + agent = AzureAIAgent( |
| 42 | + client=client, |
| 43 | + definition=await client.agents.create_agent( |
| 44 | + model=AzureAIAgentSettings.create().model_deployment_name, |
| 45 | + name="GithubAgent", |
| 46 | + instructions="You are a microsoft/semantic-kernel Issue Triage Agent. " |
| 47 | + "You look at all issues that have the tag: 'triage' and 'python'." |
| 48 | + "When you find one that is untriaged, you will suggest a new assignee " |
| 49 | + "based on the issue description, look at recent closed PR's for issues in the same area. " |
| 50 | + "You will also suggest additional context if needed, like related issues or a bug fix. ", |
| 51 | + ), |
| 52 | + plugins=[github_plugin], # add the sample plugin to the agent |
| 53 | + ) |
| 54 | + thread: AzureAIAgentThread | None = None |
| 55 | + # 4. Print instructions and set the initial user input |
| 56 | + print("Starting Azure AI Agent with MCP Plugin sample...") |
| 57 | + print("Once the first prompt is answered, you can further ask questions, use `exit` to exit.") |
| 58 | + user_input = "Find the latest untriaged, unassigned issues and suggest new assignees." |
| 59 | + print(f"# User: {user_input}") |
| 60 | + try: |
| 61 | + while user_input.lower() != "exit": |
| 62 | + # 5. Invoke the agent for a response |
| 63 | + response = await agent.get_response(messages=user_input, thread=thread) |
| 64 | + print(f"# {response.name}: {response} ") |
| 65 | + thread = response.thread |
| 66 | + # 6. Get a new user input |
| 67 | + user_input = input("# User: ") |
| 68 | + finally: |
| 69 | + # 7. Cleanup: Clear the thread |
| 70 | + await thread.delete() if thread else None |
| 71 | + await client.agents.delete_agent(agent.definition.id) |
| 72 | + |
| 73 | + """ |
| 74 | + Sample output: |
| 75 | +GitHub MCP Server running on stdio |
| 76 | +Starting Azure AI Agent with MCP Plugin sample... |
| 77 | +Once the first prompt is answered, you can further ask questions, use `exit` to exit. |
| 78 | +# User: Find the latest untriaged, unassigned issues and suggest new assignees. |
| 79 | +# GithubAgent: Here are the latest untriaged and unassigned issues that are tagged with Python: |
| 80 | +
|
| 81 | +1. **[Issue #11459](https://github.com/microsoft/semantic-kernel/issues/11459)** |
| 82 | + - **Title:** Python: Bug: The provided example is incorrect |
| 83 | + - **Description:** There are apparent mistakes in the provided Python examples concerning shared and |
| 84 | + non-shared stateful configurations. |
| 85 | + - **Assignee Suggestion:** Assign to **eavanvalkenburg** based on prior involvement with Python-related code and |
| 86 | + recent PRs focusing on bug fixes. |
| 87 | +
|
| 88 | +2. **[Issue #11465](https://github.com/microsoft/semantic-kernel/issues/11465)** |
| 89 | + - **Title:** Python: sample using GitHub MCP Server and Azure AI Agent |
| 90 | + - **Description:** This adds a sample demonstrating how to use MCP tools with the Azure AI Agent. |
| 91 | + - **Assignee Suggestion:** Assign to **eavanvalkenburg** who is associated with the issue. |
| 92 | +
|
| 93 | +### Summary of Suggested Assignees: |
| 94 | +- **Issue #11459**: **eavanvalkenburg** |
| 95 | +- **Issue #11465**: **eavanvalkenburg** |
| 96 | +
|
| 97 | +It seems that I cannot update the assignees directly due to authentication issues. You can use this information |
| 98 | +as you see fit to assign these issues. If you need further assistance or specific context for each issue, |
| 99 | +please let me know! |
| 100 | + """ |
| 101 | + |
| 102 | + |
| 103 | +if __name__ == "__main__": |
| 104 | + asyncio.run(main()) |
0 commit comments