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