mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-08 22:23:03 -04:00
only display temperature if its modified
This commit is contained in:
parent
66035229bc
commit
54ab624cea
2 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@ module.exports = {
|
|||
|
||||
let temperature = "0.25"
|
||||
let temperatureDisplay = ""
|
||||
if(args.temperature){
|
||||
if(args.temperature !== 0.25){
|
||||
temperature = parseFloat(args.temperature)
|
||||
temperatureDisplay = " " + smallIconPill("example", temperature)
|
||||
}
|
||||
|
|
|
@ -52,9 +52,9 @@ module.exports = {
|
|||
modelDisplay = " " + smallIconPill("robot", model)
|
||||
}
|
||||
|
||||
let temperature = "CHATGPT"
|
||||
let temperature = "0.25"
|
||||
let temperatureDisplay = ""
|
||||
if(args.temperature){
|
||||
if(args.temperature !== 0.25){
|
||||
temperature = parseFloat(args.temperature)
|
||||
temperatureDisplay = " " + smallIconPill("example", temperature)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue