-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate api calls for secondary summaries (#2366)
* Seperate prompt generation for sector and component * Format prompt and create migration file
- Loading branch information
1 parent
7b78e6f
commit 758eeb9
Showing
4 changed files
with
115 additions
and
46 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
per/migrations/0124_alter_opslearningpromptresponsecache_type.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,20 @@ | ||
# Generated by Django 4.2.17 on 2025-01-03 03:07 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("per", "0123_alter_perdocumentupload_file_alter_perfile_file"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="opslearningpromptresponsecache", | ||
name="type", | ||
field=models.IntegerField( | ||
choices=[(1, "Primary"), (2, "Secondary"), (3, "Sector"), (4, "Component")], verbose_name="type" | ||
), | ||
), | ||
] |
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