Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abhishekmamdapure/llama-cpp-python
zac
/
llama-cpp-python
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
zac
commited on
Aug 5, 2023
Commit
ef70bbb
·
1 Parent(s):
67dcb8e
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-1
app.py
CHANGED
Viewed
@@ -21,5 +21,6 @@ def generate_text(input_text, history):
21
22
return response
23
24
-
gr.ChatInterface(generate_text)
.launch()
25
21
22
return response
23
24
+
demo =
gr.ChatInterface(generate_text)
25
+
demo.launch()
26