Gemma_7B_chat / app.py
sifujohn's picture
Update app.py
4764581 verified
raw
history blame
No virus
229 Bytes
import gradio as gr
from gradio_notebook import GradioNotebook
CONFIG_FILE_PATH = "./config.json" #Can also be empty or None!
with gr.Blocks() as demo:
GradioNotebook(config_path=CONFIG_FILE_PATH)
demo.queue().launch()