Posts

Create An Agent Using Microsoft Foundry (Azure AI) – Multi Agent Scenario

Image
  Create An Agent Using Microsoft Foundry (Azure AI) – Multi Agent Scenario This is a continuation of the previous article We will use same scenario but split the tasks amongst various agents by the orchestrator. The orchestrator: Contoso HR Multi Agent: The agent orchestrator. It controls the execution of tasks and decides which agent(s) to invoke to execute the task. The Utility or Worker Agents: a. Company_values_conduct_Agent: Handles topic or question on Contoso Electronics values and conduct. b. Empl_rights_workplace_safety_Agent: Handles topic or question on Contoso Electronics employee´s right and workplace safety. c. Health_wellness_benefits_Agent: Handles topics or questions on health and wellness benefits in Contoso Electronics. d. JD_Resp_Agent: Handle topic or question on Job description and Responsibilities in Contoso Electronics. e. Perf_review_process_Agent: Handles topic or question on performance review process in Contoso Electronics. Testing the Multi ...

Create An Agent Using Microsoft Foundry (Azure AI).

Image
  Create An Agent Using Microsoft Foundry (Azure AI). When the world had the breakthrough in LLM, the next logical thought was, if LLM can generate and understand natural language, why not take it further to perform action and automate processes? Then Agentic AI was born. In a short form we can say Agentic AI = LLM + Perform Action. We have agents for doing several automation and processes, but what truly makes an agent an AI agent or Agentic AI? An agent is an AI agent because it can understand natural language and act accordingly, especially in an orchestrated manner. An agentic AI comprises of: A large language model : This is the agent's brain; using generative AI for language understanding and reasoning. Instructions : A system prompt that defines the agent’s role and behavior. Think of it as the agent’s job description. Tools : These are what the agent uses to interact with the world. Tools can include: Knowledge tools that provide access to information, like search en...