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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| # Generated by Django 5.1.4 on 2025-01-03 20:58
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| (
| "ml_model_providers",
| "0005_modelproviderconnection_budget_alert_threshold_and_more",
| ),
| ]
|
| operations = [
| migrations.AddField(
| model_name="modelproviderconnection",
| name="google_application_credentials",
| field=models.TextField(
| blank=True,
| help_text="The content of GOOGLE_APPLICATION_CREDENTIALS json file",
| null=True,
| verbose_name="google application credentials",
| ),
| ),
| migrations.AddField(
| model_name="modelproviderconnection",
| name="google_location",
| field=models.CharField(
| blank=True,
| help_text="Google project location",
| max_length=255,
| null=True,
| verbose_name="google location",
| ),
| ),
| migrations.AddField(
| model_name="modelproviderconnection",
| name="google_project_id",
| field=models.CharField(
| blank=True,
| help_text="Google project ID",
| max_length=255,
| null=True,
| verbose_name="google project id",
| ),
| ),
| migrations.AlterField(
| model_name="modelproviderconnection",
| name="provider",
| field=models.CharField(
| choices=[
| ("OpenAI", "OpenAI"),
| ("AzureOpenAI", "AzureOpenAI"),
| ("VertexAI", "VertexAI"),
| ("Custom", "Custom"),
| ],
| default="OpenAI",
| max_length=255,
| ),
| ),
| ]
|
|