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.
- Host: GitHub
- URL: https://github.com/marcominerva/agentbasicservice
- Owner: marcominerva
- License: mit
- Created: 2025-11-04T09:56:56.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-11-07T15:09:46.000Z (5 months ago)
- Last Synced: 2025-11-07T17:19:28.684Z (5 months ago)
- Topics: agent-framework, agents, ai, azure, azure-openai, c-sharp, openai
- Language: C#
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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