highlight status bar
This commit is contained in:
@@ -166,7 +166,7 @@ export default function ChatBOX(props: {
|
|||||||
setShow={setShowSettings}
|
setShow={setShowSettings}
|
||||||
/>
|
/>
|
||||||
<p
|
<p
|
||||||
className="cursor-pointer dark:text-white"
|
className="cursor-pointer rounded bg-cyan-300 dark:text-white p-1 dark:bg-cyan-800"
|
||||||
onClick={() => setShowSettings(true)}
|
onClick={() => setShowSettings(true)}
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
@@ -180,10 +180,11 @@ export default function ChatBOX(props: {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-xs">
|
<div className="text-xs">
|
||||||
<span>Total: {chatStore.totalTokens}</span>{" "}
|
<span>
|
||||||
<span>Max: {chatStore.maxTokens}</span>{" "}
|
Tokens: {chatStore.totalTokens} / {chatStore.maxTokens}
|
||||||
<span>Margin: {chatStore.tokenMargin}</span>{" "}
|
</span>{" "}
|
||||||
<span>Message: {chatStore.history.length}</span>{" "}
|
<span>{chatStore.model}</span>{" "}
|
||||||
|
<span>Messages: {chatStore.history.length}</span>{" "}
|
||||||
<span>Cut: {chatStore.postBeginIndex}</span>
|
<span>Cut: {chatStore.postBeginIndex}</span>
|
||||||
</div>
|
</div>
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user