Improve the description of the `user_hf_token` field
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import logging
|
2 |
-
import subprocess
|
3 |
import os
|
|
|
4 |
import sys
|
5 |
from dataclasses import dataclass
|
6 |
from pathlib import Path
|
@@ -166,7 +166,7 @@ def main():
|
|
166 |
return
|
167 |
|
168 |
st.text_input(
|
169 |
-
f"Optional: Your Hugging Face write token.
|
170 |
type="password",
|
171 |
key="user_hf_token",
|
172 |
)
|
|
|
1 |
import logging
|
|
|
2 |
import os
|
3 |
+
import subprocess
|
4 |
import sys
|
5 |
from dataclasses import dataclass
|
6 |
from pathlib import Path
|
|
|
166 |
return
|
167 |
|
168 |
st.text_input(
|
169 |
+
f"Optional: Your Hugging Face write token. Fill it if you want to upload the model under your account.",
|
170 |
type="password",
|
171 |
key="user_hf_token",
|
172 |
)
|