File size: 257 Bytes
2c27a03
 
 
 
 
5282624
02f1113
2c27a03
 
5282624
2c27a03
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
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()