Skip to content
Merged
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
3 changes: 0 additions & 3 deletions docs/api-reference/handlers.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@
::: strands.handlers.callback_handler
options:
heading_level: 2
::: strands.handlers.tool_handler
options:
heading_level: 2
3 changes: 3 additions & 0 deletions docs/api-reference/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
options:
heading_level: 1
members: false
::: strands.models.model
options:
heading_level: 2
::: strands.models.bedrock
options:
heading_level: 2
Expand Down
3 changes: 0 additions & 3 deletions docs/api-reference/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
::: strands.types.media
options:
heading_level: 2
::: strands.types.models
options:
heading_level: 2
::: strands.types.streaming
options:
heading_level: 2
Expand Down
1 change: 0 additions & 1 deletion docs/user-guide/concepts/agents/agent-loop.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def event_loop_cycle(
system_prompt: Optional[str],
messages: Messages,
tool_config: Optional[ToolConfig],
tool_handler: Optional[ToolHandler],
thread_pool: Optional[ThreadPoolExecutor] = None,
**kwargs: Any,
) -> Tuple[StopReason, Message, EventLoopMetrics, Any]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ from typing_extensions import Unpack

from custom.model import CustomModelClient

from strands.types.models import Model
from strands.models import Model
from strands.types.content import Messages
from strands.types.streaming import StreamEvent
from strands.types.tools import ToolSpec
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ agent("Hello!")

## Model Providers

### Identifying a configured model
### Identifying a configured model

Strands defaults to the Bedrock model provider using Claude 3.7 Sonnet. The model your agent is using can be retrieved by accessing [`model.config`](../api-reference/types.md#strands.types.models.Model.get_config):
Strands defaults to the Bedrock model provider using Claude 3.7 Sonnet. The model your agent is using can be retrieved by accessing [`model.config`](../api-reference/models.md#strands.models.model.Model.get_config):

```python
from strands import Agent
Expand Down
Loading