mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Disable gradio analytics
This commit is contained in:
parent
493051d5d5
commit
730c5562cc
@ -123,7 +123,7 @@ else:
|
||||
default_text = "Common sense questions and answers\n\nQuestion: \nFactual answer:"
|
||||
|
||||
if args.notebook:
|
||||
with gr.Blocks(css=".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem}") as interface:
|
||||
with gr.Blocks(css=".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem}", analytics_enabled=False) as interface:
|
||||
gr.Markdown(
|
||||
f"""
|
||||
|
||||
@ -169,7 +169,7 @@ elif args.chat:
|
||||
global history
|
||||
history = []
|
||||
|
||||
with gr.Blocks(css=".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem}") as interface:
|
||||
with gr.Blocks(css=".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem}", analytics_enabled=False) as interface:
|
||||
gr.Markdown(
|
||||
f"""
|
||||
|
||||
@ -203,7 +203,7 @@ elif args.chat:
|
||||
textbox.submit(lambda x: "", textbox, textbox, show_progress=False)
|
||||
btn2.click(lambda x: "", display1, display1)
|
||||
else:
|
||||
with gr.Blocks(css=".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem}") as interface:
|
||||
with gr.Blocks(css=".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem}", analytics_enabled=False) as interface:
|
||||
gr.Markdown(
|
||||
f"""
|
||||
# Text generation lab
|
||||
|
Loading…
Reference in New Issue
Block a user