Update to Anthropic's claude-v2 (#7793)

This commit is contained in:
Mike Lambert 2023-07-17 08:55:49 -07:00 committed by GitHub
parent 98c48f303a
commit 9cdea4e0e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ from langchain.utils import check_package_version, get_from_dict_or_env
class _AnthropicCommon(BaseModel):
client: Any = None #: :meta private:
async_client: Any = None #: :meta private:
model: str = "claude-v1"
model: str = "claude-2"
"""Model name to use."""
max_tokens_to_sample: int = 256