Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kat33
/
llama.cpp
like
2
Runtime error
App
Files
Files
Community
1
85c036e
llama.cpp
/
app.py
kat33
Update app.py
85c036e
over 1 year ago
raw
Copy download link
history
blame
Safe
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()