An open API service indexing awesome lists of open source software.

https://github.com/marcominerva/agentbasicservice

An example to demonstrate configuration and usage of a basic agent from Microsoft Agent Framework in an ASP.NET Core Minimal API application, supporting thread persistence and structured output.
https://github.com/marcominerva/agentbasicservice

agent-framework agents ai azure azure-openai c-sharp openai

Last synced: about 1 month ago
JSON representation

An example to demonstrate configuration and usage of a basic agent from Microsoft Agent Framework in an ASP.NET Core Minimal API application, supporting thread persistence and structured output.

Awesome Lists containing this project

README

          

# Agent Basic Service

Examples to demonstrate configuration and usage of basic agents and workflows from Microsoft Agent Framework, supporting thread persistence and structured output.

## Configuration of the Web API

To configure Azure OpenAI, update the following properties in the `appsettings.json` file:

```json
{
"AzureOpenAI": {
"Endpoint": "https://your-resource-name.openai.azure.com/openai/v1/",
"Deployment": "your-deployment-name",
"ApiKey": "your-api-key"
}
}
```

- **Endpoint**: The Azure OpenAI resource endpoint URL
- **Deployment**: The name of your deployed model
- **ApiKey**: Your Azure OpenAI API key