Skip to content
Closed
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
23 changes: 23 additions & 0 deletions src/strands/vended_plugins/codeact/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
"""CodeAct plugin for code-based agent interaction.

CodeAct replaces standard tool calling with code-based orchestration.
The model generates Python code that calls tools as async functions,
and the plugin executes this code and feeds results back to the model.

Example:
```python
from strands import Agent
from strands.vended_plugins.codeact import CodeActPlugin

agent = Agent(
tools=[shell, calculator],
plugins=[CodeActPlugin()],
)

result = agent("Calculate squares of 1-10 and sum them")
```
"""

from .codeact_plugin import CodeActPlugin

__all__ = ["CodeActPlugin"]
Loading
Loading