19 lines
534 B
Python
19 lines
534 B
Python
# Generated by Django 5.2.7 on 2026-02-08 18:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0002_aiconfiguration_aichathistory_ai_configuration_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='aiconfiguration',
|
|
name='provider',
|
|
field=models.CharField(choices=[('openai', 'OpenAI'), ('perplexity', 'Perplexity'), ('merlin', 'Merlin AI'), ('poe', 'POE')], max_length=50),
|
|
),
|
|
]
|