MD1998 commited on
Commit
a133e00
·
verified ·
1 Parent(s): 300015d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -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