mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-11-21 12:38:14 +00:00
12 lines
373 B
TypeScript
12 lines
373 B
TypeScript
import { Intent } from '../../types';
|
|
|
|
const writingTaskIntent: Intent = {
|
|
name: 'writing_task',
|
|
description:
|
|
'Use this intent to assist users with writing tasks such as drafting emails, creating documents, or generating content based on their instructions or greetings.',
|
|
requiresSearch: false,
|
|
enabled: (config) => true,
|
|
};
|
|
|
|
export default writingTaskIntent;
|