astro-blendDEV / tools.py
Moibe
Username displayed ready OK!
feb9e51
raw
history blame
410 Bytes
import gradio as gr
def actualizar_creditos(nuevos_creditos, usuario):
html_credits = f"""
<div style="text-align: right;">💶<b>Username: </b> {usuario}</div><div style="text-align: right;">💶<b>Credits Available: </b> {nuevos_creditos}</div>
"""
return html_credits
# Para actualizar los créditos a 500:
actualizar_creditos(500, "Moibe")