-
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.
- Loading branch information
Showing
5 changed files
with
61 additions
and
3 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
56 changes: 56 additions & 0 deletions
56
bots/migrations/0044_savedrun_price_alter_savedrun_workflow.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,56 @@ | ||
# Generated by Django 4.2.5 on 2023-10-10 02:58 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("bots", "0043_alter_savedrun_workflow"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="savedrun", | ||
name="price", | ||
field=models.IntegerField(default=0), | ||
), | ||
migrations.AlterField( | ||
model_name="savedrun", | ||
name="workflow", | ||
field=models.IntegerField( | ||
choices=[ | ||
(1, "Doc Search"), | ||
(2, "Doc Summary"), | ||
(3, "Google GPT"), | ||
(4, "Copilot"), | ||
(5, "Lipysnc + TTS"), | ||
(6, "Text to Speech"), | ||
(7, "Speech Recognition"), | ||
(8, "Lipsync"), | ||
(9, "Deforum Animation"), | ||
(10, "Compare Text2Img"), | ||
(11, "Text2Audio"), | ||
(12, "Img2Img"), | ||
(13, "Face Inpainting"), | ||
(14, "Google Image Gen"), | ||
(15, "Compare AI Upscalers"), | ||
(16, "SEO Summary"), | ||
(17, "Email Face Inpainting"), | ||
(18, "Social Lookup Email"), | ||
(19, "Object Inpainting"), | ||
(20, "Image Segmentation"), | ||
(21, "Compare LLM"), | ||
(22, "Chyron Plant"), | ||
(23, "Letter Writer"), | ||
(24, "Smart GPT"), | ||
(25, "AI QR Code"), | ||
(26, "Doc Extract"), | ||
(27, "Related QnA Maker"), | ||
(28, "Related QnA Maker Doc"), | ||
(29, "Embeddings"), | ||
(30, "Bulk Runner"), | ||
], | ||
default=4, | ||
), | ||
), | ||
] |
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