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