File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libs/aws/langchain_aws/chat_models Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class ChatBedrockConverse(BaseChatModel):
60
60
max_tokens : Optional [int ] = None
61
61
"""Max tokens to generate."""
62
62
63
- stop_sequences : Optional [List [str ]] = Field (None , alias = "stop" )
63
+ stop_sequences : Optional [List [str ]] = Field (default = None , alias = "stop" )
64
64
"""Stop generation if any of these substrings occurs."""
65
65
66
66
temperature : Optional [float ] = None
@@ -100,7 +100,7 @@ class ChatBedrockConverse(BaseChatModel):
100
100
have an ARN associated with them.
101
101
"""
102
102
103
- endpoint_url : Optional [str ] = Field (None , alias = "base_url" )
103
+ endpoint_url : Optional [str ] = Field (default = None , alias = "base_url" )
104
104
"""Needed if you don't want to default to us-east-1 endpoint"""
105
105
106
106
config : Any = None
You can’t perform that action at this time.
0 commit comments