Spaces:
Sleeping
Sleeping
Commit
·
360db3c
1
Parent(s):
ff5774a
chore: fix issue
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ st.set_page_config(
|
|
14 |
)
|
15 |
|
16 |
st.warning('This is a prototype of a chatbot for Group 28 main algorithm. It is still under development even though the main logic has been completed and run inside terminal', icon="⚠️")
|
17 |
-
|
18 |
|
19 |
# Initialize chat history
|
20 |
if "messages" not in st.session_state:
|
|
|
14 |
)
|
15 |
|
16 |
st.warning('This is a prototype of a chatbot for Group 28 main algorithm. It is still under development even though the main logic has been completed and run inside terminal', icon="⚠️")
|
17 |
+
st.caption("A Project done by Group 28")
|
18 |
|
19 |
# Initialize chat history
|
20 |
if "messages" not in st.session_state:
|
node.py
CHANGED
@@ -242,6 +242,7 @@ class LibrarySystem:
|
|
242 |
self.database.addBorrowedBook(data)
|
243 |
message = "✅ Book borrowed successfully!"
|
244 |
send_message(message)
|
|
|
245 |
|
246 |
def borrow_book(self):
|
247 |
send_message("Enter the title of the book to borrow: ")
|
|
|
242 |
self.database.addBorrowedBook(data)
|
243 |
message = "✅ Book borrowed successfully!"
|
244 |
send_message(message)
|
245 |
+
st.balloons()
|
246 |
|
247 |
def borrow_book(self):
|
248 |
send_message("Enter the title of the book to borrow: ")
|