alexkueck's picture
Update app.py
0a87ee1
raw
history blame
365 Bytes
import gradio as gr
from gradio.mix import Series
#demo = gr.load("mistralai/Mixtral-8x7B-Instruct-v0.1", src="models")
description = "Test"
title = "Test"
interface = gr.Interface.load("mistralai/Mixtral-8x7B-Instruct-v0.1",
description=description,
title = title,
examples=[["american robin"]]
)
interface.launch(share=True)