machineuser
Sync widgets demo
9d298eb
raw
history blame
1.55 kB
export { LIBRARY_TASK_MAPPING_EXCLUDING_TRANSFORMERS } from "./library-to-tasks";
export { MODEL_LIBRARIES_UI_ELEMENTS } from "./library-ui-elements";
export { MAPPING_DEFAULT_WIDGET } from "./default-widget-inputs";
export type { TaskData, TaskDemo, TaskDemoEntry, ExampleRepo } from "./tasks";
export * from "./tasks";
export {
PIPELINE_DATA,
PIPELINE_TYPES,
type PipelineType,
type PipelineData,
type Modality,
MODALITIES,
MODALITY_LABELS,
SUBTASK_TYPES,
PIPELINE_TYPES_SET,
} from "./pipelines";
export { ModelLibrary, ALL_DISPLAY_MODEL_LIBRARY_KEYS } from "./model-libraries";
export type { ModelLibraryKey } from "./model-libraries";
export {
ModelData,
TransformersInfo,
WidgetExample,
WidgetExampleAttribute,
WidgetExampleAssetAndPromptInput,
WidgetExampleAssetAndTextInput,
WidgetExampleAssetAndZeroShotInput,
WidgetExampleAssetInput,
WidgetExampleSentenceSimilarityInput,
WidgetExampleStructuredDataInput,
WidgetExampleTableDataInput,
WidgetExampleTextAndContextInput,
WidgetExampleTextAndTableInput,
WidgetExampleTextInput,
WidgetExampleZeroShotTextInput,
WidgetExampleOutput,
WidgetExampleOutputUrl,
WidgetExampleOutputLabels,
WidgetExampleOutputAnswerScore,
WidgetExampleOutputText,
} from "./model-data";
export { InferenceDisplayability } from "./model-data";
export { TAG_NFAA_CONTENT, OTHER_TAGS_SUGGESTIONS, TAG_TEXT_GENERATION_INFERENCE, TAG_CUSTOM_CODE } from "./tags";
import * as snippets from "./snippets";
export { snippets };
export type { LibraryUiElement } from "./library-ui-elements";