mirror of
https://github.com/open-webui/open-webui.git
synced 2025-03-27 02:02:31 +01:00
Merge pull request #9917 from nachogmd/dev
feat: Optional title generation
This commit is contained in:
commit
c315634365
@ -1190,6 +1190,12 @@ ENABLE_TAGS_GENERATION = PersistentConfig(
|
||||
os.environ.get("ENABLE_TAGS_GENERATION", "True").lower() == "true",
|
||||
)
|
||||
|
||||
ENABLE_TITLE_GENERATION = PersistentConfig(
|
||||
"ENABLE_TITLE_GENERATION",
|
||||
"task.title.enable",
|
||||
os.environ.get("ENABLE_TITLE_GENERATION", "True").lower() == "true",
|
||||
)
|
||||
|
||||
|
||||
ENABLE_SEARCH_QUERY_GENERATION = PersistentConfig(
|
||||
"ENABLE_SEARCH_QUERY_GENERATION",
|
||||
|
@ -264,6 +264,7 @@ from open_webui.config import (
|
||||
TASK_MODEL,
|
||||
TASK_MODEL_EXTERNAL,
|
||||
ENABLE_TAGS_GENERATION,
|
||||
ENABLE_TITLE_GENERATION,
|
||||
ENABLE_SEARCH_QUERY_GENERATION,
|
||||
ENABLE_RETRIEVAL_QUERY_GENERATION,
|
||||
ENABLE_AUTOCOMPLETE_GENERATION,
|
||||
@ -689,6 +690,7 @@ app.state.config.ENABLE_SEARCH_QUERY_GENERATION = ENABLE_SEARCH_QUERY_GENERATION
|
||||
app.state.config.ENABLE_RETRIEVAL_QUERY_GENERATION = ENABLE_RETRIEVAL_QUERY_GENERATION
|
||||
app.state.config.ENABLE_AUTOCOMPLETE_GENERATION = ENABLE_AUTOCOMPLETE_GENERATION
|
||||
app.state.config.ENABLE_TAGS_GENERATION = ENABLE_TAGS_GENERATION
|
||||
app.state.config.ENABLE_TITLE_GENERATION = ENABLE_TITLE_GENERATION
|
||||
|
||||
|
||||
app.state.config.TITLE_GENERATION_PROMPT_TEMPLATE = TITLE_GENERATION_PROMPT_TEMPLATE
|
||||
|
@ -58,6 +58,7 @@ async def get_task_config(request: Request, user=Depends(get_verified_user)):
|
||||
"AUTOCOMPLETE_GENERATION_INPUT_MAX_LENGTH": request.app.state.config.AUTOCOMPLETE_GENERATION_INPUT_MAX_LENGTH,
|
||||
"TAGS_GENERATION_PROMPT_TEMPLATE": request.app.state.config.TAGS_GENERATION_PROMPT_TEMPLATE,
|
||||
"ENABLE_TAGS_GENERATION": request.app.state.config.ENABLE_TAGS_GENERATION,
|
||||
"ENABLE_TITLE_GENERATION": request.app.state.config.ENABLE_TITLE_GENERATION,
|
||||
"ENABLE_SEARCH_QUERY_GENERATION": request.app.state.config.ENABLE_SEARCH_QUERY_GENERATION,
|
||||
"ENABLE_RETRIEVAL_QUERY_GENERATION": request.app.state.config.ENABLE_RETRIEVAL_QUERY_GENERATION,
|
||||
"QUERY_GENERATION_PROMPT_TEMPLATE": request.app.state.config.QUERY_GENERATION_PROMPT_TEMPLATE,
|
||||
@ -68,6 +69,7 @@ async def get_task_config(request: Request, user=Depends(get_verified_user)):
|
||||
class TaskConfigForm(BaseModel):
|
||||
TASK_MODEL: Optional[str]
|
||||
TASK_MODEL_EXTERNAL: Optional[str]
|
||||
ENABLE_TITLE_GENERATION: bool
|
||||
TITLE_GENERATION_PROMPT_TEMPLATE: str
|
||||
IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE: str
|
||||
ENABLE_AUTOCOMPLETE_GENERATION: bool
|
||||
@ -86,6 +88,7 @@ async def update_task_config(
|
||||
):
|
||||
request.app.state.config.TASK_MODEL = form_data.TASK_MODEL
|
||||
request.app.state.config.TASK_MODEL_EXTERNAL = form_data.TASK_MODEL_EXTERNAL
|
||||
request.app.state.config.ENABLE_TITLE_GENERATION = form_data.ENABLE_TITLE_GENERATION
|
||||
request.app.state.config.TITLE_GENERATION_PROMPT_TEMPLATE = (
|
||||
form_data.TITLE_GENERATION_PROMPT_TEMPLATE
|
||||
)
|
||||
@ -122,6 +125,7 @@ async def update_task_config(
|
||||
return {
|
||||
"TASK_MODEL": request.app.state.config.TASK_MODEL,
|
||||
"TASK_MODEL_EXTERNAL": request.app.state.config.TASK_MODEL_EXTERNAL,
|
||||
"ENABLE_TITLE_GENERATION": request.app.state.config.ENABLE_TITLE_GENERATION,
|
||||
"TITLE_GENERATION_PROMPT_TEMPLATE": request.app.state.config.TITLE_GENERATION_PROMPT_TEMPLATE,
|
||||
"IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE": request.app.state.config.IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE,
|
||||
"ENABLE_AUTOCOMPLETE_GENERATION": request.app.state.config.ENABLE_AUTOCOMPLETE_GENERATION,
|
||||
@ -139,6 +143,13 @@ async def update_task_config(
|
||||
async def generate_title(
|
||||
request: Request, form_data: dict, user=Depends(get_verified_user)
|
||||
):
|
||||
|
||||
if not request.app.state.config.ENABLE_TITLE_GENERATION:
|
||||
return JSONResponse(
|
||||
status_code=status.HTTP_200_OK,
|
||||
content={"detail": "Title generation is disabled"},
|
||||
)
|
||||
|
||||
if getattr(request.state, "direct", False) and hasattr(request.state, "model"):
|
||||
models = {
|
||||
request.state.model["id"]: request.state.model,
|
||||
|
@ -23,6 +23,7 @@
|
||||
let taskConfig = {
|
||||
TASK_MODEL: '',
|
||||
TASK_MODEL_EXTERNAL: '',
|
||||
ENABLE_TITLE_GENERATION: true,
|
||||
TITLE_GENERATION_PROMPT_TEMPLATE: '',
|
||||
IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE: '',
|
||||
ENABLE_AUTOCOMPLETE_GENERATION: true,
|
||||
@ -126,22 +127,36 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-3">
|
||||
<div class=" mb-2.5 text-xs font-medium">{$i18n.t('Title Generation Prompt')}</div>
|
||||
<hr class=" border-gray-50 dark:border-gray-850 my-3" />
|
||||
|
||||
<Tooltip
|
||||
content={$i18n.t('Leave empty to use the default prompt, or enter a custom prompt')}
|
||||
placement="top-start"
|
||||
>
|
||||
<Textarea
|
||||
bind:value={taskConfig.TITLE_GENERATION_PROMPT_TEMPLATE}
|
||||
placeholder={$i18n.t(
|
||||
'Leave empty to use the default prompt, or enter a custom prompt'
|
||||
)}
|
||||
/>
|
||||
<div class="my-3 flex w-full items-center justify-between">
|
||||
<div class=" self-center text-xs font-medium">
|
||||
{$i18n.t('Title Generation')}
|
||||
</div>
|
||||
|
||||
<Tooltip content={$i18n.t('Enable title generation for chat messages')}>
|
||||
<Switch bind:state={taskConfig.ENABLE_TITLE_GENERATION} />
|
||||
</Tooltip>
|
||||
</div>
|
||||
|
||||
{#if taskConfig.ENABLE_TITLE_GENERATION}
|
||||
<div class="mt-3">
|
||||
<div class=" mb-2.5 text-xs font-medium">{$i18n.t('Title Generation Prompt')}</div>
|
||||
|
||||
<Tooltip
|
||||
content={$i18n.t('Leave empty to use the default prompt, or enter a custom prompt')}
|
||||
placement="top-start"
|
||||
>
|
||||
<Textarea
|
||||
bind:value={taskConfig.TITLE_GENERATION_PROMPT_TEMPLATE}
|
||||
placeholder={$i18n.t(
|
||||
'Leave empty to use the default prompt, or enter a custom prompt'
|
||||
)}
|
||||
/>
|
||||
</Tooltip>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="mt-3">
|
||||
<div class=" mb-2.5 text-xs font-medium">{$i18n.t('Image Prompt Generation Prompt')}</div>
|
||||
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "تمكين مشاركة المجتمع",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "النظام",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "محادثة النظام",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Разрешаване на споделяне в общност",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Система",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Системен Промпт",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "সিস্টেম",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "সিস্টেম প্রম্পট",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistema",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Madasig nga Sistema",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model vkládání nastaven na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Povolit sdílení komunity",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "System",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Systémový prompt",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Prompt pro generování značek",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Aktiver deling til Community",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "System",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Systemprompt",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "System very system",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "System Prompt much prompt",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Το μοντέλο ενσωμάτωσης έχει οριστεί σε \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Ενεργοποίηση Κοινοτικής Κοινής Χρήσης",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Σύστημα",
|
||||
"System Instructions": "Οδηγίες Συστήματος",
|
||||
"System Prompt": "Προτροπή Συστήματος",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Προτροπή Γενιάς Ετικετών",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Η δειγματοληψία Tail free χρησιμοποιείται για να μειώσει την επίδραση των λιγότερο πιθανών tokens από την έξοδο. Μια υψηλότερη τιμή (π.χ., 2.0) θα μειώσει την επίδραση περισσότερο, ενώ μια τιμή 1.0 απενεργοποιεί αυτή τη ρύθμιση. (προεπιλογή: 1)",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding eredua \"{{embedding_model}}\"-ra ezarri da",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Gaitu Komunitatearen Partekatzea",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistema",
|
||||
"System Instructions": "Sistema jarraibideak",
|
||||
"System Prompt": "Sistema prompta",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Etiketa sortzeko prompta",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Isats-libre laginketa erabiltzen da irteran probabilitate txikiagoko tokenen eragina murrizteko. Balio altuago batek (adib., 2.0) eragina gehiago murriztuko du, 1.0 balioak ezarpen hau desgaitzen duen bitartean. (lehenetsia: 1)",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "فعالسازی اشتراک انجمن",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "سیستم",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "پرامپت سیستم",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modèle d'encodage défini sur « {{embedding_model}} »",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Activer le partage communautaire",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Système",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Prompt du système",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "מערכת",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "תגובת מערכת",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "सिस्टम",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "सिस्टम प्रॉम्प्ट",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sustav",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Sistemski prompt",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Közösségi megosztás engedélyezése",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Rendszer",
|
||||
"System Instructions": "Rendszer utasítások",
|
||||
"System Prompt": "Rendszer prompt",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Címke generálási prompt",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistem",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Permintaan Sistem",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Abilita la condivisione della community",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistema",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Prompt di sistema",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "コミュニティ共有を有効にする",
|
||||
"Enable Google Drive": "Google Driveの有効化",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "システム",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "システムプロンプト",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ჩასმის ძირითადი პროგრამა ჩართულია \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "სისტემა",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "სისტემური მოთხოვნა",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
|
||||
"Enable API Key": "API 키 활성화",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "커뮤니티 공유 활성화",
|
||||
"Enable Google Drive": "Google Drive 활성화",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistema",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Sistemos užklausa",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistem",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Gesaan Sistem",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -928,6 +928,7 @@
|
||||
"System": "System",
|
||||
"System Instructions": "Systeminstruksjoner",
|
||||
"System Prompt": "Systemledetekst",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Ledetekst for genering av etikett",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Tail free sampling brukes til å redusere innvirkningen av mindre sannsynlige tokens fra utdataene. En høyere verdi (f.eks. 2,0) vil redusere effekten mer, mens en verdi på 1,0 deaktiverer denne innstillingen. (standard: 1)",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Delen via de community inschakelen",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Systeem",
|
||||
"System Instructions": "Systeem instructies",
|
||||
"System Prompt": "Systeem prompt",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Prompt voor taggeneratie",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bv. 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt. (standaard: 1)",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "ਸਿਸਟਮ",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "ਸਿਸਟਮ ਪ੍ਰੰਪਟ",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiono na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "System",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Prompt systemowy",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistema",
|
||||
"System Instructions": "Instruções do sistema",
|
||||
"System Prompt": "Prompt do Sistema",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Prompt para geração de Tags",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "A amostragem *tail free* é usada para reduzir o impacto de tokens menos prováveis na saída. Um valor mais alto (por exemplo, 2,0) reduzirá mais o impacto, enquanto um valor de 1,0 desativa essa configuração. (Padrão: 1)",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Active a Partilha da Comunidade",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistema",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Prompt do Sistema",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Activează Partajarea Comunitară",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Sistem",
|
||||
"System Instructions": "Instrucțiuni pentru sistem",
|
||||
"System Prompt": "Prompt de Sistem",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Generarea de Etichete Prompt",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -928,6 +928,7 @@
|
||||
"System": "Система",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Системный промпт",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model vkladania nastavený na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Povoliť zdieľanie komunity",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Systém",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Systémový prompt",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "Prompt na generovanie značiek",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Омогући дељење заједнице",
|
||||
"Enable Google Drive": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Aktivera community-delning",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "System",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Systeminstruktion",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "ระบบ",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "ระบบพรอมต์",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "سسٹم",
|
||||
"System Instructions": "نظام کی ہدایات",
|
||||
"System Prompt": "سسٹم پرومپٹ",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
@ -335,6 +335,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable title generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
|
||||
"Enable Google Drive": "",
|
||||
@ -928,6 +929,7 @@
|
||||
"System": "Hệ thống",
|
||||
"System Instructions": "",
|
||||
"System Prompt": "Prompt Hệ thống (System Prompt)",
|
||||
"Title Generation": "",
|
||||
"Tags Generation": "",
|
||||
"Tags Generation Prompt": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
|
Loading…
x
Reference in New Issue
Block a user