docs: update docstring of the ChatGroq class (#18645)

**Description:** Update docstring of the ChatGroq class
**Issue:** Not applicable
**Dependencies:** None
This commit is contained in:
aditya thomas 2024-03-28 12:16:52 +05:30 committed by GitHub
parent e4d7b1a482
commit 4cd38fe89f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,8 +64,9 @@ class ChatGroq(BaseChatModel):
Example: Example:
.. code-block:: python .. code-block:: python
from langchain_community.chat_models import ChatGroq from langchain_groq import ChatGroq
groq = ChatGroq(model_name="mixtral-8x7b-32768")
model = ChatGroq(model_name="mixtral-8x7b-32768")
""" """
client: Any = Field(default=None, exclude=True) #: :meta private: client: Any = Field(default=None, exclude=True) #: :meta private: