Fixed InferKit API requests sending a default top_p value instead of the user-selected value
This commit is contained in:
parent
f994d6d18b
commit
0ce77f4875
|
@ -553,7 +553,7 @@ def ikrequest(txt):
|
|||
'startFromBeginning': False,
|
||||
'streamResponse': False,
|
||||
'temperature': vars.temp,
|
||||
'topP': 0.9
|
||||
'topP': vars.top_p
|
||||
}
|
||||
|
||||
# Create request
|
||||
|
|
Loading…
Reference in New Issue