Update app.py
Browse files
app.py
CHANGED
@@ -18,6 +18,7 @@ def main():
|
|
18 |
st.write(text)
|
19 |
response = llmchain(entity=text, id=0)
|
20 |
st.write(response if response is not None else "Nothing")
|
|
|
21 |
|
22 |
|
23 |
if __name__ == "__main__":
|
|
|
18 |
st.write(text)
|
19 |
response = llmchain(entity=text, id=0)
|
20 |
st.write(response if response is not None else "Nothing")
|
21 |
+
del response
|
22 |
|
23 |
|
24 |
if __name__ == "__main__":
|