Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MD1998
/
Native_Bot
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
MD1998
commited on
Apr 14, 2024
Commit
a133e00
·
verified
·
1 Parent(s):
300015d
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -72,7 +72,7 @@ def greet(prompt):
72
73
LLM_Chain = LLMChain(prompt=prompt, llm=llm)
74
75
-
return LLM_Chain.run()
76
77
78
72
73
LLM_Chain = LLMChain(prompt=prompt, llm=llm)
74
75
+
return
str(
LLM_Chain.run()
)
76
77
78