We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98567a2 commit a7a2d09Copy full SHA for a7a2d09
libs/aws/langchain_aws/chat_models/bedrock_converse.py
@@ -256,11 +256,13 @@ class Joke(BaseModel):
256
client: Any = Field(exclude=True) #: :meta private:
257
258
model_id: str = Field(alias="model")
259
- """Id of the model to call
+ """Id of the model to call.
260
261
e.g., ``"anthropic.claude-3-sonnet-20240229-v1:0"``. This is equivalent to the
262
modelID property in the list-foundation-models api. For custom and provisioned
263
- models, an ARN value is expected.
+ models, an ARN value is expected. See
264
+ https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html#model-ids-arns
265
+ for a list of all supported built-in models.
266
"""
267
268
max_tokens: Optional[int] = None
0 commit comments