fix: Temperature limit in Google Gen AI model (#8133)
Update google_generative_ai.py
This commit is contained in:
parent
981081f3b7
commit
0da7fa5aeb
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ class GoogleGenerativeAIComponent(LCModelComponent):
|
|||
name="temperature",
|
||||
display_name="Temperature",
|
||||
value=0.1,
|
||||
range_spec=RangeSpec(min=0, max=2, step=0.01),
|
||||
range_spec=RangeSpec(min=0, max=1, step=0.01),
|
||||
info="Controls randomness. Lower values are more deterministic, higher values are more creative.",
|
||||
),
|
||||
IntInput(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue