From 02a376dd8902abce2ba6ccb345a7b48cd846f583 Mon Sep 17 00:00:00 2001 From: Pyroserenus <142424797+Pyroserenus@users.noreply.github.com> Date: Mon, 25 Nov 2024 15:30:06 -0500 Subject: [PATCH] Update kobold_v2.py Adjust max context from 32000 to 32768 (proper base 2 value) --- horde/apis/models/kobold_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/apis/models/kobold_v2.py b/horde/apis/models/kobold_v2.py index e9e15276..4837cadd 100644 --- a/horde/apis/models/kobold_v2.py +++ b/horde/apis/models/kobold_v2.py @@ -191,7 +191,7 @@ def __init__(self, api): "max_context_length": fields.Integer( min=80, default=1024, - max=32000, + max=32768, description="Maximum number of tokens to send to the model.", ), "max_length": fields.Integer(