From 0d84d196573f3b620c8431ab080cfe4bd1f389f4 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 27 Jun 2023 07:44:20 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(constants.py):=20update=20O?= =?UTF-8?q?penAI=20API=20base=20info=20to=20include=20additional=20API=20o?= =?UTF-8?q?ptions=20This=20commit=20updates=20the=20documentation=20in=20t?= =?UTF-8?q?he=20constants.py=20file=20to=20include=20additional=20API=20op?= =?UTF-8?q?tions=20that=20can=20be=20used=20instead=20of=20the=20default?= =?UTF-8?q?=20OpenAI=20API.=20The=20new=20options=20are=20JinaChat,=20Loca?= =?UTF-8?q?lAI,=20and=20Prem.=20This=20change=20provides=20more=20informat?= =?UTF-8?q?ion=20to=20the=20user=20and=20allows=20them=20to=20make=20an=20?= =?UTF-8?q?informed=20decision=20when=20choosing=20an=20API=20to=20use.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/template/frontend_node/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/langflow/template/frontend_node/constants.py b/src/backend/langflow/template/frontend_node/constants.py index ac2e400b3..d30239ff7 100644 --- a/src/backend/langflow/template/frontend_node/constants.py +++ b/src/backend/langflow/template/frontend_node/constants.py @@ -40,5 +40,5 @@ QA_CHAIN_TYPES = ["stuff", "map_reduce", "map_rerank", "refine"] OPENAI_API_BASE_INFO = """ The base URL of the OpenAI API. Defaults to https://api.openai.com/v1. -You can change this to use other APIs like Prem and LocalAI. +You can change this to use other APIs like JinaChat, LocalAI and Prem. """