startup-chatbot / app.py
lucadillenburg's picture
try
02f1113
raw
history blame
257 Bytes
"""
Chat Interface App
"""
import gradio as gr
import sys
from chat.axolotl import test_func
def generate(instruction):
return "Hello " + instruction + "!" + test_func()
iface = gr.Interface(fn=generate, inputs="text", outputs="text")
iface.launch()