Skip to content

shayne-neighborlysoftware/semantic-kernel-aspire

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Description

This is a demo to showcase how to use the Semantic Kernel Agent Framework with .NET Aspire.

How to run the example

  1. Configure the OpenAI integration for .NET Aspire according to the documentation.

Note that you can use either DefaultAzureCredentials or API Keys for authentication.

You need to add the connection string to your AppHost appsettings.json file. The connection string format depends on the authentication method you choose.

Using DefaultAzureCredentials:

{
  "ConnectionStrings": {
    "azureOpenAI": "https://{account_name}.openai.azure.com/"
  }
}

Using API Keys:

{
  "ConnectionStrings": {
    "azureOpenAI": "Endpoint=https://{account_name}.openai.azure.com/;Key={api_key};"
  },
}
  1. Run the sample
cd src/SemanticKernelWithAspire.AppHost
dotnet run

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 56.3%
  • TypeScript 33.5%
  • CSS 6.9%
  • JavaScript 1.8%
  • HTML 1.5%