JulianTestV3 / app.py
Julian-456's picture
Create app.py
5aaef6c
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()