ChatGPT: Fix incorrect config variable type

This commit is contained in:
Gordon Shumway 2023-03-21 00:44:21 -04:00 committed by GitHub
parent be72b1f4fb
commit dfac3d2772
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ conf.registerChannelValue(
conf.registerChannelValue( conf.registerChannelValue(
ChatGPT, ChatGPT,
"temperature", "temperature",
registry.Integer( registry.Float(
1, 1,
_( _(
""" """
@ -93,7 +93,7 @@ conf.registerChannelValue(
conf.registerChannelValue( conf.registerChannelValue(
ChatGPT, ChatGPT,
"top_p", "top_p",
registry.Integer( registry.Float(
1, 1,
_( _(
""" """