ReLP-Client / webui.py
ehristoforu's picture
Upload folder using huggingface_hub
e1a87c1 verified
raw history blame
No virus
266 Bytes
import gradio as gr
with gr.Blocks() as demo:
with gr.Tab("LLaMA"):
gr.load("huggingface-projects/llama-2-13b-chat", src="spaces")
with gr.Tab("Mixtral"):
gr.load("ehristoforu/mixtral-46.7b-chat", src="spaces")
demo.launch(server_port=4545)