feat: LMArena 图片适配器支持单独返回图片URL (closes #3)

This commit is contained in:
foxhui
2025-12-20 18:37:56 +08:00
Unverified
parent 10c96e420f
commit c09c465209
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **初始化失败逻辑**
- 程序初始化失败后不会直接推出,以便利用 WebUI 修改错误的配置
- **LMArena 图片适配器**
- 支持通过配置直接返回图片URL (但其他不支持的适配器仍然会返回 Base64)
- 支持通过配置直接返回图片URL (但其他不支持该选项的适配器仍然会返回 Base64)
## [3.2.0] - 2025-12-19
+1 -1
View File
@@ -116,7 +116,7 @@ backend:
entryUrl: ""
# Lmarena 配置
lmarena:
# 开启后直接返回图片 URL (但其他不支持的适配器仍然会返回 Base64)
# 开启后直接返回图片 URL (但其他不支持该选项的适配器仍然会返回 Base64)
returnUrl: false
+1 -1
View File
@@ -184,7 +184,7 @@ export const manifest = {
label: '返回图片 URL',
type: 'boolean',
default: false,
note: '开启后直接返回图片 URL (但其他不支持的适配器仍然会返回 Base64)'
note: '开启后直接返回图片 URL (但其他不支持该选项的适配器仍然会返回 Base64)'
}
],