You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description={'Please set how many threads you want to use, max is your CPU cores.'}
55
+
min={1}max={navigator.hardwareConcurrency}
56
+
/>
57
+
<TrueFalseComponent
58
+
title={"Enable Continue Conversation"}
59
+
description={"Open to continue conversation instead treate any question as a new conversation. This can cause the response speed becomes extreamly slow."}
60
+
value={continue_conv}cb={setContinueConversation}
61
+
/>
62
+
<ScrollBarComponent
63
+
title={"Set Batch Size"}
64
+
value={batch_size}cb={setBatchSize}
65
+
description={'Adjust batch size to balance the performance and cost.'}
66
+
min={1}max={512}
67
+
/>
68
+
<ScrollBarComponent
69
+
title={"Set Context Length"}
70
+
value={context_length}cb={setContextLength}
71
+
description={'Adjust the max tokens of a conversation, over this size would reset the conversation.'}
0 commit comments