Pratik Dwivedi
commited on
Commit
·
d353114
1
Parent(s):
a2c0a8e
changes to app.py
Browse files
app.py
CHANGED
|
@@ -62,4 +62,7 @@ def main():
|
|
| 62 |
st.chat_message("user").markdown(prompt)
|
| 63 |
model_response = respond_to_question(prompt, model, tokenizer)
|
| 64 |
st.session_state.messages.append({'role': 'Assistant', 'text': model_response})
|
| 65 |
-
st.chat_message("system").markdown(model_response)
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
st.chat_message("user").markdown(prompt)
|
| 63 |
model_response = respond_to_question(prompt, model, tokenizer)
|
| 64 |
st.session_state.messages.append({'role': 'Assistant', 'text': model_response})
|
| 65 |
+
st.chat_message("system").markdown(model_response)
|
| 66 |
+
|
| 67 |
+
if __name__ == "__main__":
|
| 68 |
+
main()
|