diff --git a/src/chatbox.tsx b/src/chatbox.tsx index 585b9a0..2fbf77d 100644 --- a/src/chatbox.tsx +++ b/src/chatbox.tsx @@ -243,14 +243,23 @@ export default function ChatBOX(props: {
- Tokens: {chatStore.totalTokens} / {chatStore.maxTokens} + Tokens:{" "} + + {chatStore.totalTokens}/{chatStore.maxTokens} + {" "} - {chatStore.model}{" "} + {chatStore.model}{" "} - Msg: {chatStore.history.filter(({ hide }) => !hide).length} + Cut:{" "} + + {chatStore.postBeginIndex}/ + {chatStore.history.filter(({ hide }) => !hide).length} + {" "} {" "} - Cut: {chatStore.postBeginIndex}{" "} - ${chatStore.cost.toFixed(4)} + + Cost:{" "} + ${chatStore.cost.toFixed(4)} +