JulianTestV3 / app.py
Last commit not found
raw
history blame
236 Bytes
import gradio as gr
from transformers import pipeline
from ApiCall import *
api_test = ApiCall().getData();
def greet(name):
return ("funktioniert")
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()