-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:dara-network/ddgai into copilot_s…
…ettings_reordering # Conflicts: # daras_ai_v2/prompt_vars.py # recipes/VideoBots.py
- Loading branch information
Showing
113 changed files
with
3,584 additions
and
1,150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
app_users/migrations/0012_appuser_low_balance_email_sent_at.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.7 on 2024-02-14 07:23 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('app_users', '0011_appusertransaction_charged_amount_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='appuser', | ||
name='low_balance_email_sent_at', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
app_users/migrations/0013_appusertransaction_app_users_a_user_id_9b2e8d_idx_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Generated by Django 4.2.7 on 2024-02-28 14:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('app_users', '0012_appuser_low_balance_email_sent_at'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddIndex( | ||
model_name='appusertransaction', | ||
index=models.Index(fields=['user', 'amount', '-created_at'], name='app_users_a_user_id_9b2e8d_idx'), | ||
), | ||
migrations.AddIndex( | ||
model_name='appusertransaction', | ||
index=models.Index(fields=['-created_at'], name='app_users_a_created_3c27fe_idx'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 4.2.7 on 2024-01-31 19:14 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("bots", "0055_workflowmetadata"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="botintegration", | ||
name="streaming_enabled", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="If set, the bot will stream messages to the frontend", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.7 on 2024-02-05 15:11 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bots', '0056_botintegration_streaming_enabled'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='message', | ||
name='response_time', | ||
field=models.DurationField(default=None, help_text='The time it took for the bot to respond to the corresponding user message', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='botintegration', | ||
name='streaming_enabled', | ||
field=models.BooleanField(default=False, help_text='If set, the bot will stream messages to the frontend (Slack only)'), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
bots/migrations/0058_alter_savedrun_unique_together_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Generated by Django 4.2.7 on 2024-02-06 18:24 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bots', '0057_message_response_time_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterUniqueTogether( | ||
name='savedrun', | ||
unique_together={('run_id', 'uid'), ('workflow', 'example_id')}, | ||
), | ||
migrations.AddIndex( | ||
model_name='savedrun', | ||
index=models.Index(fields=['run_id', 'uid'], name='bots_savedr_run_id_7b0b34_idx'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.7 on 2024-02-12 07:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bots', '0058_alter_savedrun_unique_together_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='savedrun', | ||
name='is_api_call', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.7 on 2024-02-20 16:49 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bots', '0059_savedrun_is_api_call'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='conversation', | ||
name='reset_at', | ||
field=models.DateTimeField(blank=True, default=None, null=True), | ||
), | ||
] |
Oops, something went wrong.