aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/tools/CreateAnyDocTool.ts
blob: 6f61b77d4c23c6be54c75b2d2734d0dce0095cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import { v4 as uuidv4 } from 'uuid';
import { BaseTool } from './BaseTool';
import { Observation } from '../types/types';
import { ParametersType, Parameter } from '../types/tool_types';
import { DocumentOptions, Docs } from '../../../../documents/Documents';

/**
 * List of supported document types that can be created via text LLM.
 */
type supportedDocumentTypesType = 'text' | 'html' | 'equation' | 'functionPlot' | 'dataviz' | 'noteTaking' | 'rtf' | 'message';
const supportedDocumentTypes: supportedDocumentTypesType[] = ['text', 'html', 'equation', 'functionPlot', 'dataviz', 'noteTaking', 'rtf', 'message'];

/**
 * Description of document options and data field for each type.
 */
const documentTypesInfo = {
    text: {
        options: ['title', 'backgroundColor', 'fontColor', 'text_align', 'layout'],
        dataDescription: 'The text content of the document.',
    },
    html: {
        options: ['title', 'backgroundColor', 'layout'],
        dataDescription: 'The HTML-formatted text content of the document.',
    },
    equation: {
        options: ['title', 'backgroundColor', 'fontColor', 'layout'],
        dataDescription: 'The equation content as a string.',
    },
    functionPlot: {
        options: ['title', 'backgroundColor', 'layout', 'function_definition'],
        dataDescription: 'The function definition(s) for plotting. Provide as a string or array of function definitions.',
    },
    dataviz: {
        options: ['title', 'backgroundColor', 'layout', 'chartType'],
        dataDescription: 'A string of comma-separated values representing the CSV data.',
    },
    noteTaking: {
        options: ['title', 'backgroundColor', 'layout'],
        dataDescription: 'The initial content or structure for note-taking.',
    },
    rtf: {
        options: ['title', 'backgroundColor', 'layout'],
        dataDescription: 'The rich text content in RTF format.',
    },
    message: {
        options: ['title', 'backgroundColor', 'layout'],
        dataDescription: 'The message content of the document.',
    },
};

const createAnyDocumentToolParams = [
    {
        name: 'document_type',
        type: 'string',
        description: `The type of the document to create. Supported types are: ${supportedDocumentTypes.join(', ')}`,
        required: true,
    },
    {
        name: 'data',
        type: 'string',
        description: 'The content or data of the document. The exact format depends on the document type.',
        required: true,
    },
    {
        name: 'options',
        type: 'string',
        description: `A JSON string representing the document options. Available options depend on the document type. For example:
${supportedDocumentTypes
    .map(
        docType => `
- For '${docType}' documents, options include: ${documentTypesInfo[docType].options.join(', ')}`
    )
    .join('\n')}`,
        required: false,
    },
] as const;

type CreateAnyDocumentToolParamsType = typeof createAnyDocumentToolParams;

export class CreateAnyDocumentTool extends BaseTool<CreateAnyDocumentToolParamsType> {
    private _addLinkedDoc: (doc_type: string, data: string | undefined, options: DocumentOptions, id: string) => void;

    constructor(addLinkedDoc: (doc_type: string, data: string | undefined, options: DocumentOptions, id: string) => void) {
        super(
            'createAnyDocument',
            `Creates any type of document with the provided options and data. Supported document types are: ${supportedDocumentTypes.join(', ')}. dataviz is a csv table tool, so for CSVs, use dataviz. Here are the options for each type:
            <supported_document_types>
        ${supportedDocumentTypes
            .map(
                docType => `
        <document_type name="${docType}">
          <data_description>${documentTypesInfo[docType].dataDescription}</data_description>
          <options>
            ${documentTypesInfo[docType].options.map(option => `<option>${option}</option>`).join('\n')}
          </options>
        </document_type>
        `
            )
            .join('\n')}
      </supported_document_types>`,
            createAnyDocumentToolParams,
            'Provide the document type, data, and options for the document. Options should be a valid JSON string containing the document options specific to the document type.',
            `Creates any type of document with the provided options and data. Supported document types are: ${supportedDocumentTypes.join(', ')}.`
        );
        this._addLinkedDoc = addLinkedDoc;
    }

    async execute(args: ParametersType<CreateAnyDocumentToolParamsType>): Promise<Observation[]> {
        try {
            const documentType: supportedDocumentTypesType = args.document_type.toLowerCase() as supportedDocumentTypesType;
            let options: DocumentOptions = {};

            if (!supportedDocumentTypes.includes(documentType)) {
                throw new Error(`Unsupported document type: ${documentType}. Supported types are: ${supportedDocumentTypes.join(', ')}.`);
            }

            if (!args.data) {
                throw new Error(`Data is required for ${documentType} documents. ${documentTypesInfo[documentType].dataDescription}`);
            }

            if (args.options) {
                try {
                    options = JSON.parse(args.options as string) as DocumentOptions;
                } catch (e) {
                    throw new Error('Options must be a valid JSON string.');
                }
            }

            const data = args.data as string;
            const id = uuidv4();

            // Set default options if not provided
            options.title = options.title || `New ${documentType.charAt(0).toUpperCase() + documentType.slice(1)} Document`;

            // Call the function to add the linked document
            this._addLinkedDoc(documentType, data, options, id);

            return [
                {
                    type: 'text',
                    text: `Created ${documentType} document with ID ${id}.`,
                },
            ];
        } catch (error) {
            return [
                {
                    type: 'text',
                    text: 'Error creating document: ' + (error as Error).message,
                },
            ];
        }
    }
}