Open
Conversation
Signed-off-by: Samantha Coyle <sam@diagrid.io>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Dapr Agents documentation to align with the Dapr Agents v1.0 release candidates, including the quickstart structure changes and newly documented capabilities (durable-first guidance, agents-as-tools, and vector store options).
Changes:
- Restructures the Quickstarts page to reflect the new progressive “numbered scripts” quickstarts plus a separate Examples catalog.
- Updates docs to reflect
Agentdeprecation and recommendDurableAgent, including new core-concepts content (tool execution modes, agents-as-tools, vector stores). - Refreshes the Getting Started guide with
uv-based setup and an Ollama-by-default LLM configuration path.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-quickstarts.md | Updates quickstarts/exmaples listing to match the new repo structure. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-patterns.md | Updates examples to use DurableAgent and documents Agent deprecation context. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-introduction.md | Adds “Agents as Tools” capability and expands memory/vector DB mentions. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-integrations.md | Adds vector store implementations and an “Agents as Tools” integrations section. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-getting-started.md | Updates prerequisites and end-to-end steps to use uv and Ollama-first configuration. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-core-concepts.md | Adds deprecation callout for Agent and expands tool execution + vector store + agents-as-tools documentation. |
Comments suppressed due to low confidence (1)
daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-patterns.md:49
- This code snippet references
ListandFlightOptionbut does not import or define them, so it won’t run as-written. Please either add the missing imports/type definitions (for example, aFlightOptionmodel) or simplify the signature/return type so the sample is self-contained.
from dapr_agents import DurableAgent, tool
@tool
def search_flights(destination: str) -> List[FlightOption]:
"""Search for flights to the specified destination."""
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-getting-started.md
Outdated
Show resolved
Hide resolved
daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-getting-started.md
Outdated
Show resolved
Hide resolved
daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-core-concepts.md
Outdated
Show resolved
Hide resolved
daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-integrations.md
Outdated
Show resolved
Hide resolved
Signed-off-by: Samantha Coyle <sam@diagrid.io>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thank you for helping make the Dapr documentation better!
Please follow this checklist before submitting:
In addition, please fill out the following to help reviewers understand this pull request:
Description
Various updates given the Dapr Agents v1.0 RCs are out. NOTE: This is not the official v1.0 bump - only updates to tee things up :)
Issue reference