Updated generalization for question
Browse files
app.py
CHANGED
@@ -19,5 +19,6 @@ question=st.text_input("Input the question",'')
|
|
19 |
# question = "When was Google founded?"
|
20 |
|
21 |
# print(llm.run(question))
|
22 |
-
|
23 |
-
|
|
|
|
19 |
# question = "When was Google founded?"
|
20 |
|
21 |
# print(llm.run(question))
|
22 |
+
if question:
|
23 |
+
d=LLMChain(llm=llm,prompt=prompt)
|
24 |
+
st.write("out",d.run(question))
|