📝 docs(constants.py): update OpenAI API base info to include additional API options

This commit updates the documentation in the constants.py file to include additional API options that can be used instead of the default OpenAI API. The new options are JinaChat, LocalAI, and Prem. This change provides more information to the user and allows them to make an informed decision when choosing an API to use.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-27 07:44:20 -03:00
commit 0d84d19657

View file

@ -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.
"""