Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
davidefiocco
/
sonIA
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0f77545
sonIA
/
utils.py
Davide Fiocco
Refactor the app and change the context a bit
0fdee06
over 3 years ago
raw
Copy download link
history
blame
Safe
131 Bytes
def
get_answer
(
input
, context, engine
):
answer = engine({
"question"
:
input
,
"context"
: context})
return
answer[
"answer"
]