Restructure Dapr Agents integrations and document Drasi extension - #5264
Open
JeffreyJPZ wants to merge 5 commits into
Open
Restructure Dapr Agents integrations and document Drasi extension#5264JeffreyJPZ wants to merge 5 commits into
JeffreyJPZ wants to merge 5 commits into
Conversation
This was referenced Jul 25, 2026
JeffreyJPZ
force-pushed
the
feat/dapr-agents-ext-drasi
branch
16 times, most recently
from
July 28, 2026 02:35
e708818 to
d82d033
Compare
Signed-off-by: Jeffrey Zhang <jeffreyjpizhang@gmail.com>
JeffreyJPZ
force-pushed
the
feat/dapr-agents-ext-drasi
branch
from
July 28, 2026 02:35
d82d033 to
646edc6
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR restructures the Dapr Agents “Integrations” documentation from a single long page into a section-based hierarchy (by provider and by integration type), and adds initial documentation for the Drasi extension plus additional quickstart/example links.
Changes:
- Replaced the monolithic
dapr-agents-integrations.mdwith a newintegrations/section and child pages (splitters, loaders, vector stores, tools, providers). - Added a Drasi provider integration page documenting the
drasi_triggersurface and linked it to a new Drasi example entry on the Quickstarts page. - Added/updated vector store integration pages (Chroma, Postgres, Redis) and new Tools integration pages.
Reviewed changes
Copilot reviewed 19 out of 19 changed files in this pull request and generated 10 comments.
Show a summary per file
| File | Description |
|---|---|
| daprdocs/content/en/developing-ai/dapr-agents/integrations/vector-stores/redis.md | New Redis vector store integration doc page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/vector-stores/postgres.md | New Postgres (pgvector) vector store integration doc page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/vector-stores/chroma.md | New Chroma vector store integration doc page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/vector-stores/_index.md | New Vector Stores section landing page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/tools/mcp-toolbox.md | New MCP Toolbox for Databases tools integration doc page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/tools/agents-as-tools.md | New “Agents as Tools” integration doc page (links to core concepts). |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/tools/_index.md | New Tools section landing page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/splitters/text.md | New Text splitter integration doc page (migrated/expanded content). |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/splitters/_index.md | New Splitters section landing page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/providers/drasi.md | New Drasi provider integration doc page for drasi-triggered agents. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/providers/_index.md | New Providers section landing page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/loaders/arxiv.md | New arXiv loader integration doc page (migrated/expanded content). |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/loaders/_index.md | New Loaders section landing page. |
| daprdocs/content/en/developing-ai/dapr-agents/integrations/_index.md | New Integrations section landing page replacing the old single-file page. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-why.md | Updated link target to new integrations section. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-quickstarts.md | Added additional example rows + new Drasi extension examples section. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-introduction.md | Updated link target to new integrations section. |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-integrations.md | Removed monolithic integrations page (replaced by integrations/ section). |
| daprdocs/content/en/developing-ai/dapr-agents/dapr-agents-extensions.md | Updated “See also” integrations link to new integrations section. |
Comments suppressed due to low confidence (2)
daprdocs/content/en/developing-ai/dapr-agents/integrations/vector-stores/postgres.md:26
- Using single quotes in the
uv addcommand is not Windows-friendly and is inconsistent with other docs in this repo (which use double quotes for extras). Prefer double quotes here.
uv add 'psycopg[binary,pool]' pgvector
daprdocs/content/en/developing-ai/dapr-agents/integrations/providers/drasi.md:39
- Package extras like
[drasi]should be quoted to avoid shell globbing (e.g., zsh) and to keep the command copy/paste-friendly across platforms. Other docs in this repo use double quotes for extras.
uv add dapr-agents[drasi]
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Jeffrey Zhang <72636309+JeffreyJPZ@users.noreply.github.com>
Signed-off-by: Jeffrey Zhang <jeffreyjpizhang@gmail.com>
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
This should make it a little less painful to document the other integrations that are currently missing (embeddings, executors, chat clients, etc.) and other integrations in the future (trigger sources maybe).
Issue reference
Closes #5252