mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-11-01 02:57:09 -04:00
Revert "Sonar code smell sure"
This reverts commit 4318f7dac39afeb5c80188d1e64ff0134a420f96.
This commit is contained in:
parent
4b07179b01
commit
a569b0574d
@ -25,6 +25,7 @@ class Migration(migrations.Migration):
|
|||||||
field=models.CharField(
|
field=models.CharField(
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=128,
|
max_length=128,
|
||||||
|
null=True,
|
||||||
verbose_name="Sets the LLM API key",
|
verbose_name="Sets the LLM API key",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -35,6 +36,7 @@ class Migration(migrations.Migration):
|
|||||||
blank=True,
|
blank=True,
|
||||||
choices=[("openai", "OpenAI"), ("ollama", "Ollama")],
|
choices=[("openai", "OpenAI"), ("ollama", "Ollama")],
|
||||||
max_length=32,
|
max_length=32,
|
||||||
|
null=True,
|
||||||
verbose_name="Sets the LLM backend",
|
verbose_name="Sets the LLM backend",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -45,6 +47,7 @@ class Migration(migrations.Migration):
|
|||||||
blank=True,
|
blank=True,
|
||||||
choices=[("openai", "OpenAI"), ("huggingface", "Huggingface")],
|
choices=[("openai", "OpenAI"), ("huggingface", "Huggingface")],
|
||||||
max_length=32,
|
max_length=32,
|
||||||
|
null=True,
|
||||||
verbose_name="Sets the LLM embedding backend",
|
verbose_name="Sets the LLM embedding backend",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -54,6 +57,7 @@ class Migration(migrations.Migration):
|
|||||||
field=models.CharField(
|
field=models.CharField(
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=32,
|
max_length=32,
|
||||||
|
null=True,
|
||||||
verbose_name="Sets the LLM embedding model",
|
verbose_name="Sets the LLM embedding model",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -63,6 +67,7 @@ class Migration(migrations.Migration):
|
|||||||
field=models.CharField(
|
field=models.CharField(
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=32,
|
max_length=32,
|
||||||
|
null=True,
|
||||||
verbose_name="Sets the LLM model",
|
verbose_name="Sets the LLM model",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -72,6 +77,7 @@ class Migration(migrations.Migration):
|
|||||||
field=models.CharField(
|
field=models.CharField(
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=128,
|
max_length=128,
|
||||||
|
null=True,
|
||||||
verbose_name="Sets the LLM endpoint, optional",
|
verbose_name="Sets the LLM endpoint, optional",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@ -291,6 +291,7 @@ class ApplicationConfiguration(AbstractSingletonModel):
|
|||||||
|
|
||||||
llm_embedding_backend = models.CharField(
|
llm_embedding_backend = models.CharField(
|
||||||
verbose_name=_("Sets the LLM embedding backend"),
|
verbose_name=_("Sets the LLM embedding backend"),
|
||||||
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=32,
|
max_length=32,
|
||||||
choices=LLMEmbeddingBackend.choices,
|
choices=LLMEmbeddingBackend.choices,
|
||||||
@ -298,12 +299,14 @@ class ApplicationConfiguration(AbstractSingletonModel):
|
|||||||
|
|
||||||
llm_embedding_model = models.CharField(
|
llm_embedding_model = models.CharField(
|
||||||
verbose_name=_("Sets the LLM embedding model"),
|
verbose_name=_("Sets the LLM embedding model"),
|
||||||
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=32,
|
max_length=32,
|
||||||
)
|
)
|
||||||
|
|
||||||
llm_backend = models.CharField(
|
llm_backend = models.CharField(
|
||||||
verbose_name=_("Sets the LLM backend"),
|
verbose_name=_("Sets the LLM backend"),
|
||||||
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=32,
|
max_length=32,
|
||||||
choices=LLMBackend.choices,
|
choices=LLMBackend.choices,
|
||||||
@ -311,18 +314,21 @@ class ApplicationConfiguration(AbstractSingletonModel):
|
|||||||
|
|
||||||
llm_model = models.CharField(
|
llm_model = models.CharField(
|
||||||
verbose_name=_("Sets the LLM model"),
|
verbose_name=_("Sets the LLM model"),
|
||||||
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=32,
|
max_length=32,
|
||||||
)
|
)
|
||||||
|
|
||||||
llm_api_key = models.CharField(
|
llm_api_key = models.CharField(
|
||||||
verbose_name=_("Sets the LLM API key"),
|
verbose_name=_("Sets the LLM API key"),
|
||||||
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=128,
|
max_length=128,
|
||||||
)
|
)
|
||||||
|
|
||||||
llm_endpoint = models.CharField(
|
llm_endpoint = models.CharField(
|
||||||
verbose_name=_("Sets the LLM endpoint, optional"),
|
verbose_name=_("Sets the LLM endpoint, optional"),
|
||||||
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=128,
|
max_length=128,
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user