Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lrtherond
/
franc-v0.9
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
lrtherond
commited on
Sep 2, 2023
Commit
3b7e2b7
·
1 Parent(s):
34e71d9
Franc v0.9
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -89,7 +89,7 @@ rag_chain = RetrievalQA.from_chain_type(
89
)
90
91
92
-
def generate(message):
93
return rag_chain(message)
94
95
89
)
90
91
92
+
def generate(message
, history
):
93
return rag_chain(message)
94
95