Secrets token appended
Browse files
app.py
CHANGED
|
@@ -18,5 +18,5 @@ llm=HuggingFaceHub(repo_id="google/flan-t5-xl", model_kwargs={"temperature":1e-1
|
|
| 18 |
question = "When was Google founded?"
|
| 19 |
|
| 20 |
# print(llm.run(question))
|
| 21 |
-
|
| 22 |
-
st.write("out",
|
|
|
|
| 18 |
question = "When was Google founded?"
|
| 19 |
|
| 20 |
# print(llm.run(question))
|
| 21 |
+
d=LLMChain(llm=llm,prompt=prompt)
|
| 22 |
+
st.write("out",d.run(question))
|