mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
e224f06e60
* Update models used in dotnet samples to gpt-5.4-mini * Fix additional missed sample
30 lines
718 B
YAML
30 lines
718 B
YAML
name: seattle-hotel-agent
|
|
description: >
|
|
A travel assistant agent that helps users find hotels in Seattle.
|
|
Demonstrates local C# tool execution - a key advantage of code-based
|
|
hosted agents over prompt agents.
|
|
metadata:
|
|
authors:
|
|
- Microsoft
|
|
tags:
|
|
- Azure AI AgentServer
|
|
- Microsoft Agent Framework
|
|
- Local Tools
|
|
- Travel Assistant
|
|
- Hotel Search
|
|
template:
|
|
name: seattle-hotel-agent
|
|
kind: hosted
|
|
protocols:
|
|
- protocol: responses
|
|
version: v1
|
|
environment_variables:
|
|
- name: AZURE_AI_PROJECT_ENDPOINT
|
|
value: ${AZURE_AI_PROJECT_ENDPOINT}
|
|
- name: MODEL_DEPLOYMENT_NAME
|
|
value: gpt-5.4-mini
|
|
resources:
|
|
- kind: model
|
|
id: gpt-5.4-mini
|
|
name: chat
|