Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ st.caption("A Chatbot created by SURAT")
|
|
| 12 |
if "history" not in st.session_state:
|
| 13 |
st.session_state.history = []
|
| 14 |
|
| 15 |
-
model = genai.GenerativeModel('gemini-
|
| 16 |
chat = model.start_chat(history = st.session_state.history)
|
| 17 |
|
| 18 |
with st.sidebar:
|
|
|
|
| 12 |
if "history" not in st.session_state:
|
| 13 |
st.session_state.history = []
|
| 14 |
|
| 15 |
+
model = genai.GenerativeModel('gemini-2.5-pro')
|
| 16 |
chat = model.start_chat(history = st.session_state.history)
|
| 17 |
|
| 18 |
with st.sidebar:
|