Skip to content

Commit 77a41e6

Browse files
authored
Updated readme with the new docs location (#228)
Signed-off-by: Bilgin Ibryam <[email protected]>
1 parent 17ff7a6 commit 77a41e6

File tree

1 file changed

+12
-24
lines changed

1 file changed

+12
-24
lines changed

README.md

Lines changed: 12 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ Dapr Agents is a developer framework designed to build production-grade resilien
2020
- **Data-Driven Agents**: Directly integrate with databases, documents, and unstructured data by connecting to dozens of different data sources.
2121
- **Multi-Agent Systems**: Secure and observable by default, enabling collaboration between agents.
2222
- **Vendor-Neutral & Open Source**: Avoid vendor lock-in and gain flexibility across cloud and on-premises deployments.
23-
- **Platform-Ready**: Built-in RBAC, access scopes and declarative resources enable platform teams to integrate Dapr agents into their systems.
23+
- **Platform-Ready**: Access scopes and declarative resources enable platform teams to integrate Dapr Agents into their systems.
24+
2425

2526
## Why Choose Dapr Agents?
2627

@@ -30,11 +31,11 @@ Dapr Agents uses a [durable-execution workflow engine](https://docs.dapr.io/deve
3031

3132
### Cost-Effective AI Adoption
3233

33-
Dapr Agents builds on top of Dapr's Workflow API, which under the hood represents each agent as an actor, a single unit of compute and state that is thread-safe and natively distributed, lending itself well to an agentic Scale-To-Zero architecture. This minimizes infrastructure costs, making AI adoption accessible to everyone. The underlying virtual actor model allows thousands of agents to run on demand on a single core machine with double-digit millisecond latency when scaling from zero. When unused, the agents are reclaimed by the system but retain their state until the next time they are needed. With this design, there's no trade-off between performance and resource efficiency.
34+
Dapr Agents builds on top of Dapr's Workflow API, which under the hood uses [actors](https://docs.dapr.io/developing-applications/building-blocks/actors/actors-overview/), a single unit of compute and state that is thread-safe and natively distributed, lending itself well to an agentic Scale-To-Zero architecture. This minimizes infrastructure costs, making AI adoption accessible to everyone. The underlying virtual actor model allows thousands of agents to run on demand on a single core machine with double-digit millisecond latency when scaling from zero. When unused, the agents are reclaimed by the system but retain their state until the next time they are needed. With this design, there's no trade-off between performance and resource efficiency.
3435

3536
### Data-Centric AI Agents
3637

37-
With built-in connectivity to over 50 enterprise data sources, Dapr Agents efficiently handles structured and unstructured data. From basic [PDF extraction](https://v1-16.docs.dapr.io/developing-applications/dapr-agents/dapr-agents-integrations/#arxiv-fetcher) to large-scale database interactions, it enables seamless data-driven AI workflows with minimal code changes. Dapr's [bindings](https://docs.dapr.io/reference/components-reference/supported-bindings/) and [state stores](https://docs.dapr.io/reference/components-reference/supported-state-stores/) provide access to a large number of data sources that can be used to ingest data to an agent.
38+
With built-in connectivity to over 50 enterprise data sources, Dapr Agents efficiently handles structured and unstructured data. From basic [PDF extraction](https://docs.dapr.io/developing-applications/dapr-agents/dapr-agents-integrations/#arxiv-fetcher) to large-scale database interactions, it enables seamless data-driven AI workflows with minimal code changes. Dapr's [bindings](https://docs.dapr.io/reference/components-reference/supported-bindings/) and [state stores](https://docs.dapr.io/reference/components-reference/supported-state-stores/) provide access to a large number of data sources that can be used to ingest data to an agent.
3839

3940
### Accelerated Development
4041

@@ -66,33 +67,20 @@ As a part of **CNCF**, Dapr Agents is vendor-neutral, eliminating concerns about
6667

6768
## Roadmap
6869

69-
Here are some of the major features we're working on:
70-
71-
### Q2 2025
72-
- **MCP Support** - Integration with Anthropic's MCP platform ([#50](https://github.com/dapr/dapr-agents/issues/50) ✅ )
73-
- **Agent Interaction Tracing** - Enhanced observability of agent interactions with LLMs and tools ([#79](https://github.com/dapr/dapr-agents/issues/79))
74-
- **Streaming LLM Output** - Real-time streaming capabilities for LLM responses ([#80](https://github.com/dapr/dapr-agents/issues/80))
75-
- **HTTP Endpoint Tools** - Support for using Dapr's HTTP endpoint capabilities for tool calling ([#81](https://github.com/dapr/dapr-agents/issues/81))
76-
- **DSL Cleanup** - Streamlining the domain-specific language and removing actor dependencies ([#65](https://github.com/dapr/dapr-agents/issues/65))
77-
- **Samples Registry** - A dedicated repository for Dapr Agents examples and use cases
78-
79-
### Q3/Q4 2025
80-
- **Human-in-the-Loop Support**
81-
- **Conversation API Progressed to Beta**
82-
- **Vector API** - Vector operations support in Dapr and Dapr Agents
70+
Check the [project view](https://github.com/orgs/dapr/projects/92) for some of the major features we're working on:
8371

84-
For more details about these features and other planned work, please check out our [GitHub issues](https://github.com/dapr/dapr-agents/issues).
72+
For a complete list of issue (including bug fixes) please check out our [GitHub issues](https://github.com/dapr/dapr-agents/issues).
8573

8674
### Language Support
8775

88-
| Language | Current Status | Development Status | Stable Status |
89-
|----------|---------------|-------------|--------|
90-
| Python | In Development | Q2 2025 | Q3 2025 |
91-
| Other Languages | Coming Soon | TBD | TBD |
76+
| Language | Current Status | Development Status | Stable Status |
77+
|----------|--------|-------------|------------------|
78+
| Python | In Development | Q2 2025 | expected Q4 2025 |
79+
| Other Languages | TBD | TBD | TBD |
9280

9381
## Documentation
9482

95-
- [Development Guide](docs/development/README.md) - For developers and contributors
83+
- Documentation: [https://docs.dapr.io/developing-applications/dapr-agents/](https://docs.dapr.io/developing-applications/dapr-agents/)
9684

9785
## Community
9886

@@ -125,6 +113,6 @@ To start running Dapr Agents locally, see our [quickstarts](./quickstarts/README
125113
Dapr Agents is an open-source project under the CNCF umbrella, and we welcome contributions from developers and organizations worldwide!
126114

127115
- GitHub Repository: [https://github.com/dapr/dapr-agents](https://github.com/dapr/dapr-agents)
128-
- Documentation: [https://dapr.github.io/dapr-agents/](https://dapr.github.io/dapr-agents/)
116+
- Documentation: [https://dapr.github.io/dapr-agents/](https://docs.dapr.io/developing-applications/dapr-agents/)
129117
- Community Discord: [Join the discussion](https://bit.ly/dapr-discord).
130118
- Contribute: Open an issue or submit a PR to help improve Dapr Agents!

0 commit comments

Comments
 (0)