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
desc="The maximum number of tokens to generate before stopping. This parameter only specifies the absolute maximum number of tokens to generate. Different models have different maximum values for this parameter.",
320
+
desc=
321
+
"The maximum number of tokens to generate before stopping. This parameter only specifies the absolute maximum number of tokens to generate. Different models have different maximum values for this parameter.",
307
322
validate=function(n)
308
323
returnn>0andn<=32768, "Must be between 0 and 32768"
309
324
end,
@@ -314,7 +329,8 @@ return {
314
329
type="number",
315
330
optional=true,
316
331
default=0,
317
-
desc="Amount of randomness injected into the response. Ranges from 0.0 to 1.0. Use temperature closer to 0.0 for analytical / multiple choice, and closer to 1.0 for creative and generative tasks. Note that even with temperature of 0.0, the results will not be fully deterministic.",
332
+
desc=
333
+
"Amount of randomness injected into the response. Ranges from 0.0 to 1.0. Use temperature closer to 0.0 for analytical / multiple choice, and closer to 1.0 for creative and generative tasks. Note that even with temperature of 0.0, the results will not be fully deterministic.",
318
334
validate=function(n)
319
335
returnn>=0andn<=1, "Must be between 0 and 1.0"
320
336
end,
@@ -325,7 +341,8 @@ return {
325
341
type="number",
326
342
optional=true,
327
343
default=nil,
328
-
desc="Computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p",
344
+
desc=
345
+
"Computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p",
329
346
validate=function(n)
330
347
returnn>=0andn<=1, "Must be between 0 and 1"
331
348
end,
@@ -336,7 +353,8 @@ return {
336
353
type="number",
337
354
optional=true,
338
355
default=nil,
339
-
desc="Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses",
356
+
desc=
357
+
"Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses",
0 commit comments