Spaces:
Sleeping
Sleeping
File size: 635 Bytes
1f5f680 3250ceb 85e6889 3250ceb 7539545 77ea5c9 f2c9245 85e6889 3250ceb 934c174 3250ceb cb05df4 3bca149 3250ceb 3bca149 3250ceb 7539545 cb05df4 0f34a3e 8f8baa8 0f34a3e 8f8baa8 b1b5fc5 |
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 |
import gradio as gr
import sulkuPypi
from funciones import mass
def perform(input1, input2):
#Primero que nada, checa cuantos tokens:
tokens = sulkuPypi.getTokens("gAAAAABmEZA4SLBC2YczouOrjIEi9WNCNGOIvyUcqBUnzxNsftXTdy54KaX9x8mAjFkABSI6FJrdZDQKk_5lpJOgJoMChxlniw==")
print(f"Tienes: {tokens} tokens. ")
#Después autoriza.
#Después ejecuta la masa.
path = mass(input1,input2)
print("Después de mass imprimo ésto.")
#Y finalmente debita los tokens.
return path
#Así para imagenes
demo = gr.Interface(
fn=perform, inputs=[gr.Image(), gr.Image()], outputs=[gr.Image()]
)
demo.launch() |