msy127 commited on
Commit
57b64c2
·
1 Parent(s): 7734b3d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ with gr.Tab("llama2 official chatbot"):
5
+ gr.load("ysharma/Explore_llamav2_with_TGI", src="spaces")
6
+ with gr.Tab("my llama2 chatbot"):
7
+ gr.load("msy127/TheBloke-Llama-2-7b-Chat-GPTQ", src="spaces")
8
+
9
+ demo.launch()