mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
Merge pull request #9370 from hurxxxx/feat/always-web-search
feat: Add "Always-On Web Search" configuration.
This commit is contained in:
commit
336984c254
@ -117,9 +117,8 @@
|
|||||||
|
|
||||||
let selectedToolIds = [];
|
let selectedToolIds = [];
|
||||||
let imageGenerationEnabled = false;
|
let imageGenerationEnabled = false;
|
||||||
|
let webSearchEnabled = $settings?.alwaysOnWebSearch ?? false;
|
||||||
let codeInterpreterEnabled = false;
|
let codeInterpreterEnabled = false;
|
||||||
let webSearchEnabled = false;
|
|
||||||
|
|
||||||
let chat = null;
|
let chat = null;
|
||||||
let tags = [];
|
let tags = [];
|
||||||
|
|
||||||
@ -144,7 +143,7 @@
|
|||||||
prompt = '';
|
prompt = '';
|
||||||
files = [];
|
files = [];
|
||||||
selectedToolIds = [];
|
selectedToolIds = [];
|
||||||
webSearchEnabled = false;
|
|
||||||
imageGenerationEnabled = false;
|
imageGenerationEnabled = false;
|
||||||
|
|
||||||
if (chatIdProp && (await loadChat())) {
|
if (chatIdProp && (await loadChat())) {
|
||||||
@ -719,6 +718,7 @@
|
|||||||
if ($page.url.searchParams.get('web-search') === 'true') {
|
if ($page.url.searchParams.get('web-search') === 'true') {
|
||||||
webSearchEnabled = true;
|
webSearchEnabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($page.url.searchParams.get('image-generation') === 'true') {
|
if ($page.url.searchParams.get('image-generation') === 'true') {
|
||||||
imageGenerationEnabled = true;
|
imageGenerationEnabled = true;
|
||||||
}
|
}
|
||||||
|
@ -52,6 +52,8 @@
|
|||||||
let voiceInterruption = false;
|
let voiceInterruption = false;
|
||||||
let hapticFeedback = false;
|
let hapticFeedback = false;
|
||||||
|
|
||||||
|
let alwaysOnWebSearch = false;
|
||||||
|
|
||||||
const toggleSplitLargeChunks = async () => {
|
const toggleSplitLargeChunks = async () => {
|
||||||
splitLargeChunks = !splitLargeChunks;
|
splitLargeChunks = !splitLargeChunks;
|
||||||
saveSettings({ splitLargeChunks: splitLargeChunks });
|
saveSettings({ splitLargeChunks: splitLargeChunks });
|
||||||
@ -198,6 +200,11 @@
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const toggleAlwaysOnWebSearch = async () => {
|
||||||
|
alwaysOnWebSearch = !alwaysOnWebSearch;
|
||||||
|
saveSettings({ alwaysOnWebSearch });
|
||||||
|
};
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
titleAutoGenerate = $settings?.title?.auto ?? true;
|
titleAutoGenerate = $settings?.title?.auto ?? true;
|
||||||
autoTags = $settings.autoTags ?? true;
|
autoTags = $settings.autoTags ?? true;
|
||||||
@ -235,6 +242,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
backgroundImageUrl = $settings.backgroundImageUrl ?? null;
|
backgroundImageUrl = $settings.backgroundImageUrl ?? null;
|
||||||
|
|
||||||
|
alwaysOnWebSearch = $settings.alwaysOnWebSearch ?? false;
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -666,6 +675,26 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div class=" py-0.5 flex w-full justify-between">
|
||||||
|
<div class=" self-center text-xs">{$i18n.t('Always-On Web Search')}</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="p-1 px-3 text-xs flex rounded transition"
|
||||||
|
on:click={() => {
|
||||||
|
toggleAlwaysOnWebSearch();
|
||||||
|
}}
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
{#if alwaysOnWebSearch === true}
|
||||||
|
<span class="ml-2 self-center">{$i18n.t('On')}</span>
|
||||||
|
{:else}
|
||||||
|
<span class="ml-2 self-center">{$i18n.t('Off')}</span>
|
||||||
|
{/if}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class=" my-1.5 text-sm font-medium">{$i18n.t('Voice')}</div>
|
<div class=" my-1.5 text-sm font-medium">{$i18n.t('Voice')}</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
@ -118,7 +118,8 @@
|
|||||||
'displayemoji',
|
'displayemoji',
|
||||||
'save',
|
'save',
|
||||||
'interfaceoptions',
|
'interfaceoptions',
|
||||||
'interfacecustomization'
|
'interfacecustomization',
|
||||||
|
'alwaysonwebsearch',
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "هل تملك حساب ؟",
|
"Already have an account?": "هل تملك حساب ؟",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "مساعد",
|
"an assistant": "مساعد",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Вече имате акаунт? ",
|
"Already have an account?": "Вече имате акаунт? ",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "асистент",
|
"an assistant": "асистент",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "আগে থেকেই একাউন্ট আছে?",
|
"Already have an account?": "আগে থেকেই একাউন্ট আছে?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "একটা এসিস্ট্যান্ট",
|
"an assistant": "একটা এসিস্ট্যান্ট",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "Punts d'accés permesos",
|
"Allowed Endpoints": "Punts d'accés permesos",
|
||||||
"Already have an account?": "Ja tens un compte?",
|
"Already have an account?": "Ja tens un compte?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Al·lucinant",
|
"Amazing": "Al·lucinant",
|
||||||
"an assistant": "un assistent",
|
"an assistant": "un assistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Naa na kay account ?",
|
"Already have an account?": "Naa na kay account ?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "usa ka katabang",
|
"an assistant": "usa ka katabang",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Už máte účet?",
|
"Already have an account?": "Už máte účet?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "asistent",
|
"an assistant": "asistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Har du allerede en profil?",
|
"Already have an account?": "Har du allerede en profil?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "en assistent",
|
"an assistant": "en assistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Haben Sie bereits einen Account?",
|
"Already have an account?": "Haben Sie bereits einen Account?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative zu top_p und zielt darauf ab, ein Gleichgewicht zwischen Qualität und Vielfalt zu gewährleisten. Der Parameter p repräsentiert die Mindestwahrscheinlichkeit für ein Token, um berücksichtigt zu werden, relativ zur Wahrscheinlichkeit des wahrscheinlichsten Tokens. Zum Beispiel, bei p=0.05 und das wahrscheinlichste Token hat eine Wahrscheinlichkeit von 0.9, werden Logits mit einem Wert von weniger als 0.045 herausgefiltert. (Standard: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative zu top_p und zielt darauf ab, ein Gleichgewicht zwischen Qualität und Vielfalt zu gewährleisten. Der Parameter p repräsentiert die Mindestwahrscheinlichkeit für ein Token, um berücksichtigt zu werden, relativ zur Wahrscheinlichkeit des wahrscheinlichsten Tokens. Zum Beispiel, bei p=0.05 und das wahrscheinlichste Token hat eine Wahrscheinlichkeit von 0.9, werden Logits mit einem Wert von weniger als 0.045 herausgefiltert. (Standard: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Fantastisch",
|
"Amazing": "Fantastisch",
|
||||||
"an assistant": "ein Assistent",
|
"an assistant": "ein Assistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Such account exists?",
|
"Already have an account?": "Such account exists?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "such assistant",
|
"an assistant": "such assistant",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Έχετε ήδη λογαριασμό;",
|
"Already have an account?": "Έχετε ήδη λογαριασμό;",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Εναλλακτικό στο top_p, και στοχεύει στη διασφάλιση μιας ισορροπίας μεταξύ ποιότητας και ποικιλίας. Η παράμετρος p αντιπροσωπεύει την ελάχιστη πιθανότητα για ένα token να θεωρηθεί, σε σχέση με την πιθανότητα του πιο πιθανού token. Για παράδειγμα, με p=0.05 και το πιο πιθανό token να έχει πιθανότητα 0.9, τα logits με τιμή μικρότερη από 0.045 φιλτράρονται. (Προεπιλογή: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Εναλλακτικό στο top_p, και στοχεύει στη διασφάλιση μιας ισορροπίας μεταξύ ποιότητας και ποικιλίας. Η παράμετρος p αντιπροσωπεύει την ελάχιστη πιθανότητα για ένα token να θεωρηθεί, σε σχέση με την πιθανότητα του πιο πιθανού token. Για παράδειγμα, με p=0.05 και το πιο πιθανό token να έχει πιθανότητα 0.9, τα logits με τιμή μικρότερη από 0.045 φιλτράρονται. (Προεπιλογή: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Καταπληκτικό",
|
"Amazing": "Καταπληκτικό",
|
||||||
"an assistant": "ένας βοηθός",
|
"an assistant": "ένας βοηθός",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "",
|
"Already have an account?": "",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "",
|
"an assistant": "",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "",
|
"Already have an account?": "",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "",
|
"an assistant": "",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "¿Ya tienes una cuenta?",
|
"Already have an account?": "¿Ya tienes una cuenta?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "un asistente",
|
"an assistant": "un asistente",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Baduzu kontu bat?",
|
"Already have an account?": "Baduzu kontu bat?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p-ren alternatiba, kalitate eta aniztasunaren arteko oreka bermatzea du helburu. p parametroak token bat kontuan hartzeko gutxieneko probabilitatea adierazten du, token probableenaren probabilitatearen arabera. Adibidez, p=0.05 balioarekin eta token probableenaren probabilitatea 0.9 denean, 0.045 baino balio txikiagoko logit-ak baztertzen dira. (Lehenetsia: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p-ren alternatiba, kalitate eta aniztasunaren arteko oreka bermatzea du helburu. p parametroak token bat kontuan hartzeko gutxieneko probabilitatea adierazten du, token probableenaren probabilitatearen arabera. Adibidez, p=0.05 balioarekin eta token probableenaren probabilitatea 0.9 denean, 0.045 baino balio txikiagoko logit-ak baztertzen dira. (Lehenetsia: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Harrigarria",
|
"Amazing": "Harrigarria",
|
||||||
"an assistant": "laguntzaile bat",
|
"an assistant": "laguntzaile bat",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "از قبل حساب کاربری دارید؟",
|
"Already have an account?": "از قبل حساب کاربری دارید؟",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "یک دستیار",
|
"an assistant": "یک دستیار",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Onko sinulla jo tili?",
|
"Already have an account?": "Onko sinulla jo tili?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Vaihtoehto top_p:lle, jolla pyritään varmistamaan laadun ja monipuolisuuden tasapaino. Parametri p edustaa pienintä todennäköisyyttä, jolla token otetaan huomioon suhteessa todennäköisimpään tokeniin. Esimerkiksi p=0.05 ja todennäköisin token todennäköisyydellä 0.9, arvoltaan alle 0.045 olevat logit suodatetaan pois. (Oletus: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Vaihtoehto top_p:lle, jolla pyritään varmistamaan laadun ja monipuolisuuden tasapaino. Parametri p edustaa pienintä todennäköisyyttä, jolla token otetaan huomioon suhteessa todennäköisimpään tokeniin. Esimerkiksi p=0.05 ja todennäköisin token todennäköisyydellä 0.9, arvoltaan alle 0.045 olevat logit suodatetaan pois. (Oletus: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Hämmästyttävä",
|
"Amazing": "Hämmästyttävä",
|
||||||
"an assistant": "avustaja",
|
"an assistant": "avustaja",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Avez-vous déjà un compte ?",
|
"Already have an account?": "Avez-vous déjà un compte ?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "un assistant",
|
"an assistant": "un assistant",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "Points de terminaison autorisés",
|
"Allowed Endpoints": "Points de terminaison autorisés",
|
||||||
"Already have an account?": "Avez-vous déjà un compte ?",
|
"Already have an account?": "Avez-vous déjà un compte ?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative au top_p, visant à assurer un équilibre entre qualité et variété. Le paramètre p représente la probabilité minimale pour qu'un token soit pris en compte, par rapport à la probabilité du token le plus probable. Par exemple, avec p=0.05 et le token le plus probable ayant une probabilité de 0.9, les logits ayant une valeur inférieure à 0.045 sont filtrés. (Par défaut : 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative au top_p, visant à assurer un équilibre entre qualité et variété. Le paramètre p représente la probabilité minimale pour qu'un token soit pris en compte, par rapport à la probabilité du token le plus probable. Par exemple, avec p=0.05 et le token le plus probable ayant une probabilité de 0.9, les logits ayant une valeur inférieure à 0.045 sont filtrés. (Par défaut : 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Incroyable",
|
"Amazing": "Incroyable",
|
||||||
"an assistant": "un assistant",
|
"an assistant": "un assistant",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "כבר יש לך חשבון?",
|
"Already have an account?": "כבר יש לך חשבון?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "עוזר",
|
"an assistant": "עוזר",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "क्या आपके पास पहले से एक खाता मौजूद है?",
|
"Already have an account?": "क्या आपके पास पहले से एक खाता मौजूद है?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "एक सहायक",
|
"an assistant": "एक सहायक",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Već imate račun?",
|
"Already have an account?": "Već imate račun?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "asistent",
|
"an assistant": "asistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Már van fiókod?",
|
"Already have an account?": "Már van fiókod?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "egy asszisztens",
|
"an assistant": "egy asszisztens",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Sudah memiliki akun?",
|
"Already have an account?": "Sudah memiliki akun?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "asisten",
|
"an assistant": "asisten",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "Críochphointí Ceadaithe",
|
"Allowed Endpoints": "Críochphointí Ceadaithe",
|
||||||
"Already have an account?": "Tá cuntas agat cheana féin?",
|
"Already have an account?": "Tá cuntas agat cheana féin?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Rogha eile seachas an top_p, agus tá sé mar aidhm aige cothromaíocht cáilíochta agus éagsúlachta a chinntiú. Léiríonn an paraiméadar p an dóchúlacht íosta go mbreithneofar comhartha, i gcoibhneas le dóchúlacht an chomhartha is dóichí. Mar shampla, le p=0.05 agus dóchúlacht 0.9 ag an comhartha is dóichí, déantar logits le luach níos lú ná 0.045 a scagadh amach. (Réamhshocrú: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Rogha eile seachas an top_p, agus tá sé mar aidhm aige cothromaíocht cáilíochta agus éagsúlachta a chinntiú. Léiríonn an paraiméadar p an dóchúlacht íosta go mbreithneofar comhartha, i gcoibhneas le dóchúlacht an chomhartha is dóichí. Mar shampla, le p=0.05 agus dóchúlacht 0.9 ag an comhartha is dóichí, déantar logits le luach níos lú ná 0.045 a scagadh amach. (Réamhshocrú: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Iontach",
|
"Amazing": "Iontach",
|
||||||
"an assistant": "cúntóir",
|
"an assistant": "cúntóir",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Hai già un account?",
|
"Already have an account?": "Hai già un account?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "un assistente",
|
"an assistant": "un assistente",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "すでにアカウントをお持ちですか?",
|
"Already have an account?": "すでにアカウントをお持ちですか?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "アシスタント",
|
"an assistant": "アシスタント",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "უკვე გაქვს ანგარიში?",
|
"Already have an account?": "უკვე გაქვს ანგარიში?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "ასისტენტი",
|
"an assistant": "ასისტენტი",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "이미 계정이 있으신가요?",
|
"Already have an account?": "이미 계정이 있으신가요?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "놀라움",
|
"Amazing": "놀라움",
|
||||||
"an assistant": "어시스턴트",
|
"an assistant": "어시스턴트",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Ar jau turite paskyrą?",
|
"Already have an account?": "Ar jau turite paskyrą?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "assistentas",
|
"an assistant": "assistentas",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Telah mempunyai akaun?",
|
"Already have an account?": "Telah mempunyai akaun?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "seorang pembantu",
|
"an assistant": "seorang pembantu",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Har du allerede en konto?",
|
"Already have an account?": "Har du allerede en konto?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativ til top_p, og har som mål å sikre en balanse mellom kvalitet og variasjon. Parameteren p representerer minimumssannsynligheten for at et token skal vurderes, i forhold til sannsynligheten for det mest sannsynlige tokenet. Hvis p for eksempel er 0,05 og det mest sannsynlige tokenet har en sannsynlighet på 0,9, filtreres logits med en verdi på mindre enn 0,045 bort. (Standard: 0,0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativ til top_p, og har som mål å sikre en balanse mellom kvalitet og variasjon. Parameteren p representerer minimumssannsynligheten for at et token skal vurderes, i forhold til sannsynligheten for det mest sannsynlige tokenet. Hvis p for eksempel er 0,05 og det mest sannsynlige tokenet har en sannsynlighet på 0,9, filtreres logits med en verdi på mindre enn 0,045 bort. (Standard: 0,0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Flott",
|
"Amazing": "Flott",
|
||||||
"an assistant": "en assistent",
|
"an assistant": "en assistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Heb je al een account?",
|
"Already have an account?": "Heb je al een account?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternatief voor de top_p, en streeft naar een evenwicht tussen kwaliteit en variatie. De parameter p vertegenwoordigt de minimumwaarschijnlijkheid dat een token in aanmerking wordt genomen, in verhouding tot de waarschijnlijkheid van het meest waarschijnlijke token. Bijvoorbeeld, met p=0.05 en de meest waarschijnlijke token met een waarschijnlijkheid van 0.9, worden logits met een waarde kleiner dan 0.045 uitgefilterd. (Standaard: 0,0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternatief voor de top_p, en streeft naar een evenwicht tussen kwaliteit en variatie. De parameter p vertegenwoordigt de minimumwaarschijnlijkheid dat een token in aanmerking wordt genomen, in verhouding tot de waarschijnlijkheid van het meest waarschijnlijke token. Bijvoorbeeld, met p=0.05 en de meest waarschijnlijke token met een waarschijnlijkheid van 0.9, worden logits met een waarde kleiner dan 0.045 uitgefilterd. (Standaard: 0,0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Geweldig",
|
"Amazing": "Geweldig",
|
||||||
"an assistant": "een assistent",
|
"an assistant": "een assistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "ਪਹਿਲਾਂ ਹੀ ਖਾਤਾ ਹੈ?",
|
"Already have an account?": "ਪਹਿਲਾਂ ਹੀ ਖਾਤਾ ਹੈ?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "ਇੱਕ ਸਹਾਇਕ",
|
"an assistant": "ਇੱਕ ਸਹਾਇਕ",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Masz już konto?",
|
"Already have an account?": "Masz już konto?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "asystent",
|
"an assistant": "asystent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Já tem uma conta?",
|
"Already have an account?": "Já tem uma conta?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa ao 'top_p', e visa garantir um equilíbrio entre qualidade e variedade. O parâmetro 'p' representa a probabilidade mínima para que um token seja considerado, em relação à probabilidade do token mais provável. Por exemplo, com 'p=0.05' e o token mais provável com probabilidade de '0.9', as predições com valor inferior a '0.045' são filtrados. (Default: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa ao 'top_p', e visa garantir um equilíbrio entre qualidade e variedade. O parâmetro 'p' representa a probabilidade mínima para que um token seja considerado, em relação à probabilidade do token mais provável. Por exemplo, com 'p=0.05' e o token mais provável com probabilidade de '0.9', as predições com valor inferior a '0.045' são filtrados. (Default: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Incrível",
|
"Amazing": "Incrível",
|
||||||
"an assistant": "um assistente",
|
"an assistant": "um assistente",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Já tem uma conta?",
|
"Already have an account?": "Já tem uma conta?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "um assistente",
|
"an assistant": "um assistente",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Deja ai un cont?",
|
"Already have an account?": "Deja ai un cont?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "un asistent",
|
"an assistant": "un asistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "У вас уже есть учетная запись?",
|
"Already have an account?": "У вас уже есть учетная запись?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Удивительный",
|
"Amazing": "Удивительный",
|
||||||
"an assistant": "ассистент",
|
"an assistant": "ассистент",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Už máte účet?",
|
"Already have an account?": "Už máte účet?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "asistent",
|
"an assistant": "asistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Већ имате налог?",
|
"Already have an account?": "Већ имате налог?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Невероватно",
|
"Amazing": "Невероватно",
|
||||||
"an assistant": "помоћник",
|
"an assistant": "помоћник",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Har du redan ett konto?",
|
"Already have an account?": "Har du redan ett konto?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "en assistent",
|
"an assistant": "en assistent",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "มีบัญชีอยู่แล้ว?",
|
"Already have an account?": "มีบัญชีอยู่แล้ว?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "ผู้ช่วย",
|
"an assistant": "ผู้ช่วย",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "",
|
"Already have an account?": "",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "",
|
"an assistant": "",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "İzin Verilen Uç Noktalar",
|
"Allowed Endpoints": "İzin Verilen Uç Noktalar",
|
||||||
"Already have an account?": "Zaten bir hesabınız mı var?",
|
"Already have an account?": "Zaten bir hesabınız mı var?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p'ye bir alternatif ve kalite ile çeşitlilik arasında bir denge sağlamayı amaçlar. p parametresi, en olası tokenin olasılığına göre, bir tokenin dikkate alınması için minimum olasılığı temsil eder. Örneğin, p=0.05 ve en olası tokenin 0.9 olasılığı ile 0.045'ten küçük bir değere sahip logitler filtrelenir. (Varsayılan: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p'ye bir alternatif ve kalite ile çeşitlilik arasında bir denge sağlamayı amaçlar. p parametresi, en olası tokenin olasılığına göre, bir tokenin dikkate alınması için minimum olasılığı temsil eder. Örneğin, p=0.05 ve en olası tokenin 0.9 olasılığı ile 0.045'ten küçük bir değere sahip logitler filtrelenir. (Varsayılan: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Harika",
|
"Amazing": "Harika",
|
||||||
"an assistant": "bir asistan",
|
"an assistant": "bir asistan",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "Дозволені кінцеві точки",
|
"Allowed Endpoints": "Дозволені кінцеві точки",
|
||||||
"Already have an account?": "Вже є обліковий запис?",
|
"Already have an account?": "Вже є обліковий запис?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Альтернатива параметру top_p, яка має на меті забезпечити баланс якості та різноманітності. Параметр p представляє мінімальну ймовірність для того, щоб токен був врахований, відносно ймовірності найбільш ймовірного токена. Наприклад, при p=0.05 і найбільш імовірному токені з ймовірністю 0.9, логіти зі значенням менше 0.045 будуть відфільтровані. (За замовчуванням: 0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Альтернатива параметру top_p, яка має на меті забезпечити баланс якості та різноманітності. Параметр p представляє мінімальну ймовірність для того, щоб токен був врахований, відносно ймовірності найбільш ймовірного токена. Наприклад, при p=0.05 і найбільш імовірному токені з ймовірністю 0.9, логіти зі значенням менше 0.045 будуть відфільтровані. (За замовчуванням: 0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "Чудово",
|
"Amazing": "Чудово",
|
||||||
"an assistant": "асистента",
|
"an assistant": "асистента",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "کیا پہلے سے اکاؤنٹ موجود ہے؟",
|
"Already have an account?": "کیا پہلے سے اکاؤنٹ موجود ہے؟",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "معاون",
|
"an assistant": "معاون",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "",
|
"Allowed Endpoints": "",
|
||||||
"Already have an account?": "Bạn đã có tài khoản?",
|
"Already have an account?": "Bạn đã có tài khoản?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "",
|
"Amazing": "",
|
||||||
"an assistant": "trợ lý",
|
"an assistant": "trợ lý",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "允许的端点",
|
"Allowed Endpoints": "允许的端点",
|
||||||
"Already have an account?": "已经拥有账号了?",
|
"Already have an account?": "已经拥有账号了?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p的替代方法,目标是在质量和多样性之间取得平衡。参数p表示一个token相对于最有可能的token所需的最低概率。比如,当p=0.05且最有可能的token概率为0.9时,概率低于0.045的logits会被排除。(默认值:0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p的替代方法,目标是在质量和多样性之间取得平衡。参数p表示一个token相对于最有可能的token所需的最低概率。比如,当p=0.05且最有可能的token概率为0.9时,概率低于0.045的logits会被排除。(默认值:0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "很棒",
|
"Amazing": "很棒",
|
||||||
"an assistant": "AI模型",
|
"an assistant": "AI模型",
|
||||||
"Analyzed": "已分析",
|
"Analyzed": "已分析",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
"Allowed Endpoints": "允許的端點",
|
"Allowed Endpoints": "允許的端點",
|
||||||
"Already have an account?": "已經有帳號了嗎?",
|
"Already have an account?": "已經有帳號了嗎?",
|
||||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "作為 top_p 的替代方案,旨在確保質量和多樣性的平衡。相對於最可能的 token 機率而言,參數 p 代表一個 token 被考慮在内的最低機率。例如,當 p=0.05 且最可能的 token 機率為 0.9 時,數值低於 0.045 的對數機率會被過濾掉。(預設值:0.0)",
|
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "作為 top_p 的替代方案,旨在確保質量和多樣性的平衡。相對於最可能的 token 機率而言,參數 p 代表一個 token 被考慮在内的最低機率。例如,當 p=0.05 且最可能的 token 機率為 0.9 時,數值低於 0.045 的對數機率會被過濾掉。(預設值:0.0)",
|
||||||
|
"Always-On Web Search": "",
|
||||||
"Amazing": "很棒",
|
"Amazing": "很棒",
|
||||||
"an assistant": "一位助手",
|
"an assistant": "一位助手",
|
||||||
"Analyzed": "",
|
"Analyzed": "",
|
||||||
|
Loading…
Reference in New Issue
Block a user