Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/chatbot/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present Nam Le <lehainam2371999@gmail.com>
#
# SPDX-License-Identifier: MIT
__version__ = "0.0.2"
__version__ = "0.0.3"
2 changes: 1 addition & 1 deletion src/chatbot/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def route_after_chatbot(state: State) -> Literal[END, "human_review", "tools"]:
graph_builder.add_edge("tools", "chatbot")

memory = MemorySaver()
# graph = graph_builder.compile(checkpointer=memory)
# graph = graph_builder.compile(checkpointer=memory) # In memory saver should not be used when deployed using LangGraph
graph = graph_builder.compile()

graph.get_graph().print_ascii()