Files
lcbp3/specs/03-Data-and-Storage/deltas/2026-05-30-seed-typhoon-ai-models.sql
T
admin ae1b1f35e1
CI / CD Pipeline / build (push) Successful in 4m51s
CI / CD Pipeline / deploy (push) Successful in 12m7s
feat(ai): ADR-032 Typhoon OCR integration - models, processors, cache, VRAM monitor, sandbox UI
2026-05-30 22:18:51 +07:00

25 lines
559 B
SQL

-- Delta: Seed Typhoon model option into ai_available_models
-- Date: 2026-05-30
-- Related: ADR-027, ADR-032, specs/200-fullstacks/232-typhoon-ocr-integration
INSERT INTO ai_available_models (
model_name,
model_version,
description,
vram_gb,
is_active,
is_default
)
SELECT
'typhoon2.1-gemma3-4b',
'4b',
'Typhoon 2.1 Gemma3 4B - Thai-focused local LLM option for AI Admin Console',
4.50,
TRUE,
FALSE
WHERE NOT EXISTS (
SELECT 1
FROM ai_available_models
WHERE model_name = 'typhoon2.1-gemma3-4b'
);