Skip to content

Commit 13e4593

Browse files
committed
change langchain-chatchat to langgraph-chatchat
1 parent 4f2ae6d commit 13e4593

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

libs/chatchat-server/chatchat/server/api_server/server_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
def create_app(run_mode: str = None):
17-
app = FastAPI(title="Langchain-Chatchat API Server", version=__version__)
17+
app = FastAPI(title="Langgraph-Chatchat API Server", version=__version__)
1818
MakeFastAPIOffline(app)
1919
# Add CORS middleware to allow all origins
2020
# 在config.py中设置OPEN_DOMAIN=True,允许跨域

libs/chatchat-server/chatchat/startup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def dump_server_info(after_start=False, args=None):
189189
from chatchat.server.utils import api_address, webui_address
190190

191191
print("\n")
192-
print("=" * 30 + "Langchain-Chatchat Configuration" + "=" * 30)
192+
print("=" * 30 + "Langgraph-Chatchat Configuration" + "=" * 30)
193193
print(f"操作系统:{platform.platform()}.")
194194
print(f"python版本:{sys.version}")
195195
print(f"项目版本:{__version__}")
@@ -208,7 +208,7 @@ def dump_server_info(after_start=False, args=None):
208208
print(f" Chatchat Api Server: {api_address()}")
209209
if args.webui:
210210
print(f" Chatchat WEBUI Server: {webui_address()}")
211-
print("=" * 30 + "Langchain-Chatchat Configuration" + "=" * 30)
211+
print("=" * 30 + "Langgraph-Chatchat Configuration" + "=" * 30)
212212
print("\n")
213213

214214

libs/chatchat-server/chatchat/webui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ async def main():
2222
get_img_base64("chatchat_icon_blue_square_v2.png"),
2323
initial_sidebar_state="expanded",
2424
menu_items={
25-
"Get Help": "https://github.com/chatchat-space/Langchain-Chatchat",
26-
"Report a bug": "https://github.com/chatchat-space/Langchain-Chatchat/issues",
27-
"About": f"""欢迎使用 Langchain-Chatchat WebUI {__version__}!""",
25+
"Get Help": "https://github.com/chatchat-space/Langgraph-Chatchat",
26+
"Report a bug": "https://github.com/chatchat-space/Langgraph-Chatchat/issues",
27+
"About": f"""欢迎使用 Langgraph-Chatchat WebUI {__version__}!""",
2828
},
2929
layout="centered",
3030
)

libs/chatchat-server/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
2-
name = "langchain-chatchat"
2+
name = "langgraph-chatchat"
33
version = "0.0.1"
4-
description = "Langchain-Chatchat (formerly langchain-ChatGLM), local knowledge based LLM (like ChatGLM, Qwen and Llama) RAG and Agent app with langchain"
4+
description = "Langgraph-Chatchat (successor of langchain-ChatChat), local knowledge based LLM (like ChatGLM, Qwen and Llama) RAG and Agent app with langgraph"
55
authors = ["chatchat"]
66
packages = [
77
{include = "chatchat"},

0 commit comments

Comments
 (0)