Update app.py
Browse files
app.py
CHANGED
|
@@ -31,7 +31,7 @@ if user_input:
|
|
| 31 |
with st.chat_message("assistant"):
|
| 32 |
with st.spinner("Thinking..."):
|
| 33 |
response = client.chat.completions.create(
|
| 34 |
-
model="
|
| 35 |
messages=st.session_state.messages,
|
| 36 |
max_tokens=500
|
| 37 |
)
|
|
|
|
| 31 |
with st.chat_message("assistant"):
|
| 32 |
with st.spinner("Thinking..."):
|
| 33 |
response = client.chat.completions.create(
|
| 34 |
+
model="llama-3.1-8b-instant",
|
| 35 |
messages=st.session_state.messages,
|
| 36 |
max_tokens=500
|
| 37 |
)
|