feat: add balance query support for DeepSeek (#1946)

* Support Balance Query for DeepSeek

* Fix
This commit is contained in:
Ke Wang
2024-12-22 19:26:33 +08:00
committed by GitHub
parent 381172cb36
commit 95e8c16338
3 changed files with 50 additions and 4 deletions

View File

@@ -52,6 +52,8 @@ function renderBalance(type, balance) {
return <span>¥{balance.toFixed(2)}</span>;
case 13: // AIGC2D
return <span>{renderNumber(balance)}</span>;
case 36: // DeepSeek
return <span>¥{balance.toFixed(2)}</span>;
case 44: // SiliconFlow
return <span>¥{balance.toFixed(2)}</span>;
default: