""" 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()