Skip to content

Commit

Permalink
Merge pull request #100 from brnaba-aws/main
Browse files Browse the repository at this point in the history
Added OpenAI classifier documentation
  • Loading branch information
brnaba-aws authored Nov 22, 2024
2 parents 18e476f + 8733a8b commit 9abefed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ export default defineConfig({
items: [
{ label: 'Bedrock Classifier', link: '/classifiers/built-in/bedrock-classifier'},
{ label: 'Anthropic Classifier', link: '/classifiers/built-in/anthropic-classifier' },
{ label: 'OpenAI Classifier', link: '/classifiers/built-in/openai-classifier' },
]
},
{ label: 'Custom Classifier', link: '/classifiers/custom-classifier' },

]
},
{
Expand All @@ -72,7 +73,7 @@ export default defineConfig({
]
},
{ label: 'Custom Agents', link: '/agents/custom-agents' },

]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The OpenAI Classifier extends the abstract `Classifier` class and uses the OpenA
- Supports custom system prompts and variables
- Handles conversation history for context-aware classification

### Basic Usage
## Basic Usage

To use the OpenAIClassifier, you need to create an instance with your OpenAI API key and pass it to the Multi-Agent Orchestrator:

Expand All @@ -35,7 +35,7 @@ import { Tabs, TabItem } from '@astrojs/starlight/components';
</TabItem>
</Tabs>

### Custom Configuration
## Custom Configuration

You can customize the OpenAIClassifier by providing additional options:

Expand Down

0 comments on commit 9abefed

Please sign in to comment.