-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1664 from watchdogpolska/dev_ext
v1.5.06
- Loading branch information
Showing
11 changed files
with
303 additions
and
20 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
17 changes: 17 additions & 0 deletions
17
feder/letters/migrations/0043_letter_only_one_or_none_author.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,17 @@ | ||
# Generated by Django 4.2.13 on 2024-05-20 13:07 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('letters', '0042_alter_letter_record'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddConstraint( | ||
model_name='letter', | ||
constraint=models.CheckConstraint(check=models.Q(models.Q(('author_institution__isnull', True), ('author_user__isnull', False)), models.Q(('author_institution__isnull', False), ('author_user__isnull', True)), models.Q(('author_institution__isnull', True), ('author_user__isnull', True)), _connector='OR'), name='only_one_or_none_author'), | ||
), | ||
] |
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
33 changes: 33 additions & 0 deletions
33
feder/llm_evaluation/migrations/0009_llmletterrequest_args_llmletterrequest_name_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,33 @@ | ||
# Generated by Django 4.2.13 on 2024-05-17 17:17 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('llm_evaluation', '0008_alter_llmmonthlycost_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='llmletterrequest', | ||
name='args', | ||
field=models.JSONField(blank=True, null=True, verbose_name='Arguments'), | ||
), | ||
migrations.AddField( | ||
model_name='llmletterrequest', | ||
name='name', | ||
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Name'), | ||
), | ||
migrations.AddField( | ||
model_name='llmmonitoringrequest', | ||
name='args', | ||
field=models.JSONField(blank=True, null=True, verbose_name='Arguments'), | ||
), | ||
migrations.AddField( | ||
model_name='llmmonitoringrequest', | ||
name='name', | ||
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Name'), | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
feder/llm_evaluation/migrations/0010_alter_llmletterrequest_token_usage_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,23 @@ | ||
# Generated by Django 4.2.13 on 2024-05-20 11:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('llm_evaluation', '0009_llmletterrequest_args_llmletterrequest_name_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='llmletterrequest', | ||
name='token_usage', | ||
field=models.JSONField(blank=True, null=True, verbose_name='LLM Engine token usage'), | ||
), | ||
migrations.AlterField( | ||
model_name='llmmonitoringrequest', | ||
name='token_usage', | ||
field=models.JSONField(blank=True, null=True, verbose_name='LLM Engine token usage'), | ||
), | ||
] |
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
Oops, something went wrong.