alexkueck's picture
Update app.py
724c4ca
raw
history blame
336 Bytes
import gradio as gr
#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)