Fix naming

This commit is contained in:
shamoon 2025-04-25 12:03:45 -07:00
parent 1ccaf66869
commit a9ed46de11
No known key found for this signature in database
5 changed files with 8 additions and 7 deletions

View file

@ -1419,7 +1419,7 @@ OUTLOOK_OAUTH_ENABLED = bool(
AI_ENABLED = __get_boolean("PAPERLESS_AI_ENABLED", "NO")
LLM_EMBEDDING_BACKEND = os.getenv(
"PAPERLESS_LLM_EMBEDDING_BACKEND",
) # "local" or "openai"
) # "huggingface" or "openai"
LLM_EMBEDDING_MODEL = os.getenv("PAPERLESS_LLM_EMBEDDING_MODEL")
LLM_BACKEND = os.getenv("PAPERLESS_LLM_BACKEND") # "ollama" or "openai"
LLM_MODEL = os.getenv("PAPERLESS_LLM_MODEL")