Skip to content

Commit

Permalink
修复了logger.info的错误
Browse files Browse the repository at this point in the history
  • Loading branch information
JieGenius committed Feb 4, 2024
1 parent 2653083 commit a9d7ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def main():

agent_return = st.session_state['chatbot'].chat(user_input_with_image_info)
st.session_state['assistant'].append(copy.deepcopy(agent_return))
logger.info("agent_return:",agent_return.inner_steps)
logger.info("agent_return:" + str(agent_return.inner_steps))
st.session_state['ui'].render_assistant(agent_return)
st.session_state["turn"] += 1

Expand Down

0 comments on commit a9d7ddd

Please sign in to comment.