File size: 253 Bytes
2c27a03
 
 
 
 
5282624
c81a4ba
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 .axolotl import test_func

def generate(instruction):
    return "Hello " + instruction + "!" + test_func()

iface = gr.Interface(fn=generate, inputs="text", outputs="text")
iface.launch()