From 14cda894bd200f1da5bfaababd8f680343debeaa Mon Sep 17 00:00:00 2001 From: woody_lin Date: Wed, 21 Jan 2026 13:23:46 +0800 Subject: [PATCH] feat: add documentation for deploying and testing LLM models with OpenAI API integration. --- src/content/docs/demos/04-llm-model.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/demos/04-llm-model.mdx b/src/content/docs/demos/04-llm-model.mdx index 3b2e1ef..aaa0431 100644 --- a/src/content/docs/demos/04-llm-model.mdx +++ b/src/content/docs/demos/04-llm-model.mdx @@ -86,7 +86,7 @@ def ask_question(question): try: response = requests.post( - f"{SERVICE_URL}/v1/chat", + f"{SERVICE_URL}/v1/completions", headers=headers, json=payload )