Spaces:
Sleeping
Sleeping
File size: 680 Bytes
a857851 6be037e a857851 31797de a857851 6be037e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
from gradio.mix import Series
#demo = gr.load("mistralai/Mixtral-8x7B-Instruct-v0.1", src="models")
description = "Test!"
title = "Mixe von Modellen"
translator_fr = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-fr-en")
story_gen = gr.Interface.load("huggingface/pranavpsv/gpt2-genre-story-generator")
translator_en = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-en-fr")
examples = [["L'aventurier est approché par un mystérieux étranger, pour une nouvelle quête."]]
Series(translator_fr, story_gen, translator_en, description = description,
title = title,
examples=examples, inputs = gr.inputs.Textbox(lines = 10)).launch() |