Posts

AI 102 - Exam - Study materials

Image
What are AI agents?   An artificial intelligence (AI) agent is a software program that can interact with its environment, collect data, and use the data to perform self-determined tasks to meet predetermined goals. Humans set goals, but an AI agent independently chooses the best actions it needs to perform to achieve those goal AI agents are smart software services that combine generative AI models with contextual data and the ability to automate tasks based on user input and environmental factors that they perceive. The diagram shows the following process: A user asks the expense agent a question about expenses that can be claimed. The expenses agent accepts the question as a prompt. The agent uses a knowledge store containing expenses policy information to ground the prompt. The grounded prompt is submitted to the agent's language model to generate a response. The agent generates an expense claim on behalf of the user and submits it to be processed and generate a check payment. T...

Develop Azure Compute Solutions (25-30%)

Image
  Create ARM templates Create ARM templates Create and deploy ARM templates by using the Azure portal  Learn how to generate an Azure Resource Manager template (ARM template) using the Azure portal, and the process of editing and deploying the template from the portal. ARM templates are JSON files that define the resources you need to deploy for your solution. To understand the concepts associated with deploying and managing your Azure solutions, see  template deployment overview . Generate a template using the portal Creating an ARM template from scratch is not an easy task, especially if you are new to Azure deployment and you are not familiar with the JSON format. Using the Azure portal, you can configure a resource, for example an Azure Storage account. Before you deploy the resource, you can export your configuration into a template. You can save the template and reuse it in the future. Many experienced template developers use this method to generate templates w...