From e7420789e494a695aef76063571261577ad7705e Mon Sep 17 00:00:00 2001 From: Delgermurun Date: Sat, 8 Jul 2023 16:57:11 +0200 Subject: [PATCH] improve description of JinaChat (#7397) very small doc string change in the `JinaChat` class. --- langchain/chat_models/jinachat.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/langchain/chat_models/jinachat.py b/langchain/chat_models/jinachat.py index 4cbad1c74e..caceec6c79 100644 --- a/langchain/chat_models/jinachat.py +++ b/langchain/chat_models/jinachat.py @@ -105,7 +105,8 @@ def _convert_message_to_dict(message: BaseMessage) -> dict: class JinaChat(BaseChatModel): - """Wrapper around JinaChat API. + """JinaChat is a wrapper for Jina AI's LLM service, providing cost-effective + image chat capabilities in comparison to other LLM APIs. To use, you should have the ``openai`` python package installed, and the environment variable ``JINACHAT_API_KEY`` set with your API key.