// Custom tasks with arbitrary inputs and outputs export * from "./custom/request"; export * from "./custom/streamingRequest"; // Audio tasks export * from "./audio/audioClassification"; export * from "./audio/automaticSpeechRecognition"; // Commputer Vision tasks export * from "./cv/imageClassification"; export * from "./cv/imageSegmentation"; export * from "./cv/imageToText"; export * from "./cv/objectDetection"; export * from "./cv/textToImage"; // Natural Language Processing tasks export * from "./nlp/conversational"; export * from "./nlp/featureExtraction"; export * from "./nlp/fillMask"; export * from "./nlp/questionAnswering"; export * from "./nlp/sentenceSimilarity"; export * from "./nlp/summarization"; export * from "./nlp/tableQuestionAnswering"; export * from "./nlp/textClassification"; export * from "./nlp/textGeneration"; export * from "./nlp/textGenerationStream"; export * from "./nlp/tokenClassification"; export * from "./nlp/translation"; export * from "./nlp/zeroShotClassification"; // Multimodal tasks export * from "./multimodal/documentQuestionAnswering"; export * from "./multimodal/visualQuestionAnswering";