feat: add siliconflow usage

This commit is contained in:
zhaoyuan pan
2024-09-11 15:03:11 +08:00
parent f9774698e9
commit 6ca35daa0c
3 changed files with 48 additions and 0 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 44: // SiliconFlow
return <span>¥{balance.toFixed(2)}</span>;
default:
return <span>不支持</span>;
}