## Merged Features from sub2apipro - Sora video generation integration (OpenAI Sora API) - Group management enhancements - Usage log improvements - Security headers middleware ## Chinese Model Pricing Updates - GLM-5, GLM-5-Turbo, GLM-5.1, GLM-4.7, GLM-4.5-Air - Baichuan4, Baichuan4-Turbo, Baichuan4-Air, Baichuan-M3-Plus - DeepSeek-V3, DeepSeek-V3.2, DeepSeek-R1 - Qwen3-8B (free), Qwen2.5-72B-Instruct ## URL Whitelist Additions - api.baichuan-ai.com (百川智能) - api.siliconflow.cn (硅基流动) - api.z.ai (智谱国际) - api.groq.com (Groq加速推理) ## Documentation - Added merge guide (docs/MERGE_GUIDE.md) - Added quick reference (docs/MERGE_QUICKREF.md) - Added review reports (docs/reviews/)
40 lines
835 B
Vue
40 lines
835 B
Vue
<template>
|
||
<div class="sora-no-storage-warning">
|
||
<span>⚠️</span>
|
||
<div>
|
||
<p class="sora-no-storage-title">{{ t('sora.noStorageWarningTitle') }}</p>
|
||
<p class="sora-no-storage-desc">{{ t('sora.noStorageWarningDesc') }}</p>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { useI18n } from 'vue-i18n'
|
||
|
||
const { t } = useI18n()
|
||
</script>
|
||
|
||
<style scoped>
|
||
.sora-no-storage-warning {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 10px;
|
||
padding: 14px 20px;
|
||
background: rgba(245, 158, 11, 0.08);
|
||
border: 1px solid rgba(245, 158, 11, 0.2);
|
||
border-radius: 12px;
|
||
font-size: 13px;
|
||
}
|
||
|
||
.sora-no-storage-title {
|
||
font-weight: 600;
|
||
color: var(--sora-warning, #F59E0B);
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.sora-no-storage-desc {
|
||
color: var(--sora-text-secondary, #A0A0A0);
|
||
line-height: 1.5;
|
||
}
|
||
</style>
|