From f2bd6e266fef06b35582f3eafd4279b330dff72d Mon Sep 17 00:00:00 2001 From: Daria Fokina Date: Mon, 30 Oct 2023 15:04:47 +0100 Subject: [PATCH] update anthropic doc link (#6198) --- haystack/nodes/prompt/invocation_layer/anthropic_claude.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haystack/nodes/prompt/invocation_layer/anthropic_claude.py b/haystack/nodes/prompt/invocation_layer/anthropic_claude.py index 7ae749870..edd1c6c28 100644 --- a/haystack/nodes/prompt/invocation_layer/anthropic_claude.py +++ b/haystack/nodes/prompt/invocation_layer/anthropic_claude.py @@ -41,7 +41,7 @@ class AnthropicClaudeInvocationLayer(PromptModelInvocationLayer): :param api_key: The Anthropic API key. :param kwargs: Additional keyword arguments passed to the underlying model. The list of Anthropic-relevant kwargs includes: stop_sequences, temperature, top_p, top_k, and stream. For more details about these kwargs, - see Anthropic's [documentation](https://console.anthropic.com/docs/api/reference). + see Anthropic's [documentation](https://docs.anthropic.com/claude/reference/complete_post). """ super().__init__(model_name_or_path) if not isinstance(api_key, str) or len(api_key) == 0: