File size: 305 Bytes
988ce90
 
 
 
57e16da
 
988ce90
 
 
 
57e16da
1
2
3
4
5
6
7
8
9
10
11
12
import { textToImageTool } from "./textToImage";
import { textToSpeechTool } from "./textToSpeech";
import { speechToTextTool } from "./speechToText";
import { imageToTextTool } from "./imageToText";

export const tools = [
  textToImageTool,
  textToSpeechTool,
  speechToTextTool,
  imageToTextTool,
];