mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Ignore type checking as it's just for a POC
This commit is contained in:
parent
3806cce2e6
commit
866f5d027b
2 changed files with 46 additions and 48 deletions
|
@ -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,
|
||||
# ),
|
||||
# ),
|
||||
|
|
|
@ -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,
|
||||
# ),
|
||||
# ),
|
||||
|
|
Loading…
Reference in a new issue