feat(ai-providers): add Gemini proxy URL support in provider edit UI

This commit is contained in:
Supra4E8C
2026-02-13 20:38:54 +08:00
parent ef448806aa
commit 06201a9fc4
8 changed files with 25 additions and 0 deletions

View File

@@ -125,6 +125,12 @@ export function GeminiSection({
<span className={styles.fieldValue}>{item.baseUrl}</span>
</div>
)}
{item.proxyUrl && (
<div className={styles.fieldRow}>
<span className={styles.fieldLabel}>{t('common.proxy_url')}:</span>
<span className={styles.fieldValue}>{item.proxyUrl}</span>
</div>
)}
{headerEntries.length > 0 && (
<div className={styles.headerBadgeList}>
{headerEntries.map(([key, value]) => (