From 274fc5ffaa7b53b90966ed5812a439c9043f39e5 Mon Sep 17 00:00:00 2001 From: Jin Hai Date: Sun, 25 Jan 2026 23:08:59 +0800 Subject: [PATCH] Fix RAGFlow CLI bug (#12811) ### What problem does this PR solve? As title ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) Signed-off-by: Jin Hai --- admin/client/ragflow_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/client/ragflow_client.py b/admin/client/ragflow_client.py index 14a56975f..d681c0f53 100644 --- a/admin/client/ragflow_client.py +++ b/admin/client/ragflow_client.py @@ -673,7 +673,7 @@ class RAGFlowClient: iterations = command.get("iterations", 1) if iterations > 1: - response = self.http_client.request("POST", "/dialog/next", use_api_base=False, auth_kind="web", + response = self.http_client.request("POST", "/kb/list", use_api_base=False, auth_kind="web", iterations=iterations) return response else: