We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ad3a56 commit 737ea6eCopy full SHA for 737ea6e
koboldcpp.py
@@ -2222,6 +2222,8 @@ def do_POST(self):
2222
2223
reqblocking = False
2224
muint = int(args.multiuser)
2225
+ if muint<=0 and ((args.whispermodel and args.whispermodel!="") or (args.sdmodel and args.sdmodel!="")):
2226
+ muint = 2 # this prevents errors when using voice/img together with text
2227
multiuserlimit = ((muint-1) if muint > 1 else 6)
2228
#backwards compatibility for up to 7 concurrent requests, use default limit of 7 if multiuser set to 1
2229
if muint > 0 and requestsinqueue < multiuserlimit:
0 commit comments