From 9f12e6c39b16e8d09599ec26d83433a9a6d6143d Mon Sep 17 00:00:00 2001 From: YourUsername Date: Sat, 8 Jun 2024 10:56:11 +0300 Subject: [PATCH] more parsing --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index cb19a65..d89392e 100644 --- a/index.html +++ b/index.html @@ -96,8 +96,8 @@ data.model_override = profile.model_override data.main = profile.main data.jailbreak = profile.jailbreak - data.max_messages = profile.max_messages - data.max_tokens = profile.max_tokens + data.max_messages = parseInt(profile.max_messages) + data.max_tokens = parseInt(profile.max_tokens) } function updateProfile(data) { const profile = Profile.get()