startup-chatbot / Library
Remy001's picture
Rename app.py to Library
b2e36f8 verified
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()