mirror of
https://github.com/Sygil-Dev/sygil-webui.git
synced 2025-01-05 19:04:06 +03:00
Changed text on the txt2vid to point people to Settings page where they can add their huggingface token.
This commit is contained in:
parent
1cb5ba74b2
commit
928ce11b51
@ -1166,9 +1166,11 @@ def load_diffusers_model(weights_path,torch_device):
|
|||||||
if "huggingface_token" not in st.session_state or st.session_state["defaults"].general.huggingface_token == "None":
|
if "huggingface_token" not in st.session_state or st.session_state["defaults"].general.huggingface_token == "None":
|
||||||
if "progress_bar_text" in st.session_state:
|
if "progress_bar_text" in st.session_state:
|
||||||
st.session_state["progress_bar_text"].error(
|
st.session_state["progress_bar_text"].error(
|
||||||
"You need a huggingface token in order to use the Text to Video tab. Use the Settings page from the sidebar on the left to add your token."
|
"You need a huggingface token in order to use the Text to Video tab. Use the Settings page to add your token under the Huggingface section. "
|
||||||
|
"Make sure you save your settings after adding it."
|
||||||
)
|
)
|
||||||
raise OSError("You need a huggingface token in order to use the Text to Video tab. Use the Settings page from the sidebar on the left to add your token.")
|
raise OSError("You need a huggingface token in order to use the Text to Video tab. Use the Settings page to add your token under the Huggingface section. "
|
||||||
|
"Make sure you save your settings after adding it.")
|
||||||
else:
|
else:
|
||||||
if "progress_bar_text" in st.session_state:
|
if "progress_bar_text" in st.session_state:
|
||||||
st.session_state["progress_bar_text"].error(e)
|
st.session_state["progress_bar_text"].error(e)
|
||||||
|
Loading…
Reference in New Issue
Block a user