AI AUtomtaion, Schudelign and publishign fromt and backe end refoactr

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-17 15:52:46 +00:00
parent 0435a5cf70
commit d3b3e1c0d4
34 changed files with 4715 additions and 375 deletions

View File

@@ -0,0 +1,24 @@
# Generated migration for settings consolidation
# Add is_testing field to AIModelConfig
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('billing', '0009_seed_ai_model_configs'),
]
operations = [
# Add is_testing field to AIModelConfig
migrations.AddField(
model_name='aimodelconfig',
name='is_testing',
field=models.BooleanField(
default=False,
db_index=True,
help_text='Testing model (cheap, for testing only). Only one per model_type can be is_testing=True.',
),
),
]