Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added OpenAI classifier documentation #100

Merged
merged 2 commits into from
Nov 22, 2024
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
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
Loading