diff --git a/ai-provider/model-runtime/model-providers/tongyi/tongyi.yaml b/ai-provider/model-runtime/model-providers/tongyi/tongyi.yaml index 2ae5cb81..f6f905f7 100644 --- a/ai-provider/model-runtime/model-providers/tongyi/tongyi.yaml +++ b/ai-provider/model-runtime/model-providers/tongyi/tongyi.yaml @@ -31,10 +31,10 @@ provider_credential_schema: en_US: Enter your API Key - variable: base_url label: - en_US: https://api.baichuan-ai.com/v1 + en_US: https://dashscope.aliyuncs.com/compatible-mode/v1 type: text-input required: false placeholder: zh_Hans: 在此输入您的 Base URL en_US: Enter your Base URL -address: https://api.baichuan-ai.com/v1 \ No newline at end of file +address: https://dashscope.aliyuncs.com/compatible-mode/v1 \ No newline at end of file diff --git a/module/monitor/iml.go b/module/monitor/iml.go index 6e497a49..63d127e4 100644 --- a/module/monitor/iml.go +++ b/module/monitor/iml.go @@ -596,9 +596,9 @@ func (i *imlMonitorStatisticModule) TopAPIStatistics(ctx context.Context, limit } else { statisticItem.IsRed = true if key == "-" { - statisticItem.Name = "无API" + statisticItem.Name = "Unknown API" } else { - statisticItem.Name = fmt.Sprintf("未知API-%s", key) + statisticItem.Name = fmt.Sprintf("Unknow-%s", key) } } result = append(result, statisticItem)