feifei-chat / app.py
aifeifei798's picture
Update app.py
4d2408a verified
raw
history blame
942 Bytes
import gradio as gr
from feifeilib.feifeichat import feifeichat
FeiFei = (
gr.ChatInterface(
feifeichat,
type="messages",
multimodal=True,
additional_inputs=[
gr.Checkbox(label="Feifei",value=True),
gr.Dropdown(
["meta-llama/Llama-3.3-70B-Instruct",
"CohereForAI/c4ai-command-r-plus-08-2024",
"Qwen/Qwen2.5-72B-Instruct",
"nvidia/Llama-3.1-Nemotron-70B-Instruct-HF",
"mistralai/Mistral-Nemo-Instruct-2407",
"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B"
],
value="meta-llama/Llama-3.3-70B-Instruct",
show_label=False,
container=False),
gr.Radio(
["Vsiion"],
value="Vsiion",
show_label=False,
container=False)
],
)
)
FeiFei.launch()