You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: haystack/nodes/prompt/prompt_node.py
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ def __init__(
81
81
:param top_k: The number of independently generated texts to return per prompt. For example, if you set top_k=3, the model will generate three answers to the query.
82
82
:param stop_words: Stops text generation if any of the stop words is generated.
83
83
:param model_kwargs: Additional keyword arguments passed when loading the model specified in `model_name_or_path`.
84
+
:param debug: Whether to include the used prompts as debug information in the output under the key _debug.
84
85
85
86
Note that Azure OpenAI InstructGPT models require two additional parameters: azure_base_url (the URL for the
86
87
Azure OpenAI API endpoint, usually in the form `https://<your-endpoint>.openai.azure.com') and
0 commit comments