mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-06-06 05:39:45 +00:00
24 lines
609 B
Python
24 lines
609 B
Python
# Generated by Django 5.2.6 on 2026-06-02
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("paperless", "0011_applicationconfiguration_llm_embedding_chunk_size"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="applicationconfiguration",
|
|
name="llm_output_language",
|
|
field=models.CharField(
|
|
blank=True,
|
|
max_length=32,
|
|
null=True,
|
|
verbose_name="Sets the LLM output language",
|
|
),
|
|
),
|
|
]
|