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
32 lines
1.0 KiB
YAML
32 lines
1.0 KiB
YAML
name: AgentWithTextSearchRag
|
|
displayName: "Text Search RAG Agent"
|
|
description: >
|
|
An AI agent that uses TextSearchProvider for retrieval augmented generation (RAG) capabilities.
|
|
The agent runs searches against an external knowledge base before each model invocation and
|
|
injects the results into the model context. It can answer questions about Contoso Outdoors
|
|
policies and products, including return policies, refunds, shipping options, and product care
|
|
instructions such as tent maintenance.
|
|
metadata:
|
|
authors:
|
|
- Microsoft Agent Framework Team
|
|
tags:
|
|
- Azure AI AgentServer
|
|
- Microsoft Agent Framework
|
|
- Retrieval-Augmented Generation
|
|
- RAG
|
|
template:
|
|
kind: hosted
|
|
name: AgentWithTextSearchRag
|
|
protocols:
|
|
- protocol: responses
|
|
version: v1
|
|
environment_variables:
|
|
- name: AZURE_OPENAI_ENDPOINT
|
|
value: ${AZURE_OPENAI_ENDPOINT}
|
|
- name: AZURE_OPENAI_DEPLOYMENT_NAME
|
|
value: gpt-5.4-mini
|
|
resources:
|
|
- name: "gpt-5.4-mini"
|
|
kind: model
|
|
id: gpt-5.4-mini
|