Update app.py
Browse files
app.py
CHANGED
|
@@ -106,9 +106,10 @@ if st.session_state.logged_in:
|
|
| 106 |
User may ask what is the best GPU selection.
|
| 107 |
You will need to ask user: 1) type of task, 2) size of data, 3) size of models.
|
| 108 |
You will then make a suggestion of what type of GPU or instance is the best for the user.
|
| 109 |
-
"""}
|
|
|
|
| 110 |
)
|
| 111 |
-
bot.conversation = st.session_state.messages.copy() # Update history from messages
|
| 112 |
response = bot.generate_response(prompt)
|
| 113 |
|
| 114 |
# Display assistant response in chat message container
|
|
|
|
| 106 |
User may ask what is the best GPU selection.
|
| 107 |
You will need to ask user: 1) type of task, 2) size of data, 3) size of models.
|
| 108 |
You will then make a suggestion of what type of GPU or instance is the best for the user.
|
| 109 |
+
"""},
|
| 110 |
+
conversation=st.session_state.messages.copy()
|
| 111 |
)
|
| 112 |
+
# bot.conversation = st.session_state.messages.copy() # Update history from messages
|
| 113 |
response = bot.generate_response(prompt)
|
| 114 |
|
| 115 |
# Display assistant response in chat message container
|