From 4ee52bb169d64691c3bfe7b1b2fff91300d49095 Mon Sep 17 00:00:00 2001 From: Nick Perez Date: Fri, 22 Sep 2023 14:36:09 -0400 Subject: [PATCH] Docs: Fix broken link to openai example (#1145) Link to `openai_client.py` is no longer valid - updated to `openai_completion_client.py` --- docs/source/getting_started/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/getting_started/quickstart.rst b/docs/source/getting_started/quickstart.rst index 8b26ade064095..0abc357939e1f 100644 --- a/docs/source/getting_started/quickstart.rst +++ b/docs/source/getting_started/quickstart.rst @@ -128,4 +128,4 @@ Since this server is compatible with OpenAI API, you can use it as a drop-in rep prompt="San Francisco is a") print("Completion result:", completion) -For a more detailed client example, refer to `examples/openai_client.py `_. +For a more detailed client example, refer to `examples/openai_completion_client.py `_.