Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions .workshop/docs/steps/06-skills.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,14 +265,25 @@ Add the local skill to the manifest metadata: a `travel-guide` entry under `tool
```yaml
# travel_assistant/agent.manifest.yaml (delta)
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
tool_declarations:
# ... the Step 5 declarations stay ...
- name: travel-guide
description: >
Local Skill that renders a grounded, downloadable PDF travel guide (with a
day-by-day itinerary) via scripts/create_travel_guide.py.
type: skill
# ... the template block (name, kind, protocols, environment_variables) stays ...
resources: []
```

Expand Down Expand Up @@ -533,7 +544,18 @@ In the manifest, append the `Foundry Skills` tag, add a `response-guardrails` `t
```yaml
# travel_assistant/agent.manifest.yaml (delta)
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Foundry Skills]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Foundry Skills
tool_declarations:
# ... the Step 5 declarations + local `travel-guide` skill stay ...
- name: response-guardrails
Expand Down
13 changes: 12 additions & 1 deletion .workshop/docs/steps/07-multi-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,18 @@ Metadata-only: append the `Multi-Agent` tag to your existing `tags` (if you kept
```yaml
# travel_assistant/agent.manifest.yaml (delta)
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Multi-Agent]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Multi-Agent
group_chat:
manager: Coordinator
specialists: [FlightsSpecialist, HotelsSpecialist, ActivitiesSpecialist]
Expand Down
14 changes: 13 additions & 1 deletion .workshop/docs/steps/08-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,19 @@ Metadata-only: append the `Workflows` tag, update the `description`, and add a `
```yaml
# travel_assistant/agent.manifest.yaml (delta)
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Multi-Agent, Workflows]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Multi-Agent
- Workflows
workflow:
start: gather_preferences
executors: [gather_preferences, flights, hotels, activities, consolidate, finalize_itinerary]
Expand Down
15 changes: 14 additions & 1 deletion .workshop/docs/steps/09-memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,20 @@ In `agent.manifest.yaml`, append the `Memory` tag, add a memory `tool_declaratio
```yaml
# travel_assistant/agent.manifest.yaml (delta)
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Multi-Agent, Workflows, Memory]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Multi-Agent
- Workflows
- Memory
tool_declarations:
- name: travelbuddy_memory
description: Durable, per-user memory backed by a Foundry Memory Store, scoped via {{$userId}}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,18 @@ description: >
prompt + script, and a Foundry response-guardrails Skill downloaded from the
project and shareable across agents.
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Foundry Skills]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Foundry Skills
tool_declarations:
- name: get_weather
description: Returns mock destination weather for a city and optional date.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,19 @@ description: >
response-guardrails Skill (downloaded from the project and shareable across agents) — sliced
per role.
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Foundry Skills, Multi-Agent]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Foundry Skills
- Multi-Agent
tool_declarations:
- name: get_weather
description: Returns mock destination weather for a city and optional date.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,20 @@ description: >
hosted as one agent via workflow.as_agent(); an optional human-approval gate uses
the request/response (request_info) pattern.
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Foundry Skills, Multi-Agent, Workflows]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Foundry Skills
- Multi-Agent
- Workflows
tool_declarations:
- name: get_weather
description: Returns mock destination weather for a city and optional date.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,21 @@ description: >
FoundryMemoryProvider, so durable per-user preferences are recalled and updated
across conversations.
metadata:
tags: [Agent Framework, AI Agent Hosting, Azure AI AgentServer, Responses Protocol, Travel Assistant, Function Tools, MCP Tools, Toolbox Tools, RAG, Skills, Foundry Skills, Multi-Agent, Workflows, Memory]
tags:
- Agent Framework
- AI Agent Hosting
- Azure AI AgentServer
- Responses Protocol
- Travel Assistant
- Function Tools
- MCP Tools
- Toolbox Tools
- RAG
- Skills
- Foundry Skills
- Multi-Agent
- Workflows
- Memory
tool_declarations:
- name: get_weather
description: Returns mock destination weather for a city and optional date.
Expand Down
Loading