Skip to content

Commit

Permalink
Merge pull request #112 from brnaba-aws/main
Browse files Browse the repository at this point in the history
Updated doc installation steps for python with extra feature
  • Loading branch information
brnaba-aws authored Nov 27, 2024
2 parents a64a3ac + d05a45a commit 28abc17
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,14 +292,14 @@ These examples showcase:
### Working with Anthropic or OpenAI
If you want to use Anthropic or OpenAI for classifier and/or agents, make sure to install the multi-agent-orchestrator with the relevant extra feature.
```bash
pip install multi-agent-orchestrator[anthropic]
pip install multi-agent-orchestrator[openai]
pip install "multi-agent-orchestrator[anthropic]"
pip install "multi-agent-orchestrator[openai]"
```

### Full package installation
For a complete installation (including Anthropic and OpenAi):
```bash
pip install multi-agent-orchestrator[all]
pip install "multi-agent-orchestrator[all]"
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The Anthropic Classifier extends the abstract `Classifier` class and uses the An

⚠️ To use Anthropic Classifier, make sure you have installed the multi-agent-orchestrator with anthropic feature (see [python installation](/multi-agent-orchestrator/general/quickstart#-get-started))
```bash
pip install multi-agent-orchestrator[anthropic]
pip install "multi-agent-orchestrator[anthropic]"
```

To use the AnthropicClassifier, you need to create an instance with your Anthropic API key and pass it to the Multi-Agent Orchestrator:
Expand Down
6 changes: 3 additions & 3 deletions docs/src/content/docs/general/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ Ensure you have [requested access](https://docs.aws.amazon.com/bedrock/latest/us
<TabItem label="Python" icon="seti:python">
```bash
pip install multi-agent-orchestrator # for core dependencies
pip install multi-agent-orchestrator[anthropic] # for Anthropic classifier and agent
pip install multi-agent-orchestrator[openai] # for OpenAI classifier and agent
pip install multi-agent-orchestrator[all] # for all packages including Anthropic and OpenAI
pip install "multi-agent-orchestrator[anthropic]" # for Anthropic classifier and agent
pip install "multi-agent-orchestrator[openai]" # for OpenAI classifier and agent
pip install "multi-agent-orchestrator[all]" # for all packages including Anthropic and OpenAI
```
</TabItem>
</Tabs>
Expand Down
4 changes: 2 additions & 2 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ This example showcases:
### Working with Anthropic or OpenAI
If you want to use Anthropic or OpenAI for classifier and/or agents, make sure to install the multi-agent-orchestrator with the relevant extra feature.
```bash
pip install multi-agent-orchestrator[anthropic]
pip install multi-agent-orchestrator[openai]
pip install "multi-agent-orchestrator[anthropic]"
pip install "multi-agent-orchestrator[openai]"
```

### Full package installation
Expand Down

0 comments on commit 28abc17

Please sign in to comment.