Spaces:
Runtime error
Runtime error
Update utils.py
Browse files
utils.py
CHANGED
@@ -23,7 +23,7 @@ async def get_images(prompt: str, files: Optional[list] = None,openai_key=None):
|
|
23 |
st.write(prompt)
|
24 |
with st.spinner():
|
25 |
async with CodeInterpreterSession(model="gpt-3.5-turbo",openai_api_key=openai_key) as session:
|
26 |
-
response = await session.
|
27 |
|
28 |
with st.chat_message("assistant"):
|
29 |
st.write(response.content)
|
|
|
23 |
st.write(prompt)
|
24 |
with st.spinner():
|
25 |
async with CodeInterpreterSession(model="gpt-3.5-turbo",openai_api_key=openai_key) as session:
|
26 |
+
response = await session.agenerate_response(prompt, files=files)
|
27 |
|
28 |
with st.chat_message("assistant"):
|
29 |
st.write(response.content)
|