feat(search): add classifier

This commit is contained in:
ItzCrazyKns
2025-11-20 14:55:24 +05:30
parent 8b515201f3
commit 036b44611f
9 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Intent } from '../../types';
const webSearchIntent: Intent = {
name: 'web_search',
description:
'Use this intent to find current information from the web when the user is asking a question or needs up-to-date information that cannot be provided by widgets or other intents.',
requiresSearch: true,
enabled: (config) => config.sources.includes('web'),
};
export default webSearchIntent;