From e0e78112a2afd76e6c5e7af080a10a327da9d6de Mon Sep 17 00:00:00 2001 From: liu an Date: Wed, 16 Apr 2025 10:29:59 +0800 Subject: [PATCH] Docs: Change DELETE to POST in Related Questions curl example (#7054) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### What problem does this PR solve? docs(api): Fix request method in Related Questions example (DELETE→POST) ### Type of change - [x] Documentation Update --- docs/references/http_api_reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/http_api_reference.md b/docs/references/http_api_reference.md index f6ec44930..f849652fa 100644 --- a/docs/references/http_api_reference.md +++ b/docs/references/http_api_reference.md @@ -3169,7 +3169,7 @@ The chat model dynamically determines the number of questions to generate based ##### Request example ```bash -curl --request DELETE \ +curl --request POST \ --url http://{address}/api/v1/conversation/related_questions \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer ' \