Spaces:
Sleeping
Sleeping
File size: 586 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | export enum AppDefaultToolkit {
Visualization = "visualization",
WebSearch = "webSearch",
Http = "http",
Code = "code",
}
export enum DefaultToolName {
CreatePieChart = "createPieChart",
CreateBarChart = "createBarChart",
CreateLineChart = "createLineChart",
CreateTable = "createTable",
WebSearch = "webSearch",
WebContent = "webContent",
Http = "http",
JavascriptExecution = "mini-javascript-execution",
PythonExecution = "python-execution",
}
export const SequentialThinkingToolName = "sequential-thinking";
export const ImageToolName = "image-manager";
|