Using Filter Hints with AI Agents
Introduction
In this guide we will cover how to use Filter Hints in the Wabee AI platform! This feature allows you to provide additional context to AI Agents, enhancing their performance in specific scenarios by guiding their data processing.
What are Filter Hints?
Filter hints are optional parameters you can include in your API requests to suggest how the AI model should filter or focus on specific data. These hints help tailor the AI’s responses to better fit your needs.
Note: Filter hints are suggestions, not commands. The AI model may choose whether or not to apply them. Always test thoroughly before deploying to production.
How to Use Filter Hints
To utilize filter hints, include a data_filter_hints
array in your API request. Each item in this array should be an object with the following properties:
Property | Description | Example |
---|---|---|
filter_key |
The field name to filter on | CompanyName |
filter_type |
The type of filter operation (e.g., "equals", "gt", "lt", "gte", "lte", "like") | equals |
filter_value |
The value to filter by | Acme Co. |
tool_name |
The name of the tool or data source this filter applies to | bubble_data |
Example API Call
Here's a sample code of how you can implement the API call using JavaScript with the fetch
API:
const apiUrl = 'https://my-agent-id.wabee.ai/core/v1/chain/';
const payload = {
messages: [
{
content: "What are the top 10 recent sales?",
role: "user"
}
],
data_filter_hints: [
{
filter_key: "CompanyName",
filter_type: "equals",
filter_value: "Acme Co.",
tool_name: "bubble_data"
}
]
};
fetch(apiUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-wabee-access': 'YOUR_API_KEY'
},
body: JSON.stringify(payload)
})
.then(response => response.json())
.then(data => {
console.log('AI Agent Response:', data);
})
.catch(error => {
console.error('Error:', error);
});
Explanation:
- Endpoint: The API endpoint is set for example purposes only. Replace
https://my-agent-id.wabee.ai/core/v1/chain/
with your agent endpoint from the agent settings page. - Headers:
Content-Type
: Indicates that the request body is in JSON format.x-wabee-access
: Your API key for authentication.- Payload: Contains the user message and the
data_filter_hints
. - Fetch API: Sends a POST request with the specified headers and payload.
- Response Handling: Logs the AI Agent's response or any errors to the console.
Use Cases
- User-Specific Data
- Scenario: Integrate AI Agents into your product's chat interface.
- Implementation: Use filter hints to provide context based on the logged-in user's permissions or preferences.
- Time-Based Filtering
- Scenario: Focus the AI on recent data.
- Implementation: Apply a filter hint with a date field to prioritize newer information.
- Department or Category Filtering
- Scenario: Large organizations with multiple departments.
- Implementation: Use filter hints to target data relevant to specific departments or categories.
Best Practices
- Test Thoroughly
- Ensure your implementation works across various scenarios.
- Don't Overly Rely on Filters
- Prepare your application to handle cases where the AI might not apply the filters as expected.
- Use Meaningful Filters
- Select filter hints that are relevant and beneficial for the AI’s tasks.
- Monitor Performance
- Track how filter hints impact your Agent's performance and make adjustments as needed. When filters are used by the agent in tools, the ability of the tool to apply the filter efficiently is dependent on the tool's capabilities.