File size: 912 Bytes
47c5626 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import gradio as gr
from modules import shared, script_callbacks
def on_ui_settings():
section = ('huggingface', "Hugging Face")
shared.opts.add_option(
"hf_write_key",
shared.OptionInfo(
"",
"Hugging Face Write API Key",
gr.Password,
{"interactive": True},
section=section
)
)
shared.opts.add_option(
"hf_read_key",
shared.OptionInfo(
"",
"Hugging Face Read API Key",
gr.Password,
{"interactive": True},
section=section
)
)
shared.opts.add_option(
"git_credential_store",
shared.OptionInfo(
True,
"Use Git Credential Store",
gr.Checkbox,
{"interactive": True},
section=section
)
)
script_callbacks.on_ui_settings(on_ui_settings)
|