|
| 1 | +# Copyright (c) Microsoft. All rights reserved. |
| 2 | + |
| 3 | +import asyncio |
| 4 | +from typing import Annotated |
| 5 | + |
| 6 | +from semantic_kernel.agents import AgentGroupChat, ChatCompletionAgent |
| 7 | +from semantic_kernel.agents.open_ai import OpenAIAssistantAgent |
| 8 | +from semantic_kernel.agents.strategies.termination.termination_strategy import TerminationStrategy |
| 9 | +from semantic_kernel.connectors.ai.function_choice_behavior import FunctionChoiceBehavior |
| 10 | +from semantic_kernel.connectors.ai.open_ai import AzureChatCompletion |
| 11 | +from semantic_kernel.contents.chat_message_content import ChatMessageContent |
| 12 | +from semantic_kernel.contents.utils.author_role import AuthorRole |
| 13 | +from semantic_kernel.functions.kernel_function_decorator import kernel_function |
| 14 | +from semantic_kernel.kernel import Kernel |
| 15 | + |
| 16 | +##################################################################### |
| 17 | +# The following sample demonstrates how to create an OpenAI # |
| 18 | +# assistant using either Azure OpenAI or OpenAI, a chat completion # |
| 19 | +# agent and have them participate in a group chat to work towards # |
| 20 | +# the user's requirement. The ChatCompletionAgent uses a plugin # |
| 21 | +# that is part of the agent group chat. # |
| 22 | +##################################################################### |
| 23 | + |
| 24 | + |
| 25 | +class ApprovalTerminationStrategy(TerminationStrategy): |
| 26 | + """A strategy for determining when an agent should terminate.""" |
| 27 | + |
| 28 | + async def should_agent_terminate(self, agent, history): |
| 29 | + """Check if the agent should terminate.""" |
| 30 | + return "approved" in history[-1].content.lower() |
| 31 | + |
| 32 | + |
| 33 | +REVIEWER_NAME = "ArtDirector" |
| 34 | +REVIEWER_INSTRUCTIONS = """ |
| 35 | +You are an art director who has opinions about copywriting born of a love for David Ogilvy. |
| 36 | +The goal is to determine if the given copy is acceptable to print. |
| 37 | +If so, state that it is approved. Only include the word "approved" if it is so. |
| 38 | +If not, provide insight on how to refine suggested copy without example. |
| 39 | +You should always tie the conversation back to the food specials offered by the plugin. |
| 40 | +""" |
| 41 | + |
| 42 | +COPYWRITER_NAME = "CopyWriter" |
| 43 | +COPYWRITER_INSTRUCTIONS = """ |
| 44 | +You are a copywriter with ten years of experience and are known for brevity and a dry humor. |
| 45 | +The goal is to refine and decide on the single best copy as an expert in the field. |
| 46 | +Only provide a single proposal per response. |
| 47 | +You're laser focused on the goal at hand. |
| 48 | +Don't waste time with chit chat. |
| 49 | +Consider suggestions when refining an idea. |
| 50 | +""" |
| 51 | + |
| 52 | + |
| 53 | +class MenuPlugin: |
| 54 | + """A sample Menu Plugin used for the concept sample.""" |
| 55 | + |
| 56 | + @kernel_function(description="Provides a list of specials from the menu.") |
| 57 | + def get_specials(self) -> Annotated[str, "Returns the specials from the menu."]: |
| 58 | + return """ |
| 59 | + Special Soup: Clam Chowder |
| 60 | + Special Salad: Cobb Salad |
| 61 | + Special Drink: Chai Tea |
| 62 | + """ |
| 63 | + |
| 64 | + @kernel_function(description="Provides the price of the requested menu item.") |
| 65 | + def get_item_price( |
| 66 | + self, menu_item: Annotated[str, "The name of the menu item."] |
| 67 | + ) -> Annotated[str, "Returns the price of the menu item."]: |
| 68 | + return "$9.99" |
| 69 | + |
| 70 | + |
| 71 | +def _create_kernel_with_chat_completion(service_id: str) -> Kernel: |
| 72 | + kernel = Kernel() |
| 73 | + kernel.add_service(AzureChatCompletion(service_id=service_id)) |
| 74 | + kernel.add_plugin(plugin=MenuPlugin(), plugin_name="menu") |
| 75 | + return kernel |
| 76 | + |
| 77 | + |
| 78 | +async def main(): |
| 79 | + try: |
| 80 | + kernel = _create_kernel_with_chat_completion("artdirector") |
| 81 | + settings = kernel.get_prompt_execution_settings_from_service_id(service_id="artdirector") |
| 82 | + # Configure the function choice behavior to auto invoke kernel functions |
| 83 | + settings.function_choice_behavior = FunctionChoiceBehavior.Auto() |
| 84 | + agent_reviewer = ChatCompletionAgent( |
| 85 | + service_id="artdirector", |
| 86 | + kernel=kernel, |
| 87 | + name=REVIEWER_NAME, |
| 88 | + instructions=REVIEWER_INSTRUCTIONS, |
| 89 | + execution_settings=settings, |
| 90 | + ) |
| 91 | + |
| 92 | + agent_writer = await OpenAIAssistantAgent.create( |
| 93 | + service_id="copywriter", |
| 94 | + kernel=Kernel(), |
| 95 | + name=COPYWRITER_NAME, |
| 96 | + instructions=COPYWRITER_INSTRUCTIONS, |
| 97 | + ) |
| 98 | + |
| 99 | + chat = AgentGroupChat( |
| 100 | + agents=[agent_writer, agent_reviewer], |
| 101 | + termination_strategy=ApprovalTerminationStrategy(agents=[agent_reviewer], maximum_iterations=10), |
| 102 | + ) |
| 103 | + |
| 104 | + input = "Write copy based on the food specials." |
| 105 | + |
| 106 | + await chat.add_chat_message(ChatMessageContent(role=AuthorRole.USER, content=input)) |
| 107 | + print(f"# {AuthorRole.USER}: '{input}'") |
| 108 | + |
| 109 | + async for content in chat.invoke(): |
| 110 | + print(f"# {content.role} - {content.name or '*'}: '{content.content}'") |
| 111 | + |
| 112 | + print(f"# IS COMPLETE: {chat.is_complete}") |
| 113 | + finally: |
| 114 | + await agent_writer.delete() |
| 115 | + |
| 116 | + |
| 117 | +if __name__ == "__main__": |
| 118 | + asyncio.run(main()) |
0 commit comments