Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -110,10 +110,6 @@ if prompt := st.chat_input("Enter your prompt here..."):
|
|
110 |
chat_completion = client.chat.completions.create(
|
111 |
model=model_option,
|
112 |
messages=[
|
113 |
-
{
|
114 |
-
"role": "system",
|
115 |
-
"content": "You are a helpful assistant that can access the web.",
|
116 |
-
},
|
117 |
{"role": m["role"], "content": m["content"]}
|
118 |
for m in st.session_state.messages
|
119 |
],
|
|
|
110 |
chat_completion = client.chat.completions.create(
|
111 |
model=model_option,
|
112 |
messages=[
|
|
|
|
|
|
|
|
|
113 |
{"role": m["role"], "content": m["content"]}
|
114 |
for m in st.session_state.messages
|
115 |
],
|