From 8e3e6e8e886fa8f20bb448c8badc519af13e8fdd Mon Sep 17 00:00:00 2001 From: Nam Le Date: Wed, 11 Jun 2025 15:43:42 +0200 Subject: [PATCH] Add comment (code change to test CI CD pipeline) --- src/chatbot/__about__.py | 2 +- src/chatbot/graph.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chatbot/__about__.py b/src/chatbot/__about__.py index 0b597e4..9c7a443 100644 --- a/src/chatbot/__about__.py +++ b/src/chatbot/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2025-present Nam Le # # SPDX-License-Identifier: MIT -__version__ = "0.0.2" +__version__ = "0.0.3" diff --git a/src/chatbot/graph.py b/src/chatbot/graph.py index c39d134..20149a3 100644 --- a/src/chatbot/graph.py +++ b/src/chatbot/graph.py @@ -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()