Ignore type checking as it's just for a POC

This commit is contained in:
sabaimran 2024-11-18 16:19:02 -08:00
parent 3806cce2e6
commit 866f5d027b
2 changed files with 46 additions and 48 deletions

View file

@ -9,16 +9,15 @@ class Migration(migrations.Migration):
("database", "0067_alter_agent_style_icon"), ("database", "0067_alter_agent_style_icon"),
] ]
operations = [ operations = [] # type: ignore
# migrations.AlterField( # migrations.AlterField(
# model_name="agent", # model_name="agent",
# name="output_modes", # name="output_modes",
# field=django.contrib.postgres.fields.ArrayField( # field=django.contrib.postgres.fields.ArrayField(
# base_field=models.CharField( # base_field=models.CharField(
# choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200 # choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200
# ), # ),
# default=list, # default=list,
# size=None, # size=None,
# ), # ),
# ), # ),
]

View file

@ -9,38 +9,37 @@ class Migration(migrations.Migration):
("database", "0069_webscraper_serverchatsettings_web_scraper"), ("database", "0069_webscraper_serverchatsettings_web_scraper"),
] ]
operations = [ operations = [] # type: ignore
# migrations.AlterField( # migrations.AlterField(
# model_name="agent", # model_name="agent",
# name="input_tools", # name="input_tools",
# field=django.contrib.postgres.fields.ArrayField( # field=django.contrib.postgres.fields.ArrayField(
# base_field=models.CharField( # base_field=models.CharField(
# choices=[ # choices=[
# ("general", "General"), # ("general", "General"),
# ("online", "Online"), # ("online", "Online"),
# ("notes", "Notes"), # ("notes", "Notes"),
# ("summarize", "Summarize"), # ("summarize", "Summarize"),
# ("webpage", "Webpage"), # ("webpage", "Webpage"),
# ], # ],
# max_length=200, # max_length=200,
# ), # ),
# blank=True, # blank=True,
# default=list, # default=list,
# null=True, # null=True,
# size=None, # size=None,
# ), # ),
# ), # ),
# migrations.AlterField( # migrations.AlterField(
# model_name="agent", # model_name="agent",
# name="output_modes", # name="output_modes",
# field=django.contrib.postgres.fields.ArrayField( # field=django.contrib.postgres.fields.ArrayField(
# base_field=models.CharField( # base_field=models.CharField(
# choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200 # choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200
# ), # ),
# blank=True, # blank=True,
# default=list, # default=list,
# null=True, # null=True,
# size=None, # size=None,
# ), # ),
# ), # ),
]