> ## Documentation Index
> Fetch the complete documentation index at: https://pagalba.bidrock.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Planas ir limitai

> Peržiūrėkite savo planą, šalis, naudotojų vietas ir DI pokalbių limitą.

export const LtUi = () => {
  useEffect(() => {
    if (typeof window === "undefined" || window.__bidrockLt) return;
    window.__bidrockLt = true;
    const T = {
      "Ask Assistant": "Klausti asistento",
      "Assistant": "Asistentas",
      "Responses are generated using AI and may contain mistakes.": "Atsakymus generuoja DI, jie gali būti netikslūs.",
      "Ask a question...": "Užduokite klausimą...",
      "Search...": "Ieškoti...",
      "On this page": "Šiame puslapyje",
      "Powered by": "Sukurta su",
      "Skip to main content": "Pereiti prie turinio",
      "Navigation": "Navigacija",
      "Was this page helpful?": "Ar šis puslapis buvo naudingas?",
      "Yes": "Taip",
      "No": "Ne",
      "Previous": "Ankstesnis",
      "Next": "Kitas",
      "Select": "Pasirinkti",
      "Open": "Atidaryti",
      "Close": "Uždaryti",
      "Copy page": "Kopijuoti puslapį",
      "Copy": "Kopijuoti",
      "Copied": "Nukopijuota",
      "Use the up and down arrow keys to select a result, Enter to open it, and Escape to close search.": "Rodyklėmis aukštyn ir žemyn pasirinkite rezultatą, Enter jį atidaro, Escape uždaro paiešką.",
      "Open search": "Atidaryti paiešką",
      "Toggle assistant panel": "Rodyti arba slėpti asistentą",
      "Maximize assistant panel": "Išdidinti asistentą",
      "Close assistant panel": "Uždaryti asistentą",
      "Change theme preference": "Keisti temą",
      "More actions": "Daugiau veiksmų",
      "Send message": "Siųsti žinutę",
      "Add attachment": "Pridėti priedą",
      "Pages": "Puslapiai",
      "Main": "Pagrindinis",
      "Can you tell me about": "Paklausti asistento:"
    };
    const R = [[/^Results: (\d+)$/, "Rezultatų: $1"], [/^Can you tell me about (.+)\?$/, "Ką žinai apie „$1“?"]];
    const tr = s => {
      const k = s.trim();
      if (!k) return null;
      if (T[k]) return s.replace(k, T[k]);
      for (const [re, to] of R) {
        if (re.test(k)) return s.replace(k, k.replace(re, to));
      }
      return null;
    };
    const A = ["placeholder", "aria-label", "title"];
    const run = () => {
      const w = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT);
      let n;
      while (n = w.nextNode()) {
        const p = n.parentElement;
        if (!p || p.closest("script,style,code,pre")) continue;
        const v = tr(n.nodeValue);
        if (v !== null && v !== n.nodeValue) n.nodeValue = v;
      }
      document.querySelectorAll("[placeholder],[aria-label],[title]").forEach(e => {
        A.forEach(a => {
          const o = e.getAttribute(a);
          if (!o) return;
          const v = tr(o);
          if (v !== null && v !== o) e.setAttribute(a, v);
        });
      });
    };
    const st = document.createElement("style");
    st.textContent = "#assistant-entry,#assistant-entry-mobile,.chat-assistant-floating-input,#chat-assistant-sheet,button[aria-label='Preview Widget']{display:none!important}";
    document.head.appendChild(st);
    window.addEventListener("keydown", e => {
      if ((e.metaKey || e.ctrlKey) && (e.key || "").toLowerCase() === "i") {
        e.preventDefault();
        e.stopImmediatePropagation();
      }
    }, true);
    const noAi = () => {
      document.querySelectorAll("[role=dialog] [role=group], [role=dialog] button").forEach(el => {
        if ((/^(Klausti asistento|Ask Assistant)/).test((el.innerText || "").trim())) el.style.display = "none";
      });
    };
    noAi();
    new MutationObserver(noAi).observe(document.body, {
      subtree: true,
      childList: true
    });
    document.documentElement.lang = "lt";
    run();
    let queued = false;
    new MutationObserver(() => {
      if (queued) return;
      queued = true;
      requestAnimationFrame(() => {
        queued = false;
        run();
      });
    }).observe(document.body, {
      subtree: true,
      childList: true,
      characterData: true,
      attributes: true,
      attributeFilter: A
    });
  }, []);
  return null;
};

<LtUi />

Jūsų planą ir jo limitus matysite skiltyje **Įmonės nustatymai** → **Planas ir atsiskaitymas**.

## Ką rodo plano skiltis

| Rodiklis               | Reikšmė                                                       |
| ---------------------- | ------------------------------------------------------------- |
| **Planas**             | Jūsų plano pavadinimas, pvz., PRO.                            |
| **Prenumeratos šalys** | Šalių, kurių pirkimus matote, sąrašas.                        |
| **Komandos nariai**    | Kiek naudotojų vietos užimta, pvz., *2 / 5*.                  |
| **DI pokalbiai**       | Kiek DI pokalbių panaudota iš plano limito, pvz., *16 / 250*. |

DI pokalbiai naudojami [pirkimo](/pirkimas/pirkimo-asistentas), plano ir sutarties asistentuose.

## Pakeiskite planą

Prieiga ir limitai nustatyti jūsų sutartyje. Jei norite pridėti šalių, komandos narių ar DI pokalbių, paspauskite **Susisiekti** arba parašykite mums per [kontaktų puslapį](https://bidrock.io/lt/contact).

<Card title="Bidrock kainos" icon="tag" href="https://bidrock.io/lt/pricing" horizontal>
  Palyginkite planus bidrock.io svetainėje.
</Card>
