Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 1.74 KB

File metadata and controls

29 lines (15 loc) · 1.74 KB

Chatting About My Previous Hikes

This sample demonstrates how to use the Azure OpenAI with a gpt-35-turbo model, from a .NET 8.0 console application. Use the AI model to get analytics and information about your previous hikes. It consists of a console application, running locally, that will read the file hikes.md and send request to an Azure OpenAI Service deployed in your Azure subscription and provide the result in the console.

Everything will be deployed automatically using the Azure Developer CLI.

Deploying the Azure resources

If it's not already done, follow the Getting-started: Deploying the Azure resources to deploy the Azure OpenAI service with the models.

Trying Chatting About My Previous Hikes

  1. From a terminal or command prompt, navigate to the 03-ChattingAboutMyHikes directory.

  2. It's now time to try the console application. Depending on your Azure subscription it's possible that a few more minutes are required before the model deployed in Azure OpenAI get available. If you get an error message about this, wait a few (~5) minutes and try again.

    dotnet run
  3. (Optional) Try changing the hikeRequest variable in the Program.cs, asking for different questions (ex: How many times did you hiked when it was raining? How many times did you hiked in 2021? etc.)

  4. (Optional) Try another sample from the Getting-started: Trying the samples to experiment different scenarios.

Clean up resources

Once you are done experimenting with the samples, follow the instructions from the Getting-started: Clean up resources to delete the Azure resources created using the Azure Developer CLI.