nsarrazin's picture
first commit
57e16da
raw
history blame
355 Bytes
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
];