1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| # Generated by Django 5.1.4 on 2025-01-10 18:38
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| (
| "ml_model_providers",
| "0006_modelproviderconnection_google_application_credentials_and_more",
| ),
| ]
|
| operations = [
| migrations.AlterField(
| model_name="modelproviderconnection",
| name="provider",
| field=models.CharField(
| choices=[
| ("OpenAI", "OpenAI"),
| ("AzureOpenAI", "AzureOpenAI"),
| ("VertexAI", "VertexAI"),
| ("Gemini", "Gemini"),
| ("Custom", "Custom"),
| ],
| default="OpenAI",
| max_length=255,
| ),
| ),
| ]
|
|