mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* move catalog samples to the HostedAgents folder * move the catalog samples' projects to the HostedAgents folder * host agents, add dockerfile, add http for testing, and use explicit nuget packages * add agents` manifests * Update dotnet/samples/HostedAgents/AgentWithTextSearchRag/Dockerfile Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update dotnet/samples/HostedAgents/AgentsInWorkflows/Dockerfile Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update dotnet/samples/HostedAgents/AgentWithTextSearchRag/agent.yaml Co-authored-by: westey <164392973+westey-m@users.noreply.github.com> * Update dotnet/samples/HostedAgents/AgentsInWorkflows/agent.yaml Co-authored-by: westey <164392973+westey-m@users.noreply.github.com> * remove BOMs, decrease identation and remove unecessary `parameters` node. * remove unnecessary analyzers and align the packages' versions * remove end-of-line breaks in agents' descriptions, eliminated unnecessary double quotes around versions, and changed the descriptions to be more agent-centric rather than sample-centric * use DefaultAzureCredential --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: westey <164392973+westey-m@users.noreply.github.com>
30 lines
952 B
YAML
30 lines
952 B
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:
|
|
- example
|
|
- Agent Framework
|
|
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-4o-mini
|
|
resources:
|
|
- name: "gpt-4o-mini"
|
|
kind: model
|
|
id: gpt-4o-mini
|