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"),
]
operations = [
# migrations.AlterField(
# model_name="agent",
# name="output_modes",
# field=django.contrib.postgres.fields.ArrayField(
# base_field=models.CharField(
# choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200
# ),
# default=list,
# size=None,
# ),
# ),
]
operations = [] # type: ignore
# migrations.AlterField(
# model_name="agent",
# name="output_modes",
# field=django.contrib.postgres.fields.ArrayField(
# base_field=models.CharField(
# choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200
# ),
# default=list,
# size=None,
# ),
# ),

View file

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