Skip to content

Commit b24729f

Browse files
committed
feat: migrate experimental config loader documentation
- Add experimental section to documentation - Migrate all config loader documentation from sdk-python - Include comprehensive guides for: - Agent configuration loading - Tool configuration loading (including Agent-as-Tool) - Swarm configuration loading - Graph configuration loading - Structured output configuration - Update navigation to include experimental features - Maintain all original content and examples
1 parent 321b723 commit b24729f

File tree

8 files changed

+3454
-0
lines changed

8 files changed

+3454
-0
lines changed

docs/experimental/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Experimental Features
2+
3+
## What are Experimental Features?
4+
5+
Experimental features in Strands Agents are cutting-edge capabilities that are:
6+
- In active development and testing
7+
- Subject to breaking changes
8+
- Available for early feedback and evaluation
9+
- Not recommended for production use without careful consideration
10+
11+
## Current Experimental Features
12+
13+
### Configuration Loaders
14+
Declarative YAML-based configuration for agents, tools, swarms, and graphs.
15+
16+
## Using Experimental Features
17+
18+
### Installation
19+
```bash
20+
# Experimental features are included in the main SDK
21+
pip install strands-agents
22+
```
23+
24+
### Enabling Experimental Features
25+
```python
26+
from strands.experimental.config_loader import AgentConfigLoader
27+
```
28+
29+
## Stability and Support
30+
31+
- **API Stability**: Experimental APIs may change between releases
32+
- **Documentation**: May be incomplete or subject to updates
33+
- **Support**: Community support through GitHub issues
34+
- **Migration**: Migration guides provided when features graduate to stable
35+
36+
## Feedback and Contributions
37+
38+
We encourage feedback on experimental features:
39+
- [GitHub Issues](https://github.com/strands-agents/sdk-python/issues)
40+
- [Discussions](https://github.com/strands-agents/sdk-python/discussions)
41+
- [Contributing Guide](https://github.com/strands-agents/sdk-python/blob/main/CONTRIBUTING.md)

0 commit comments

Comments
 (0)