File size: 593 Bytes
8d88d9b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import type { ConfigTool } from "$lib/types/Tool";
import { ObjectId } from "mongodb";

const directlyAnswer: ConfigTool = {
	_id: new ObjectId("00000000000000000000000D"),
	type: "config",
	description: "Answer the user's query directly",
	color: "blue",
	icon: "chat",
	displayName: "Directly Answer",
	isOnByDefault: true,
	isLocked: true,
	isHidden: true,
	name: "directlyAnswer",
	endpoint: null,
	inputs: [],
	outputComponent: null,
	outputComponentIdx: null,
	showOutput: false,
	async *call() {
		return {
			outputs: [],
			display: false,
		};
	},
};

export default directlyAnswer;