llama.cpp / app.py
kat33's picture
Update app.py
85c036e
raw
history blame
225 Bytes
import gradio as gr
def question_answer(context, question):
pass # Implement your question-answering model here...
app=gr.Interface(fn=question_answer, inputs=["text", "text"], outputs=["textbox", "text"])
app.launch()