Spaces:
Sleeping
Sleeping
File size: 336 Bytes
a857851 724c4ca a857851 31797de a857851 0a87ee1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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) |