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
c1e6490
llama.cpp
/
app.py
kat33
Initial commit
c1e6490
over 1 year ago
raw
Copy download link
history
blame
Safe
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()