nsarrazin's picture
split things into components + lint
988ce90
raw
history blame
305 Bytes
import { textToImageTool } from "./textToImage";
import { textToSpeechTool } from "./textToSpeech";
import { speechToTextTool } from "./speechToText";
import { imageToTextTool } from "./imageToText";
export const tools = [
textToImageTool,
textToSpeechTool,
speechToTextTool,
imageToTextTool,
];