From 5e592b2f3d294c25dae1d290bff213a3dfb2def8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Mon, 2 Mar 2026 14:14:53 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[google-cloud]=20Gemini=202.0=20?= =?UTF-8?q?=EB=AA=A8=EB=8D=B8=202026.06.01=20=EC=A4=91=EB=8B=A8=20?= =?UTF-8?q?=EC=95=88=EB=82=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 모델 테이블에 중단 예정 뱃지 및 취소선 표시 - 마이그레이션 가이드 경고 박스 추가 (2.0→2.5 권장) - 바 차트에서 중단 모델 흐림(opacity) 처리 --- .../cloud-api-pricing/index.blade.php | 67 +++++++++++++------ 1 file changed, 48 insertions(+), 19 deletions(-) diff --git a/resources/views/google-cloud/cloud-api-pricing/index.blade.php b/resources/views/google-cloud/cloud-api-pricing/index.blade.php index 30331027..8256ed42 100644 --- a/resources/views/google-cloud/cloud-api-pricing/index.blade.php +++ b/resources/views/google-cloud/cloud-api-pricing/index.blade.php @@ -91,23 +91,31 @@ class="inline-flex items-center gap-1.5 px-3 py-1.5 text-sm font-medium text-whi @php $models = [ - ['name' => 'Gemini 2.5 Pro', 'badge' => 'gca-badge-purple', 'input' => 1.25, 'output' => 10.00, 'bInput' => 0.625, 'bOutput' => 5.00, 'note' => '최고 성능, 복잡한 추론'], - ['name' => 'Gemini 2.5 Flash', 'badge' => 'gca-badge-blue', 'input' => 0.30, 'output' => 2.50, 'bInput' => 0.15, 'bOutput' => 1.25, 'note' => '속도+성능 밸런스'], - ['name' => 'Gemini 2.5 Flash-Lite', 'badge' => 'gca-badge-green', 'input' => 0.10, 'output' => 0.40, 'bInput' => 0.05, 'bOutput' => 0.20, 'note' => '최저가, 경량 작업'], - ['name' => 'Gemini 2.0 Flash', 'badge' => 'gca-badge-blue', 'input' => 0.15, 'output' => 0.60, 'bInput' => 0.075, 'bOutput' => 0.30, 'note' => '이전 세대 Flash'], - ['name' => 'Gemini 2.0 Flash-Lite', 'badge' => 'gca-badge-gray', 'input' => 0.075, 'output' => 0.30, 'bInput' => 0.038, 'bOutput' => 0.15, 'note' => '이전 세대 최저가'], + ['name' => 'Gemini 2.5 Pro', 'input' => 1.25, 'output' => 10.00, 'bInput' => 0.625, 'bOutput' => 5.00, 'note' => '최고 성능, 복잡한 추론', 'deprecated' => false], + ['name' => 'Gemini 2.5 Flash', 'input' => 0.30, 'output' => 2.50, 'bInput' => 0.15, 'bOutput' => 1.25, 'note' => '속도+성능 밸런스', 'deprecated' => false], + ['name' => 'Gemini 2.5 Flash-Lite', 'input' => 0.10, 'output' => 0.40, 'bInput' => 0.05, 'bOutput' => 0.20, 'note' => '최저가, 경량 작업', 'deprecated' => false], + ['name' => 'Gemini 2.0 Flash', 'input' => 0.15, 'output' => 0.60, 'bInput' => 0.075, 'bOutput' => 0.30, 'note' => '2026.06.01 중단 예정', 'deprecated' => true, 'replacement' => '2.5 Flash'], + ['name' => 'Gemini 2.0 Flash-Lite', 'input' => 0.075, 'output' => 0.30, 'bInput' => 0.038, 'bOutput' => 0.15, 'note' => '2026.06.01 중단 예정', 'deprecated' => true, 'replacement' => '2.5 Flash-Lite'], ]; @endphp @foreach($models as $idx => $model) - + - {{ $model['name'] }} + {{ $model['name'] }} + @if($model['deprecated']) + 중단 예정 + @endif + + ${{ number_format($model['input'], 2) }} + ${{ number_format($model['output'], 2) }} + ${{ number_format($model['bInput'], 3) }} + ${{ number_format($model['bOutput'], 2) }} + + {{ $model['note'] }} + @if($model['deprecated']) + → {{ $model['replacement'] }} + @endif - ${{ number_format($model['input'], 2) }} - ${{ number_format($model['output'], 2) }} - ${{ number_format($model['bInput'], 3) }} - ${{ number_format($model['bOutput'], 2) }} - {{ $model['note'] }} @endforeach @@ -120,26 +128,47 @@ class="inline-flex items-center gap-1.5 px-3 py-1.5 text-sm font-medium text-whi @php $maxOutput = 10.0; $barModels = [ - ['name' => '2.5 Pro', 'output' => 10.00], - ['name' => '2.5 Flash', 'output' => 2.50], - ['name' => '2.5 Flash-Lite', 'output' => 0.40], - ['name' => '2.0 Flash', 'output' => 0.60], - ['name' => '2.0 Flash-Lite', 'output' => 0.30], + ['name' => '2.5 Pro', 'output' => 10.00, 'deprecated' => false], + ['name' => '2.5 Flash', 'output' => 2.50, 'deprecated' => false], + ['name' => '2.5 Flash-Lite', 'output' => 0.40, 'deprecated' => false], + ['name' => '2.0 Flash', 'output' => 0.60, 'deprecated' => true], + ['name' => '2.0 Flash-Lite', 'output' => 0.30, 'deprecated' => true], ]; @endphp @foreach($barModels as $bm) -
-
{{ $bm['name'] }}
+
+
{{ $bm['name'] }}
${{ number_format($bm['output'], 2) }}
+ @if($bm['deprecated']) + 중단 + @endif
@endforeach
+
+
+ +
+ Gemini 2.0 모델 중단 안내 (2026.06.01) +
+ Google은 2026년 6월 1일부로 Gemini 2.0 Flash 및 2.0 Flash-Lite 모델의 서비스를 종료합니다. + 해당 모델을 사용 중인 경우 종료일 전에 마이그레이션이 필요합니다. +
+
+ 마이그레이션 가이드: + gemini-2.0-flashgemini-2.5-flash  |  + gemini-2.0-flash-litegemini-2.5-flash-lite +
+
+
+
+
배치(Batch/Flex) 할인: 실시간 응답이 불필요한 대량 처리 작업은 Batch 모드를 사용하면 표준 대비 50% 할인된 가격이 적용됩니다. 처리 시간은 24시간 내 완료 보장.