bivalve commited on
Commit
36a1d88
·
1 Parent(s): b9b58d3

removed ipython import

Browse files
Files changed (1) hide show
  1. agent.py +0 -2
agent.py CHANGED
@@ -103,8 +103,6 @@ def create_agent_graph():
103
  builder.add_edge("file_path_updater_node", "assistant")
104
  builder.add_edge("format_final_answer_node", END)
105
  graph = builder.compile()
106
- from IPython.display import Image, display
107
- display(Image(graph.get_graph().draw_mermaid_png()))
108
  return graph
109
 
110
  class BasicAgent:
 
103
  builder.add_edge("file_path_updater_node", "assistant")
104
  builder.add_edge("format_final_answer_node", END)
105
  graph = builder.compile()
 
 
106
  return graph
107
 
108
  class BasicAgent: