Spaces:
Running
Running
salomonsky
commited on
Commit
•
b6a9749
1
Parent(s):
1903294
Update app.py
Browse files
app.py
CHANGED
@@ -28,6 +28,17 @@ HF_TOKEN_UPSCALER = os.environ.get("HF_TOKEN_UPSCALER")
|
|
28 |
if not HF_TOKEN_UPSCALER:
|
29 |
st.warning("HF_TOKEN_UPSCALER no está configurado. Algunas funcionalidades pueden no funcionar.")
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
def get_upscale_finegrain(prompt, img_path, upscale_factor):
|
32 |
try:
|
33 |
upscale_client = InferenceClient("fal/AuraSR-v2", hf_token=HF_TOKEN_UPSCALER)
|
@@ -162,7 +173,6 @@ def main():
|
|
162 |
else:
|
163 |
prompts = [prompt]
|
164 |
|
165 |
-
# Subida múltiple de imágenes
|
166 |
upload_images_to_gallery()
|
167 |
|
168 |
if st.sidebar.button("Generar Imágenes"):
|
|
|
28 |
if not HF_TOKEN_UPSCALER:
|
29 |
st.warning("HF_TOKEN_UPSCALER no está configurado. Algunas funcionalidades pueden no funcionar.")
|
30 |
|
31 |
+
def login_form():
|
32 |
+
st.title("Iniciar Sesión")
|
33 |
+
username = st.text_input("Usuario", value="admin")
|
34 |
+
password = st.text_input("Contraseña", value="flux3x", type="password")
|
35 |
+
if st.button("Iniciar Sesión"):
|
36 |
+
if authenticate_user(username, password):
|
37 |
+
st.success("Autenticación exitosa.")
|
38 |
+
st.session_state['authenticated'] = True
|
39 |
+
else:
|
40 |
+
st.error("Credenciales incorrectas. Intenta de nuevo.")
|
41 |
+
|
42 |
def get_upscale_finegrain(prompt, img_path, upscale_factor):
|
43 |
try:
|
44 |
upscale_client = InferenceClient("fal/AuraSR-v2", hf_token=HF_TOKEN_UPSCALER)
|
|
|
173 |
else:
|
174 |
prompts = [prompt]
|
175 |
|
|
|
176 |
upload_images_to_gallery()
|
177 |
|
178 |
if st.sidebar.button("Generar Imágenes"):
|