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
@@ -46,13 +46,13 @@ class GenerativeAI(GenerativeAiClientModel, BaseLLM):
46
46
truncate: Optional[str] =None
47
47
"""Specify how the client handles inputs longer than the maximum token."""
48
48
49
-
length: str=LengthParam.AUTO
49
+
length: str="AUTO"
50
50
"""Indicates the approximate length of the summary. """
51
51
52
-
format: str=FormatParam.PARAGRAPH
52
+
format: str="PARAGRAPH"
53
53
"""Indicates the style in which the summary will be delivered - in a free form paragraph or in bullet points."""
54
54
55
-
extractiveness: str=ExtractivenessParam.AUTO
55
+
extractiveness: str="AUTO"
56
56
"""Controls how close to the original text the summary is. High extractiveness summaries will lean towards reusing sentences verbatim, while low extractiveness summaries will tend to paraphrase more."""
0 commit comments