Skip to content

Commit

Permalink
minor update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
cornelcroi committed Dec 2, 2024
1 parent 7e766c4 commit 636d554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/content/docs/agents/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ When you have a single agent use case, you can bypass the orchestrator and call
<TabItem label="TypeScript" icon="seti:typescript" color="blue">
```typescript
// Initialize the agent
const agent = new CustomAgent({
const agent = new BedrockLLMAgent({
name: "custom-agent",
description: "Handles specific tasks"
});
Expand All @@ -206,7 +206,7 @@ When you have a single agent use case, you can bypass the orchestrator and call
<TabItem label="Python" icon="seti:python">
```python
# Initialize the agent
agent = CustomAgent(
agent = BedrockLLMAgent(
name="custom-agent",
description="Handles specific tasks"
)
Expand Down

0 comments on commit 636d554

Please sign in to comment.