Spaces:
Paused
Paused
File size: 355 Bytes
57e16da |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { textToImageTool } from './textToImage';
import { textToSpeechTool } from './textToSpeech';
import { speechToTextTool } from './speechToText';
import { imageToTextTool } from './imageToText';
import { messageTool } from './message';
export const tools = [
textToImageTool,
textToSpeechTool,
speechToTextTool,
imageToTextTool,
messageTool
];
|