sifujohn commited on
Commit
4764581
1 Parent(s): b6e14aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -1,3 +1,8 @@
1
  import gradio as gr
 
2
 
3
- gr.load("models/google/gemma-7b-it").launch()
 
 
 
 
 
1
  import gradio as gr
2
+ from gradio_notebook import GradioNotebook
3
 
4
+ CONFIG_FILE_PATH = "./config.json" #Can also be empty or None!
5
+ with gr.Blocks() as demo:
6
+ GradioNotebook(config_path=CONFIG_FILE_PATH)
7
+
8
+ demo.queue().launch()