From 5f21eab49116a7a7a7a7bfc5fce997aaf9411d50 Mon Sep 17 00:00:00 2001 From: j pradhan Date: Fri, 28 Jun 2024 09:26:12 -0400 Subject: [PATCH] community:perplexity[patch]: standardize init args (#21794) updated request_timeout default alias value per related docstring. Related to [20085](https://github.com/langchain-ai/langchain/issues/20085) Thank you for contributing to LangChain! --------- Co-authored-by: ccurme --- libs/community/langchain_community/chat_models/perplexity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_community/chat_models/perplexity.py b/libs/community/langchain_community/chat_models/perplexity.py index 6538f7f3e06..e03f820cddf 100644 --- a/libs/community/langchain_community/chat_models/perplexity.py +++ b/libs/community/langchain_community/chat_models/perplexity.py @@ -70,7 +70,7 @@ class ChatPerplexity(BaseChatModel): request_timeout: Optional[Union[float, Tuple[float, float]]] = Field( None, alias="timeout" ) - """Timeout for requests to PerplexityChat completion API. Default is 600 seconds.""" + """Timeout for requests to PerplexityChat completion API. Default is None.""" max_retries: int = 6 """Maximum number of retries to make when generating.""" streaming: bool = False