Skip to content

Commit

Permalink
more parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
YourUsername committed Jun 8, 2024
1 parent 9edbfed commit 9f12e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 9f12e6c

Please sign in to comment.