diff --git a/README.md b/README.md index 4ce1eec7..6e330a2e 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ _✨ All in one 的 OpenAI 接口,整合各种 API 访问方式,开箱即用 + [x] [OpenAI Max](https://openaimax.com) + [x] [OpenAI-SB](https://openai-sb.com) + [x] [CloseAI](https://console.openai-asia.com/r/2412) + + [x] [API2GPT](http://console.api2gpt.com/m/00002S) + [x] 自定义渠道:例如各种未收录的第三方代理服务 2. 支持通过**负载均衡**的方式访问多个渠道。 3. 支持 **stream 模式**,可以通过流式传输实现打字机效果。 diff --git a/web/src/components/ChannelsTable.js b/web/src/components/ChannelsTable.js index ac5fca20..7bc683ea 100644 --- a/web/src/components/ChannelsTable.js +++ b/web/src/components/ChannelsTable.js @@ -37,7 +37,7 @@ function renderBalance(type, balance) { case 10: // AI Proxy return {renderNumber(balance)}; case 12: // API2GPT - return {renderNumber(balance)}; + return ¥{balance.toFixed(2)}; default: return 不支持; }