mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-25 17:29:22 +01:00
Update script.py
This commit is contained in:
parent
8abadc93ec
commit
f2a46333ef
@ -128,10 +128,31 @@ def setup():
|
||||
"""
|
||||
pass
|
||||
|
||||
def ui():
|
||||
def ui_block():
|
||||
"""
|
||||
Gets executed when the UI is drawn. Custom gradio elements and
|
||||
their corresponding event handlers should be defined here.
|
||||
Gets executed when the UI is drawn. The custom gradio elements
|
||||
that are used most often and their corresponding event handlers
|
||||
should be defined here.
|
||||
|
||||
To learn about gradio components, check out the docs:
|
||||
https://gradio.app/docs/
|
||||
"""
|
||||
pass
|
||||
|
||||
def ui_tab():
|
||||
"""
|
||||
Gets executed when the UI is drawn and creates a tab for the big UI.
|
||||
Its gradio elements and corresponding event handlers should be defined here.
|
||||
|
||||
To learn about gradio components, check out the docs:
|
||||
https://gradio.app/docs/
|
||||
"""
|
||||
pass
|
||||
|
||||
def ui_params():
|
||||
"""
|
||||
Executed when the user interface is rendered. Elements of the extension
|
||||
settings and event handlers corresponding to them should be defined here.
|
||||
|
||||
To learn about gradio components, check out the docs:
|
||||
https://gradio.app/docs/
|
||||
|
Loading…
Reference in New Issue
Block a user