diff --git a/latest/_images/graphviz-610e90df782db1efad7efaa950d71fe85e3a7eb0.png b/latest/_images/graphviz-610e90df782db1efad7efaa950d71fe85e3a7eb0.png deleted file mode 100644 index d961dc386..000000000 Binary files a/latest/_images/graphviz-610e90df782db1efad7efaa950d71fe85e3a7eb0.png and /dev/null differ diff --git a/latest/_images/graphviz-8ed5ee208bfc9bfd5e031d90f119d55a1266d476.png b/latest/_images/graphviz-8ed5ee208bfc9bfd5e031d90f119d55a1266d476.png new file mode 100644 index 000000000..6052b2121 Binary files /dev/null and b/latest/_images/graphviz-8ed5ee208bfc9bfd5e031d90f119d55a1266d476.png differ diff --git a/latest/_images/graphviz-610e90df782db1efad7efaa950d71fe85e3a7eb0.png.map b/latest/_images/graphviz-8ed5ee208bfc9bfd5e031d90f119d55a1266d476.png.map similarity index 100% rename from latest/_images/graphviz-610e90df782db1efad7efaa950d71fe85e3a7eb0.png.map rename to latest/_images/graphviz-8ed5ee208bfc9bfd5e031d90f119d55a1266d476.png.map diff --git a/latest/_sources/developer-guides/doc_guidelines.rst.txt b/latest/_sources/developer-guides/doc_guidelines.rst.txt index dcaf0ff14..1aab78388 100644 --- a/latest/_sources/developer-guides/doc_guidelines.rst.txt +++ b/latest/_sources/developer-guides/doc_guidelines.rst.txt @@ -3,20 +3,20 @@ Documentation Guidelines ######################## -OPEA Project content is written using the `markdown`_ (``.md``) with `MyST extensions`_ and `reStructuredText`_ markup -language (``.rst``) with `Sphinx extensions`_, and processed +OPEA Project content is written using the `markdown`_ (``.md``) with `MyST extensions`_ +and `reStructuredText`_ markup language (``.rst``) with `Sphinx extensions`_, and processed using `Sphinx`_ to create a formatted stand-alone website. Developers can -view this content either in its raw form as ``.md`` and ``.rst`` markup files, or (with -Sphinx installed) they can build the documentation using the Makefile -(on Linux systems) to generate the HTML content. The HTML content can then be -viewed using a web browser. These ``.md`` and ``.rst`` files are maintained in -the project's GitHub repos and processed to create the -`OPEA Project documentation`_ website. +view this content either in its raw form as ``.md`` and ``.rst`` markup files, or +build the documentation locally following the :ref:`opea_doc_generation` instructions. +The HTML content can then be viewed using a web browser. These ``.md`` and +``.rst`` files are maintained in the project's GitHub repos and processed to +create the `OPEA Project documentation`_ website. .. note:: While GitHub supports viewing `.md` and `.rst` content with your browser on the `github.com` site, markdown and reST extensions are not recognized there, so the best viewing experience is through the `OPEA Project documentation`_ github.io - website. + website. The github.io site also provides navigation and searching that makes + it easier to find and read what you're looking for. You can read details about `reStructuredText`_ and `Sphinx extensions`_, and `markdown`_ and `MyST extensions`_ from their respective websites. @@ -31,14 +31,15 @@ You can read details about `reStructuredText`_ and `Sphinx extensions`_, and This document provides a quick reference for commonly used markdown and reST with MyST and Sphinx-defined directives and roles used to create the documentation -you're reading. +you're reading. It also provides best-known-methods for working with a mixture +of reStructuredText and markdown. Markdown vs. RestructuredText ***************************** Both markdown and ReStructureText (reST) let you create individual documentation files that GitHub can render when viewing them in your browser on github.com. Markdown is -popular because of it's familarity with developers and is the default markup +popular because of it's familiarity with developers and is the default markup language for StackOverflow, Reddit, GitHub, and others. ReStructuredText came from the Python community in 2001 and became noticed outside that community with the release of Sphinx in 2008. These days, reST is supported by GitHub @@ -47,7 +48,7 @@ OpenCV and LLVM/Clang. ReStructuredText is more fully-featured, much more standardized and uniform, and has built-in support for extensions. The markdown language has no standard way -to implement complete documentation systems and doesnt have a standard extension +to implement complete documentation systems and doesn't have a standard extension mechanism, which leads to many different "flavors" of markdown. If you stick to the core and common markdown syntax (headings, paragraphs, lists, and such), using markdown is just fine. However, slipping in raw HTML to do formatting @@ -59,15 +60,15 @@ markdown content within the OPEA project. Within the OPEA documentation, we use both markdown and reST files for the documentation "leaves". We rely on reST for the documentation organization trunk and -branches, through the use of the reST toctree directives. +branches, through the use of the reST ``toctree`` directives. Documentation Organization ************************** Documentation is maintained and updated the same as the project's code within -the opea-project GitHub repos. There are many ``README.md`` files within the various +the opea-project GitHub repos. There are many ``README.md`` and other markdown files within the various repos along with the other files for those components. This is good because it -keeps the relevent documentation and code for that component together. +keeps the relevant documentation and code for that component together. We use the ``docs`` repo to organize the presentation of all these ``README.md`` files, along with other project related documents that are maintained in the @@ -79,6 +80,9 @@ directive to point to other documents that may include additional ``toctree`` directives of their own, ultimately collecting all the content into an organizational structure you can navigate. +Ultimately every document file (``.md`` and ``.rst``) in the project must appear +in the ``toctree`` hierarchy. An orphan document file will be flagged by Sphinx +as not included in a toctree directive. Headings ******** @@ -156,7 +160,8 @@ Headings intervening H2 ``##``. You may skip heading levels on the way back up, for example, from an H4 ``####`` back up to an H2 ``##`` as appropriate. - + Sphinx will complain if it finds multiple H1 headings or if you skip a + heading level. Content Highlighting @@ -180,12 +185,12 @@ Some common reST and markdown inline markup samples: .. group-tab:: markdown - * one back quote: ```text``` for `inline code` samples. + * one back quote: ```text``` for ``inline code`` samples. For inline markup, the characters between the beginning and ending characters must not start or end with a space, so ``*this is italics*``, (*this is italics*) while ``* this isn't*`` -(* this isn't*). +(* this isn't*) because of that extra space after the first asterisk. If an asterisk or back quote appears in running text and could be confused with inline markup delimiters, you can eliminate the confusion by adding a @@ -203,16 +208,46 @@ should be indented at the same level as the preceding paragraph (and not indented itself). For numbered lists -start with a ``1.`` or ``a)`` for example, and continue with autonumbering by -using a ``#`` sign and a ``.`` or ``)`` as used in the first list item. +start with a ``1.`` or ``a.`` for example, and continue with autonumbering by +using a ``#`` sign and a ``.`` as used in the first list item. Indent continuation lines with spaces to align with the text of first list item: +It's important to maintain the indentation of content under a list so in the +generated HTML, the content looks like it's part of that list and not a new +paragraph outside of that list. + +For example, compare this: + +----- + +* Here's a bullet list item + +Here's a paragraph that should be part of that first bullet list item's content. + +* Here's a second bullet list item + +----- + +Notice how that middle paragraph is out-dented from the bullet list compared +with this next example where it's not (yes, it's subtle): + +----- + +* Here's a bullet list item + + Here's a paragraph that does look like it's part of that first bullet list item's content because it's indented in the source. + +* Here's a second bullet list item + +----- + + .. code-block:: rest * This is a bulleted list. * It has two items, the second - item and has more than one line of reST text. Additional lines + item and has more than one line of text. Additional lines are indented to the first character of the text of the bullet list. @@ -220,9 +255,9 @@ list item: it would be a continuation of the previous list (or paragraph). #. It has two items too. - a) This is a numbered list using alphabetic list headings - #) It has three items (and uses autonumbering for the rest of the list) - #) Here's the third item. Use consistent punctuation on the list + a. This is a numbered list using alphabetic list headings + #. It has three items (and uses autonumbering for the rest of the list) + #. Here's the third item. Use consistent punctuation on the list number. #. This is an autonumbered list (default is to use numbers starting @@ -234,74 +269,87 @@ list item: #. And a second item back in the containing list. No blank line needed, but it wouldn't hurt for readability. -Definition lists (with one or more terms and their definition) are a -convenient way to document a word or phrase with an explanation. For example, -this reST content: +.. tabs:: -.. code-block:: rest + .. group-tab:: reST - The Makefile has targets that include: + Definition lists (with one or more terms and their definition) are a + convenient way to document a word or phrase with an explanation. For example, + this reST content: - ``html`` - Build the HTML output for the project + .. code-block:: rest + + The Makefile has targets that include: + + ``html`` + Build the HTML output for the project - ``clean`` - Remove all generated output, restoring the folders to a - clean state. + ``clean`` + Remove all generated output, restoring the folders to a + clean state. -Would be rendered as: + Would be rendered as: - The Makefile has targets that include: + The Makefile has targets that include: - html - Build the HTML output for the project + html + Build the HTML output for the project + + clean + Remove all generated output, restoring the folders to a + clean state. + + .. group-tab:: markdown - clean - Remove all generated output, restoring the folders to a - clean state. + Definition lists aren't directly supported by markdown. Multi-Column Lists ****************** -In reST, if you have a long bullet list of items, where each item is short, you can -indicate that the list items should be rendered in multiple columns with a -special ``.. rst-class:: rst-columns`` directive. The directive will apply to -the next non-comment element (for example, paragraph) or to content indented under -the directive. For example, this unordered list:: - - .. rst-class:: rst-columns - - * A list of - * short items - * that should be - * displayed - * horizontally - * so it doesn't - * use up so much - * space on - * the page - -would be rendered as: - -.. rst-class:: rst-columns - - * A list of - * short items - * that should be - * displayed - * horizontally - * so it doesn't - * use up so much - * space on - * the page - -A maximum of three columns will be displayed if you use ``rst-columns`` -(or ``rst-columns3``), and two columns for ``rst-columns2``. The number -of columns displayed can be reduced based on the available width of the -display window, reducing to one column on narrow (phone) screens if necessary. - -.. note:: We've deprecated use of the ``hlist`` directive because it - misbehaves on smaller screens. +.. tabs:: + + .. group-tab:: reST + + In reST, if you have a long bullet list of items, where each item is short, you can + indicate that the list items should be rendered in multiple columns with a + special ``.. rst-class:: rst-columns`` directive. The directive will apply to + the next non-comment element (for example, paragraph) or to content indented under + the directive. For example, this unordered list:: + + .. rst-class:: rst-columns + + * A list of + * short items + * that should be + * displayed + * horizontally + * so it doesn't + * use up so much + * space on + * the page + + would be rendered as: + + .. rst-class:: rst-columns + + * A list of + * short items + * that should be + * displayed + * horizontally + * so it doesn't + * use up so much + * space on + * the page + + A maximum of three columns will be displayed if you use ``rst-columns`` + (or ``rst-columns3``), and two columns for ``rst-columns2``. The number + of columns displayed can be reduced based on the available width of the + display window, reducing to one column on narrow (phone) screens if necessary. + + .. group-tab:: markdown + + Multi-column lists aren't directly supported by markdown. Tables ****** @@ -311,7 +359,8 @@ There are a few ways to create tables, each with their limitations or quirks. `_ offer the most capability for defining merged rows and columns (where content spans multiple rows or columns, but are hard to maintain because the grid -characters must be aligned throughout the table:: +characters must be aligned throughout the table. They are supported in both +reST and markdown:: +------------------------+------------+----------+----------+ | Header row, column 1 | Header 2 | Header 3 | Header 4 | @@ -341,46 +390,69 @@ This example would render as: | body row 4 | ... | ... | too | +------------------------+------------+----------+----------+ -For reST, `List tables -`_ -are much easier to maintain, but don't support row or column spans:: +.. tabs:: + + .. group-tab:: reST - .. list-table:: Table title - :widths: 15 20 40 - :header-rows: 1 + For reST, `List tables `_ + are much easier to maintain, but don't support row or column spans:: + + .. list-table:: Table title + :widths: 15 20 40 + :header-rows: 1 + + * - Heading 1 + - Heading 2 + - Heading 3 + * - body row 1, column 1 + - body row 1, column 2 + - body row 1, column 3 + * - body row 2, column 1 + - body row 2, column 2 + - body row 2, column 3 + + This example would render as: + + .. list-table:: Table title + :widths: 15 20 40 + :header-rows: 1 + + * - Heading 1 + - Heading 2 + - Heading 3 + * - body row 1, column 1 + - body row 1, column 2 + - body row 1, column 3 + * - body row 2, column 1 + - body row 2, column 2 + - body row 2, column 3 + + The ``:widths:`` parameter lets you define relative column widths. The + default is equal column widths. If you have a three-column table and you + want the first column to be half as wide as the other two equal-width + columns, you can specify ``:widths: 1 2 2``. If you'd like the browser + to set the column widths automatically based on the column contents, you + can use ``:widths: auto``. - * - Heading 1 - - Heading 2 - - Heading 3 - * - body row 1, column 1 - - body row 1, column 2 - - body row 1, column 3 - * - body row 2, column 1 - - body row 2, column 2 - - body row 2, column 3 + .. group-tab:: markdown -This example would render as: + Markdown also supports a more free-form table syntax where the rigid box + alignment is greatly simplified as explained in + `markdown tables `_. + Use three or more hyphens ``---`` to denote each column's header, and use + pipes ``|`` to separate each column. For compatibility you should also + add a pipe on both ends of the row:: + + | heading 1 | heading 2 | heading 3 | + |---|---|---| + |row 1 column 1 | row 1 column 2 | yes, it's row 1 column 3| + |row 2 col 1 | row 2 column 2 | row 2 col 3 | + + That would be rendered as: + + .. include:: mdtable.txt + :parser: myst_parser.sphinx_ -.. list-table:: Table title - :widths: 15 20 40 - :header-rows: 1 - - * - Heading 1 - - Heading 2 - - Heading 3 - * - body row 1, column 1 - - body row 1, column 2 - - body row 1, column 3 - * - body row 2, column 1 - - body row 2, column 2 - - body row 2, column 3 - -The ``:widths:`` parameter lets you define relative column widths. The -default is equal column widths. If you have a three-column table and you -want the first column to be half as wide as the other two equal-width -columns, you can specify ``:widths: 1 2 2``. If you'd like the browser -to set the column widths automatically based on the column contents, you -can use ``:widths: auto``. File Names and Commands *********************** @@ -512,11 +584,55 @@ Internal Cross-Reference Linking ``:ref:`alternate text ``` (renders as :ref:`alternate text `). + Linking from a reST document to a markdown document is done using the reST + ``:doc:`` role, and using the path to the markdown file leaving off the + ``.md`` file extension. For example:: + + Refer to the :doc:`/GenAIExamples/supported_examples` list for details. + + Note that all the markdown files from all the repos are available with + this syntax because we copy all those files into the doc building folder + under a top-level directory with that repo's name. Markdown files in the + docs repo don't use the ``docs`` repo name as the path root but use ``/`` + instead. So to link to the contribution guide markdown file found in the + docs repo community directory you would use ``:doc:`Contribution Guide + ```. Notice you can change the link text using + the normal reST role syntax shown here. + .. group-tab:: markdown - TODO + Markdown supports linking to other documents using the ``[link text](link path)``. + For example to link to a document within the same repo, a relative path is + used:: + + Refer to [Kubernetes deployment](./kubernetes/intel/README_gmc.md) + + That reference is rendered as a reference to the README_gmc.html found in + the directory ``kubernetes/intel`` relative to the document doing the + linking. + + References to documents in other repos within the OPEA project are made + using an URL to the document in the github.com repo as it would be found + in a web browser. For example, from a markdown document in the + GenAIExamples repo referencing a document in the GenAIInfra repo:: + + Refer to the [DocSum helm chart](https://github.com/opea-project/GenAIInfra/tree/main/helm-charts/docsum/README.md) + for instructions on deploying DocSum into Kubernetes on Xeon & Gaudi. + + That reference would be rendered into a reference to the + https://opea-project.github.io/GenAIInfra/helm-charts/docsum/README.html + document within the github.io website. + + Markdown supports linking to a reST document by using the Myst syntax that + mimics the way reST documents link to each other using the ``:ref:`` role + and using the label at the beginning of the reST document. For example:: + {ref}`ChatQnA Example Deployment Options ` + The ChatQnA example deployment options document found at + ``examples/ChatQnA/deploy/index.rst`` has that + ``chatqna-example-deployment`` label at the top we can + reference instead of knowing the path to the document. Non-ASCII Characters ******************** @@ -575,11 +691,11 @@ markdown content by using an ``include`` directive. ``:parser: myst_parser.sphinx_`` if the included file is markdown. \:start-after\: text - Only the content after the first occurance of the specified ``text`` in + Only the content after the first occurrence of the specified ``text`` in the external file will be included. \:end-before\: - Only the content before the first occurance of the specified ``text`` + Only the content before the first occurrence of the specified ``text`` in the external file will be included. These and other options described in the `docutils include directive `_ @@ -824,7 +940,7 @@ Drawings text description language to render drawings. For more information, see :ref:`graphviz-examples`. - We'v ealso included an extension providing ``mermaid`` support that also enables + We've also included an extension providing ``mermaid`` support that also enables that text description language to render drawings using:: .. mermaid:: @@ -877,7 +993,7 @@ Drawings Alternative Tabbed Content ************************** -In ResST, instead of creating multiple documents with common material except for some +In reST, instead of creating multiple documents with common material except for some specific sections, you can write one document and provide alternative content to the reader via a tabbed interface. When the reader clicks a tab, the content for that tab is displayed. For example:: diff --git a/latest/_sources/developer-guides/docbuild.rst.txt b/latest/_sources/developer-guides/docbuild.rst.txt index 2bb456e53..dffdf0fe0 100644 --- a/latest/_sources/developer-guides/docbuild.rst.txt +++ b/latest/_sources/developer-guides/docbuild.rst.txt @@ -15,33 +15,60 @@ Documentation Overview ********************** OPEA project content is written using combination of markdown (``.md``) and -reStructuredText (``.rst``) markup languages (with Sphinx extensions), and -processed using Sphinx to create a formatted stand-alone website. Developers can -view this content either in its raw form as .rst markup files, or you can -generate the HTML content and view it with a web browser directly on your -workstation. The best reading experience is by viewing the generated HTML at +reStructuredText (``.rst``) markup languages (with Sphinx extensions such as +`Myst `_), and +processed using Sphinx to create a formatted stand-alone website. +The best reading experience is by viewing the generated HTML at https://opea-project.github.io. +While working on new content or editing existing content, developers can +generate the HTML content locally and view it with a web browser. You can read details about `markdown`_, `reStructuredText`_, and `Sphinx`_ from their respective websites. -The project's documentation contains the following items: - -* ReStructuredText and markdown source files used to generate documentation found at the - https://opea-project.github.io website. All of the documentation sources - are found in the ``github.com/opea-project`` repos, rooted in the ``docs`` repo. - There's also documentation in the repos where the project's code is - maintained: ``GenAIComps``, ``GenAIEval``, ``GenAIExamples``, and ``GenAIInfra``. +The project's documentation is a collection of ReStructuredText and markdown +source files used to generate documentation found at the +https://opea-project.github.io website. All of the documentation sources are +found in the ``github.com/opea-project`` project repos, organized and rooted in +the ``docs`` repo. Much of the detailed documentation lives in the repos where +the project's code is maintained: ``GenAIComps``, ``GenAIEval``, +``GenAIExamples``, and ``GenAIInfra``. The documentation generation process +collects all the needed files from all these repos into one building area to +create the final generated HTML. .. graphviz:: images/doc-gen-flow.dot :align: center :caption: Documentation Generation Flow +Some content is manipulated or generated during the doc build process: + +- Because markdown doesn't directly support cross-repo document linking, we use + full URLs to link to the markdown files in other project repos, for example a + link to a document in the GenAIInfra repo from a document in the GenAIExamples + repo would look like this: + + ``` + See [GMC Install](https://github.com/opea-project/GenAIInfra/tree/main/microservices-connector/README.md). + ``` + + That link works when reading the markdown file in the github.com repo, but + should be changed to reference the generated HTML file in the github.io + rendering. + +- When new examples appear in the GenAIExamples repo, the indexing page that + lists all the examples is updated automatically by generating it at doc build + time by scanning the directory structure. The list of microservices is also + self-updated when new microservices are added to the GenAIComps/comps + directory. + +- References in markdown files to markdown files (.md file extension) are + converted to the corresponding generated HTML files by Sphinx using the Myst and + sphinx-md extensions. Set Up the Documentation Working Folders **************************************** -You'll need ``git`` installed to get the working folders set up: +To begin, you'll need ``git`` installed to get the working folders set up: * For an Ubuntu development system use: @@ -50,7 +77,7 @@ You'll need ``git`` installed to get the working folders set up: sudo apt install git Here's the recommended folder setup for documentation contributions and -generation, a parent folder called ``opea-project`` holds six locally +generation, a parent folder called ``opea-project`` holds five locally cloned repos from the opea-project. You can use a different name for the parent folder but the doc build process assumes the repo names are as shown here: @@ -62,11 +89,9 @@ folder but the doc build process assumes the repo names are as shown here: ├── GenAIEval ├── GenAIExamples ├── GenAIInfra - ├── opea-project.github.io The parent ``opea-project`` folder is there to organize the cloned repos -from the project. If you have repo publishing rights, we'll also be cloning the -publishing repo opea-project.github.io later in these steps. +from the project. In the following steps, you'll create a fork of all the upstream OPEA project repos needed to build the documentation to your personal GitHub account, clone @@ -81,8 +106,8 @@ structure: :align: center :class: drop-shadow -#. At a command prompt, create a working folder on your development computer and - clone your personal ``docs`` repository: +#. At a command prompt, create the top working folder on your development + computer and clone your personal ``docs`` repository there: .. code-block:: bash @@ -97,21 +122,23 @@ structure: cd docs git remote add upstream https://github.com/opea-project/docs.git - After that, you'll have ``origin`` pointing to your cloned personal repo and - ``upstream`` pointing to the project repo. + After that, you'll have ``origin`` pointing to your cloned personal ``docs`` + repo and ``upstream`` pointing to the project ``docs`` repo. + +#. Return to the parent directory with ``cd ..`` -#. Do the same steps (fork to your personal account, clone to your local - computer, and setup the git upstream remote) for the other repos containing - project documentation, replacing the docs.git repo name in the previous step +#. Now do the same steps (fork to your personal account, clone to your local + computer, and setup the git upstream remote) for the other four repos + replacing the docs.git repo name in the previous step with the appropriate repo name in this list: - * GenAIComps - * GenAIEval - * GenAIExamples - * GenAIInfra + * ``GenAIComps`` + * ``GenAIEval`` + * ``GenAIExamples`` + * ``GenAIInfra`` -#. If you haven't done so already, be sure to configure git with your name +#. If you haven't done so already, configure git with your name and email address for the ``Signed-off-by`` line in your commit messages: .. code-block:: bash @@ -122,7 +149,8 @@ structure: Install the Documentation Tools ******************************* -Our documentation processing has been tested to run with Python 3.8.10 and +Our documentation processing has been tested to run on Ubuntu (both natively and +in Windows Subsystem for Windows (wsl) with Python 3.8.10 and later, and these other tools: * sphinx version: 7.3.0 @@ -130,13 +158,17 @@ later, and these other tools: * sphinx-rtd-theme version: 2.0.0 * sphinx-tabs version: 3.4.5 * myst-parser version: 3.0.1 +* sphinx-md version: 0.0.3 * sphinxcontrib-mermaid version: 0.9.2 * pymarkdownlnt version: 0.9.21 -Depending on your Linux version, install the needed tools. You should consider -using the `Python virtual environment`_ -tools to maintain your Python environment from being changed by other work on -your computer. +Depending on your Linux version, install the needed tools. + +.. important:: + + You should consider using the `Python virtual environment`_ tools + to maintain your Python environment from being changed by other work on your + computer. .. _Python virtual environment: https://https://docs.python.org/3/library/venv.html @@ -203,8 +235,8 @@ Sphinx supports easy customization of the generated HTML documentation appearance through the use of themes. The ``sphinx-rtd-theme`` (Read The Docs) theme is installed as part of the ``requirements.txt`` list above. Tweaks to the standard ``read-the-docs`` appearance are added by using CSS and JavaScript -customization found in ``doc/_static``, and theme template overrides found in -``doc/_templates``. If you change to another theme, you'll need to tweak +customization found in ``doc/sphinx/_static``, and theme template overrides found in +``doc/sphinx/_templates``. If you change to another theme, you'll need to tweak these customizations, not something for the faint of heart. The Sphinx build system creates document cache information that attempts to @@ -216,39 +248,53 @@ environment and a ``make html`` again generally fixes these issues. Run the Documentation Processors ******************************** -The ``docs`` folder (with all cloned sibling repos) have all the doc source files, +The ``docs`` folder (with all the cloned sibling repos) have all the doc source files, images, extra tools, and ``Makefile`` for generating a local copy of the OPEA technical documentation. It's best to start with a clean doc-build environment so use ``make clean`` to remove the ``_build`` working folder if it exists. The ``Makefile`` creates the ``_build`` folder (if it doesn't exist) and copies all needed files from these cloned repos into the ``_build/rst`` working folder. +Normally you'd have each repo checked out at the main branch before you run the +``make html`` step. The doc build process uses the five repo's contents to +create the HTML site. If you're working on changes to documentation in a repo +and have those changes on a branch other than main, you can still generate the +documentation with that branch's changes -- this is how you can verify your +changes will not generate errors when your branch with changes is merged with +the main branch. + .. code-block:: bash cd ~/opea-project/docs make clean make html -Depending on your development system, it will take less a minute to collect and +Depending on your development system, it will take about a minute to collect and generate the HTML content. When done, you can view the HTML output in ``~/opea-project/docs/_build/html/index.html``. As a convenience, there's a make target that will ``cd`` to the ``_build/html`` -folder and run a local Python web server: +folder and run a local Python web server on port 8000: .. code-block:: bash make server -and use your web browser to open the URL: ``http://localhost:8000``. When +Use your web browser to open the URL: ``http://localhost:8000`` and wander +around your local site and view the results of your changes. When done, press :kbd:`ctrl-C` in your command-prompt window to stop the web server. +If things look good, you'd proceed to using git (``git add .``) to add and commit +(``git commit -s``) your changes, push those changes to your personal forked +repo (``git push origin ``) and submit a PR using the GitHub web +interface. + Publish Content *************** -If you have merge rights to the opea-project repo called -``opea-project.github.io``, you can update the public project documentation -found at https://opea-project.github.io. +If you have merge rights to the opea-project ``opea-project.github.io`` repo, +you can update the public project documentation found at +https://opea-project.github.io. You'll need to do a one-time clone of the upstream repo (we publish directly to the upstream repo rather than to a personal forked copy): @@ -269,10 +315,10 @@ This uses git commands to synchronize the new content with what's already published and will delete files in the publishing repo's **latest** folder that are no longer needed. New or changed files from the newly-generated HTML content are pushed to the GitHub pages -publishing repo. The public site at https://opea-project.github.io will -be automatically updated by the `GitHub pages system -`_, typically within a few -minutes. +publishing repo (``opea-project.github.io.git``. The public site at +https://opea-project.github.io will be automatically updated by the +`GitHub pages system `_, +typically within a few minutes. Document Versioning ******************* @@ -290,8 +336,7 @@ specifically something like this: 'docs_title': docs_title, 'is_release': is_release, 'versions': ( ("latest", "/latest/"), - ("0.8", "/0.8/"), - ("0.7", "/0.7/"), + ("1.0", "/1.0/"), ) } @@ -304,12 +349,12 @@ version from an older one, without going to ``latest`` first. By default, documentation build and publishing both assume we're generating documentation for the main branch and publishing to the ``/latest/`` area on https://opea-project.github.io. When we're generating the documentation for a -tagged version (e.g., 0.8), check out that version of **all** the component +tagged version (e.g., 1.0), check out that version of **all** the component repos, and add some extra flags to the ``make`` commands: .. code-block:: bash - version=0.8 + version=1.0 for d in docs GenAIComps GenAIExamples GenAIEval GenAIInfra ; do cd ~/opea-project/$d git checkout $version @@ -355,7 +400,7 @@ a heading level problem on lines 5 and 111 in If you do a ``make html`` without first doing a ``make clean``, there may be files left behind from a previous build that can cause some unexpected messages -to be reported. +to be reported. If things look suspicious, do a ``make clean;make html`` again. If all messages were filtered away, the build process will report as successful, reporting: @@ -369,9 +414,16 @@ The output from the Sphinx build is processed by the Python script configuration files in the ``.known-issues`` folder. (This filtering is done as part of the ``Makefile``.) -You can modify the filtering by adding or editing a conf file in the +The filtering tool matches and removes whole line and multi-line patterns to +remove them. Anything left behind is considered a message that should be +reported. You can modify the filtering by adding or editing a conf file in the ``.known-issues`` folder, following the examples found there. +Multi-line patterns can get rather complex. We're not using any multi-line patterns in +the OPEA project. You can see complex examples in other open source projects +using this filtering script, such as pattern files in +`Project ACRN .known-issues `_. + .. _reStructuredText: https://sphinx-doc.org/rest.html .. _markdown: https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax .. _Sphinx: https://sphinx-doc.org/ diff --git a/latest/developer-guides/doc_guidelines.html b/latest/developer-guides/doc_guidelines.html index 2e60faecb..275fb365d 100644 --- a/latest/developer-guides/doc_guidelines.html +++ b/latest/developer-guides/doc_guidelines.html @@ -810,32 +810,33 @@

Documentation Guidelines

-

OPEA Project content is written using the markdown (.md) with MyST extensions and reStructuredText markup -language (.rst) with Sphinx extensions, and processed +

OPEA Project content is written using the markdown (.md) with MyST extensions +and reStructuredText markup language (.rst) with Sphinx extensions, and processed using Sphinx to create a formatted stand-alone website. Developers can -view this content either in its raw form as .md and .rst markup files, or (with -Sphinx installed) they can build the documentation using the Makefile -(on Linux systems) to generate the HTML content. The HTML content can then be -viewed using a web browser. These .md and .rst files are maintained in -the project’s GitHub repos and processed to create the -OPEA Project documentation website.

+view this content either in its raw form as .md and .rst markup files, or +build the documentation locally following the OPEA Documentation Generation instructions. +The HTML content can then be viewed using a web browser. These .md and +.rst files are maintained in the project’s GitHub repos and processed to +create the OPEA Project documentation website.

Note

While GitHub supports viewing .md and .rst content with your browser on the github.com site, markdown and reST extensions are not recognized there, so the best viewing experience is through the OPEA Project documentation github.io -website.

+website. The github.io site also provides navigation and searching that makes +it easier to find and read what you’re looking for.

You can read details about reStructuredText and Sphinx extensions, and markdown and MyST extensions from their respective websites.

This document provides a quick reference for commonly used markdown and reST with MyST and Sphinx-defined directives and roles used to create the documentation -you’re reading.

+you’re reading. It also provides best-known-methods for working with a mixture +of reStructuredText and markdown.

Markdown vs. RestructuredText

Both markdown and ReStructureText (reST) let you create individual documentation files that GitHub can render when viewing them in your browser on github.com. Markdown is -popular because of it’s familarity with developers and is the default markup +popular because of it’s familiarity with developers and is the default markup language for StackOverflow, Reddit, GitHub, and others. ReStructuredText came from the Python community in 2001 and became noticed outside that community with the release of Sphinx in 2008. These days, reST is supported by GitHub @@ -843,7 +844,7 @@

Markdown vs. RestructuredTexttoctree directives.

Documentation Organization

Documentation is maintained and updated the same as the project’s code within -the opea-project GitHub repos. There are many README.md files within the various +the opea-project GitHub repos. There are many README.md and other markdown files within the various repos along with the other files for those components. This is good because it -keeps the relevent documentation and code for that component together.

+keeps the relevant documentation and code for that component together.

We use the docs repo to organize the presentation of all these README.md files, along with other project related documents that are maintained in the docs repo. The root of the generated documentation starts with the @@ -870,6 +871,9 @@

Documentation Organizationtoctree directives of their own, ultimately collecting all the content into an organizational structure you can navigate.

+

Ultimately every document file (.md and .rst) in the project must appear +in the toctree hierarchy. An orphan document file will be flagged by Sphinx +as not included in a toctree directive.

Headings

@@ -937,6 +941,8 @@

Headings intervening H2 ##. You may skip heading levels on the way back up, for example, from an H4 #### back up to an H2 ## as appropriate.

+

Sphinx will complain if it finds multiple H1 headings or if you skip a +heading level.

@@ -955,13 +961,13 @@

Content Highlighting2 * (x + y) will not be interpreted as an unterminated italics section.

For inline markup, the characters between the beginning and ending characters must not start or end with a space, so *this is italics*, (this is italics) while * this isn't* -(* this isn’t*).

+(* this isn’t*) because of that extra space after the first asterisk.

If an asterisk or back quote appears in running text and could be confused with inline markup delimiters, you can eliminate the confusion by adding a backslash (\) before it.

@@ -974,13 +980,36 @@

Lists should be indented at the same level as the preceding paragraph (and not indented itself).

For numbered lists -start with a 1. or a) for example, and continue with autonumbering by -using a # sign and a . or ) as used in the first list item. +start with a 1. or a. for example, and continue with autonumbering by +using a # sign and a . as used in the first list item. Indent continuation lines with spaces to align with the text of first list item:

+

It’s important to maintain the indentation of content under a list so in the +generated HTML, the content looks like it’s part of that list and not a new +paragraph outside of that list.

+

For example, compare this:

+
+
    +
  • Here’s a bullet list item

  • +
+

Here’s a paragraph that should be part of that first bullet list item’s content.

+
    +
  • Here’s a second bullet list item

  • +
+
+

Notice how that middle paragraph is out-dented from the bullet list compared +with this next example where it’s not (yes, it’s subtle):

+
+
    +
  • Here’s a bullet list item

    +

    Here’s a paragraph that does look like it’s part of that first bullet list item’s content because it’s indented in the source.

    +
  • +
  • Here’s a second bullet list item

  • +
+
* This is a bulleted list.
 * It has two items, the second
-  item and has more than one line of reST text.  Additional lines
+  item and has more than one line of text.  Additional lines
   are indented to the first character of the
   text of the bullet list.
 
@@ -988,9 +1017,9 @@ 

Lists it would be a continuation of the previous list (or paragraph). #. It has two items too. -a) This is a numbered list using alphabetic list headings -#) It has three items (and uses autonumbering for the rest of the list) -#) Here's the third item. Use consistent punctuation on the list +a. This is a numbered list using alphabetic list headings +#. It has three items (and uses autonumbering for the rest of the list) +#. Here's the third item. Use consistent punctuation on the list number. #. This is an autonumbered list (default is to use numbers starting @@ -1003,7 +1032,8 @@

Lists needed, but it wouldn't hurt for readability.

-

Definition lists (with one or more terms and their definition) are a +

+

Definition lists (with one or more terms and their definition) are a convenient way to document a word or phrase with an explanation. For example, this reST content:

The Makefile has targets that include:
@@ -1027,10 +1057,13 @@ 

Lists

+

Multi-Column Lists

-

In reST, if you have a long bullet list of items, where each item is short, you can +

+

In reST, if you have a long bullet list of items, where each item is short, you can indicate that the list items should be rendered in multiple columns with a special .. rst-class:: rst-columns directive. The directive will apply to the next non-comment element (for example, paragraph) or to content indented under @@ -1064,11 +1097,8 @@

Multi-Column Listsrst-columns3), and two columns for rst-columns2. The number of columns displayed can be reduced based on the available width of the display window, reducing to one column on narrow (phone) screens if necessary.

-
-

Note

-

We’ve deprecated use of the hlist directive because it -misbehaves on smaller screens.

-
+

Tables

@@ -1076,7 +1106,8 @@

TablesGrid tables offer the most capability for defining merged rows and columns (where content spans multiple rows or columns, but are hard to maintain because the grid -characters must be aligned throughout the table:

+characters must be aligned throughout the table. They are supported in both +reST and markdown:

+------------------------+------------+----------+----------+
 | Header row, column 1   | Header 2   | Header 3 | Header 4 |
 | (header rows optional) |            |          |          |
@@ -1125,7 +1156,8 @@ 

Tables -

For reST, List tables +

+

For reST, List tables are much easier to maintain, but don’t support row or column spans:

File Names and Commands

-

Sphinx extends reST by supporting additional inline markup elements (called +

Sphinx extends reST by supporting additional inline markup elements (called “roles”) used to tag text with special meanings and enable output formatting. (You can refer to the Sphinx Inline Markup documentation for the full list).

@@ -1187,7 +1251,7 @@

File Names and Commandsfilename.

Don’t use items within a single backtick, for example `word`. Instead use double backticks: ``word``.

-

@@ -1224,7 +1288,7 @@

Branch-Specific File Links

Internal Cross-Reference Linking

-

Traditional reST links are supported only within the current file using the +

Traditional reST links are supported only within the current file using the notation:

refer to the `internal-linking`_ documentation
 
@@ -1278,7 +1342,50 @@

Branch-Specific File Links:ref:`alternate text <doc_guidelines>` (renders as alternate text).

-

@@ -1331,7 +1438,7 @@

Non-ASCII Characters
-

In reST, you incorporate content from another file using an include +

In reST, you incorporate content from another file using an include directive. Unless options are given, the included file is parsed in the current document’s context:

Alternative Tabbed Content

-

In ResST, instead of creating multiple documents with common material except for some +

In reST, instead of creating multiple documents with common material except for some specific sections, you can write one document and provide alternative content to the reader via a tabbed interface. When the reader clicks a tab, the content for that tab is displayed. For example:

@@ -1619,21 +1726,21 @@

Alternative Tabbed Content -

Apples are green, or sometimes red.

-

Tabs can also be grouped so that changing the current tab in one area changes all tabs with the same name throughout the page. For example:

-

Linux Line 1

-
-

Linux Line 2

-

In this latter case, we’re using a .. group-tab:: directive instead of a .. tab:: directive. Under the hood, we’re using the sphinx-tabs extension that’s included diff --git a/latest/developer-guides/docbuild.html b/latest/developer-guides/docbuild.html index a7a7e6e9c..792b75e92 100644 --- a/latest/developer-guides/docbuild.html +++ b/latest/developer-guides/docbuild.html @@ -825,24 +825,26 @@

Documentation Overview

OPEA project content is written using combination of markdown (.md) and -reStructuredText (.rst) markup languages (with Sphinx extensions), and -processed using Sphinx to create a formatted stand-alone website. Developers can -view this content either in its raw form as .rst markup files, or you can -generate the HTML content and view it with a web browser directly on your -workstation. The best reading experience is by viewing the generated HTML at -https://opea-project.github.io.

+reStructuredText (.rst) markup languages (with Sphinx extensions such as +Myst), and +processed using Sphinx to create a formatted stand-alone website. +The best reading experience is by viewing the generated HTML at +https://opea-project.github.io. +While working on new content or editing existing content, developers can +generate the HTML content locally and view it with a web browser.

You can read details about markdown, reStructuredText, and Sphinx from their respective websites.

-

The project’s documentation contains the following items:

-
    -
  • ReStructuredText and markdown source files used to generate documentation found at the -https://opea-project.github.io website. All of the documentation sources -are found in the github.com/opea-project repos, rooted in the docs repo. -There’s also documentation in the repos where the project’s code is -maintained: GenAIComps, GenAIEval, GenAIExamples, and GenAIInfra.

  • -
+

The project’s documentation is a collection of ReStructuredText and markdown +source files used to generate documentation found at the +https://opea-project.github.io website. All of the documentation sources are +found in the github.com/opea-project project repos, organized and rooted in +the docs repo. Much of the detailed documentation lives in the repos where +the project’s code is maintained: GenAIComps, GenAIEval, +GenAIExamples, and GenAIInfra. The documentation generation process +collects all the needed files from all these repos into one building area to +create the final generated HTML.

-
# Doc Generation flow
+<div class=# Doc Generation flow
 # dot -Tpng -odoc-gen-flow.png doc-gen-flow.dot
 
 digraph docgen {
@@ -854,10 +856,16 @@ <h2><a class=Documentation Overvie conf [shape="rectangle" label="conf.py\nconfiguration"] rtd [shape="rectangle" label="read-the-docs\ntheme"] html [shape="rectangle" label="HTML\nweb site"] - sphinx[shape="ellipse" label="sphinx +\ndocutils"] + includes [shape="rectangle" label="includes"] + sphinx[shape="ellipse" label="sphinx +\nMyst Parser +\ndocutils"] + prepare[shape="ellipse" label="fix\ncross-repo\nlinks"] + scan[shape="ellipse" label="scan\nrepo dirs"] images -> sphinx + scan -> includes + includes -> sphinx rst -> sphinx - md -> sphinx + md -> prepare + prepare -> sphinx conf -> sphinx rtd -> sphinx sphinx -> html @@ -866,10 +874,32 @@

Documentation Overvie

Figure 3 Documentation Generation Flow

+

Some content is manipulated or generated during the doc build process:

+
    +
  • Because markdown doesn’t directly support cross-repo document linking, we use +full URLs to link to the markdown files in other project repos, for example a +link to a document in the GenAIInfra repo from a document in the GenAIExamples +repo would look like this:

    +

    ` +See [GMC Install](https://github.com/opea-project/GenAIInfra/tree/main/microservices-connector/README.md). +`

    +

    That link works when reading the markdown file in the github.com repo, but +should be changed to reference the generated HTML file in the github.io +rendering.

    +
  • +
  • When new examples appear in the GenAIExamples repo, the indexing page that +lists all the examples is updated automatically by generating it at doc build +time by scanning the directory structure. The list of microservices is also +self-updated when new microservices are added to the GenAIComps/comps +directory.

  • +
  • References in markdown files to markdown files (.md file extension) are +converted to the corresponding generated HTML files by Sphinx using the Myst and +sphinx-md extensions.

  • +

Set Up the Documentation Working Folders

-

You’ll need git installed to get the working folders set up:

+

To begin, you’ll need git installed to get the working folders set up:

Here’s the recommended folder setup for documentation contributions and -generation, a parent folder called opea-project holds six locally +generation, a parent folder called opea-project holds five locally cloned repos from the opea-project. You can use a different name for the parent folder but the doc build process assumes the repo names are as shown here:

The parent opea-project folder is there to organize the cloned repos -from the project. If you have repo publishing rights, we’ll also be cloning the -publishing repo opea-project.github.io later in these steps.

+from the project.

In the following steps, you’ll create a fork of all the upstream OPEA project repos needed to build the documentation to your personal GitHub account, clone your personal fork to your local development computer, and then link that to the @@ -903,8 +931,8 @@

Set Up the Documentat fork of the docs repo to your personal GitHub account.)

../_images/opea-docs-fork.png -
  • At a command prompt, create a working folder on your development computer and -clone your personal docs repository:

    +
  • At a command prompt, create the top working folder on your development +computer and clone your personal docs repository there:

    -

    After that, you’ll have origin pointing to your cloned personal repo and -upstream pointing to the project repo.

    +

    After that, you’ll have origin pointing to your cloned personal docs +repo and upstream pointing to the project docs repo.

  • -
  • Do the same steps (fork to your personal account, clone to your local -computer, and setup the git upstream remote) for the other repos containing -project documentation, replacing the docs.git repo name in the previous step +

  • Return to the parent directory with cd ..

  • +
  • Now do the same steps (fork to your personal account, clone to your local +computer, and setup the git upstream remote) for the other four repos +replacing the docs.git repo name in the previous step with the appropriate repo name in this list:

      -
    • GenAIComps

    • -
    • GenAIEval

    • -
    • GenAIExamples

    • -
    • GenAIInfra

    • +
    • GenAIComps

    • +
    • GenAIEval

    • +
    • GenAIExamples

    • +
    • GenAIInfra

  • -
  • If you haven’t done so already, be sure to configure git with your name +

  • If you haven’t done so already, configure git with your name and email address for the Signed-off-by line in your commit messages:

  • Install the Documentation Tools

    -

    Our documentation processing has been tested to run with Python 3.8.10 and +

    Our documentation processing has been tested to run on Ubuntu (both natively and +in Windows Subsystem for Windows (wsl) with Python 3.8.10 and later, and these other tools:

    -

    Depending on your Linux version, install the needed tools. You should consider -using the Python virtual environment -tools to maintain your Python environment from being changed by other work on -your computer.

    +

    Depending on your Linux version, install the needed tools.

    +
    +

    Important

    +

    You should consider using the Python virtual environment tools +to maintain your Python environment from being changed by other work on your +computer.

    +

    For Ubuntu, use:

    Run the Documentation Processors

    -

    The docs folder (with all cloned sibling repos) have all the doc source files, +

    The docs folder (with all the cloned sibling repos) have all the doc source files, images, extra tools, and Makefile for generating a local copy of the OPEA technical documentation. It’s best to start with a clean doc-build environment so use make clean to remove the _build working folder if it exists. The Makefile creates the _build folder (if it doesn’t exist) and copies all needed files from these cloned repos into the _build/rst working folder.

    +

    Normally you’d have each repo checked out at the main branch before you run the +make html step. The doc build process uses the five repo’s contents to +create the HTML site. If you’re working on changes to documentation in a repo +and have those changes on a branch other than main, you can still generate the +documentation with that branch’s changes – this is how you can verify your +changes will not generate errors when your branch with changes is merged with +the main branch.

    cd ~/opea-project/docs
     make clean
     make html
     
    -

    Depending on your development system, it will take less a minute to collect and +

    Depending on your development system, it will take about a minute to collect and generate the HTML content. When done, you can view the HTML output in ~/opea-project/docs/_build/html/index.html.

    As a convenience, there’s a make target that will cd to the _build/html -folder and run a local Python web server:

    +folder and run a local Python web server on port 8000:

    make server
     
    -

    and use your web browser to open the URL: http://localhost:8000. When +

    Use your web browser to open the URL: http://localhost:8000 and wander +around your local site and view the results of your changes. When done, press ctrl-C in your command-prompt window to stop the web server.

    +

    If things look good, you’d proceed to using git (git add .) to add and commit +(git commit -s) your changes, push those changes to your personal forked +repo (git push origin <branchname>) and submit a PR using the GitHub web +interface.

    Publish Content

    -

    If you have merge rights to the opea-project repo called -opea-project.github.io, you can update the public project documentation -found at https://opea-project.github.io.

    +

    If you have merge rights to the opea-project opea-project.github.io repo, +you can update the public project documentation found at +https://opea-project.github.io.

    You’ll need to do a one-time clone of the upstream repo (we publish directly to the upstream repo rather than to a personal forked copy):

    cd ~/opea-project
    @@ -1063,9 +1109,10 @@ 

    Publish Contentlatest folder that are no longer needed. New or changed files from the newly-generated HTML content are pushed to the GitHub pages -publishing repo. The public site at https://opea-project.github.io will -be automatically updated by the GitHub pages system, typically within a few -minutes.

    +publishing repo (opea-project.github.io.git. The public site at +https://opea-project.github.io will be automatically updated by the +GitHub pages system, +typically within a few minutes.

    Document Versioning

    @@ -1078,9 +1125,8 @@

    Document Versioning'docs_title': docs_title, 'is_release': is_release, 'versions': ( ("latest", "/latest/"), - ("0.8", "/0.8/"), - ("0.7", "/0.7/"), - ) + ("1.0", "/1.0/"), + ) }

    @@ -1091,9 +1137,9 @@

    Document VersioningBy default, documentation build and publishing both assume we’re generating documentation for the main branch and publishing to the /latest/ area on https://opea-project.github.io. When we’re generating the documentation for a -tagged version (e.g., 0.8), check out that version of all the component +tagged version (e.g., 1.0), check out that version of all the component repos, and add some extra flags to the make commands:

    -

    diff --git a/latest/searchindex.js b/latest/searchindex.js index 2de2c42cf..c79f4671b 100644 --- a/latest/searchindex.js +++ b/latest/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"(Option1): Installing the chart separately": [[205, "option1-installing-the-chart-separately"], [206, "option1-installing-the-chart-separately"], [207, "option1-installing-the-chart-separately"], [208, "option1-installing-the-chart-separately"], [209, "option1-installing-the-chart-separately"], [211, "option1-installing-the-chart-separately"], [212, "option1-installing-the-chart-separately"], [217, "option1-installing-the-chart-separately"], [219, "option1-installing-the-chart-separately"]], "(Option2): Installing the chart with dependencies automatically": [[205, "option2-installing-the-chart-with-dependencies-automatically"], [206, "option2-installing-the-chart-with-dependencies-automatically"], [207, "option2-installing-the-chart-with-dependencies-automatically"], [208, "option2-installing-the-chart-with-dependencies-automatically"], [209, "option2-installing-the-chart-with-dependencies-automatically"], [211, "option2-installing-the-chart-with-dependencies-automatically"], [212, "option2-installing-the-chart-with-dependencies-automatically"], [217, "option2-installing-the-chart-with-dependencies-automatically"], [219, "option2-installing-the-chart-with-dependencies-automatically"]], "(Optional) To run GenAIInfra on Intel Gaudi product": [[194, "optional-to-run-genaiinfra-on-intel-gaudi-product"]], "(Optionally) Start the TEI (embedder) service separately": [[69, "optionally-start-the-tei-embedder-service-separately"]], "1 TEI Embedding Service": [[115, "tei-embedding-service"]], "1. Build Docker Image": [[157, "build-docker-image"], [158, "build-docker-image"], [170, "build-docker-image"], [171, "build-docker-image"]], "1. Build Embedding Image": [[111, "build-embedding-image"], [112, "build-embedding-image"], [113, "build-embedding-image"], [114, "build-embedding-image"], [164, "build-embedding-image"], [173, "build-embedding-image"], [174, "build-embedding-image"], [184, "build-embedding-image"]], "1. Build Images for necessary microservices. (Optional after docker image release)": [[137, "build-images-for-necessary-microservices-optional-after-docker-image-release"], [138, "build-images-for-necessary-microservices-optional-after-docker-image-release"]], "1. Build LLM Image": [[140, "build-llm-image"], [149, "build-llm-image"], [178, "build-llm-image"], [179, "build-llm-image"]], "1. Build LVM and NGINX Docker Images": [[186, "build-lvm-and-nginx-docker-images"], [187, "build-lvm-and-nginx-docker-images"]], "1. Build embedding-multimodal-bridgetower Image": [[161, "build-embedding-multimodal-bridgetower-image"], [162, "build-embedding-multimodal-bridgetower-image"]], "1. Build the LLM Docker Image": [[123, "build-the-llm-docker-image"], [124, "build-the-llm-docker-image"], [131, "build-the-llm-docker-image"], [132, "build-the-llm-docker-image"]], "1. Check environment variables": [[115, "check-environment-variables"]], "1. Configuration": [[79, "configuration"]], "1. Correction": [[237, "correction"]], "1. Create Pinecone account from the below link": [[82, "create-pinecone-account-from-the-below-link"]], "1. Create release candidate branch": [[195, "create-release-candidate-branch"]], "1. Download Pgvector image": [[81, "download-pgvector-image"]], "1. Download Qdrant image": [[83, "download-qdrant-image"]], "1. Download Redis image": [[84, "download-redis-image"]], "1. Download VDMS image": [[85, "download-vdms-image"]], "1. Install the GMC Helm Chart": [[234, "install-the-gmc-helm-chart"]], "1. Introduction": [[22, "introduction"]], "1. Mission and Scope of the Project": [[241, "mission-and-scope-of-the-project"]], "1. Overview": [[3, "overview"]], "1. Preparation": [[110, "preparation"], [110, "id1"], [110, "id6"]], "1. Pull TGI Gaudi Image": [[141, "pull-tgi-gaudi-image"], [150, "pull-tgi-gaudi-image"]], "1. Setup Prometheus": [[92, "setup-prometheus"]], "1. Setup Prometheus & Grafana": [[223, "setup-prometheus-grafana"]], "1. Source Code install GenAIComps": [[104, "source-code-install-genaicomps"], [105, "source-code-install-genaicomps"], [116, "source-code-install-genaicomps"]], "1. Summary": [[267, "summary"]], "1. Upload a training file": [[156, "upload-a-training-file"], [169, "upload-a-training-file"]], "1. \ud83d\ude80Start Microservice with Python (Option 1)": [[71, "start-microservice-with-python-option-1"]], "1.1 Build Docker Image": [[24, "build-docker-image"]], "1.1 Build Images": [[57, "build-images"], [64, "build-images"]], "1.1 Install Requirements": [[6, "install-requirements"], [12, "install-requirements"], [14, "install-requirements"], [17, "install-requirements"], [18, "install-requirements"], [19, "install-requirements"], [23, "install-requirements"], [26, "install-requirements"], [27, "install-requirements"], [30, "install-requirements"], [32, "install-requirements"], [34, "install-requirements"], [35, "install-requirements"], [38, "install-requirements"], [40, "install-requirements"], [41, "install-requirements"], [44, "install-requirements"], [45, "install-requirements"], [50, "install-requirements"], [55, "install-requirements"], [56, "install-requirements"], [61, "install-requirements"], [63, "install-requirements"], [67, "install-requirements"], [70, "install-requirements"], [71, "install-requirements"], [72, "install-requirements"], [73, "install-requirements"], [74, "install-requirements"]], "1.1 Requirements": [[11, "requirements"]], "1.1 Setup Environment Variables": [[42, "setup-environment-variables"], [43, "setup-environment-variables"], [46, "setup-environment-variables"], [47, "setup-environment-variables"]], "1.1 Supported agent types": [[3, "supported-agent-types"]], "1.2 Build Docker Image": [[43, "build-docker-image"], [46, "build-docker-image"], [47, "build-docker-image"]], "1.2 Install fastRAG": [[61, "install-fastrag"]], "1.2 LLM engine": [[3, "llm-engine"]], "1.2 Run Docker with Docker Compose": [[24, "run-docker-with-docker-compose"]], "1.2 Setup Environment Variables": [[14, "setup-environment-variables"]], "1.2 Setup VectorDB Service": [[67, "setup-vectordb-service"], [73, "setup-vectordb-service"]], "1.2 Start Bias Detection Microservice with Python Script": [[32, "start-bias-detection-microservice-with-python-script"]], "1.2 Start Embedding Service": [[23, "start-embedding-service"], [26, "start-embedding-service"], [27, "start-embedding-service"]], "1.2 Start Finetuning Service with Python Script": [[30, "start-finetuning-service-with-python-script"]], "1.2 Start LLM Service": [[44, "start-llm-service"], [50, "start-llm-service"]], "1.2 Start LLM Service with Python Script": [[45, "start-llm-service-with-python-script"]], "1.2 Start LLaVA Service/Test": [[55, "start-llava-service-test"]], "1.2 Start LVM Service": [[56, "start-lvm-service"]], "1.2 Start Milvus Server": [[11, "start-milvus-server"]], "1.2 Start Neo4j Service": [[42, "start-neo4j-service"]], "1.2 Start PII Detection Microservice with Python Script": [[35, "start-pii-detection-microservice-with-python-script"]], "1.2 Start Qdrant Server": [[71, "start-qdrant-server"]], "1.2 Start Redis Stack Server": [[12, "start-redis-stack-server"], [17, "start-redis-stack-server"]], "1.2 Start Rerank Service": [[64, "start-rerank-service"]], "1.2 Start SVD Service": [[40, "start-svd-service"]], "1.2 Start SpeechT5 Service/Test": [[75, "start-speecht5-service-test"]], "1.2 Start TEI Service": [[63, "start-tei-service"], [70, "start-tei-service"], [72, "start-tei-service"], [74, "start-tei-service"]], "1.2 Start TGI Gaudi Service": [[34, "start-tgi-gaudi-service"]], "1.2 Start TGI Service": [[41, "start-tgi-service"]], "1.2 Start Toxicity Detection Microservice with Python Script": [[38, "start-toxicity-detection-microservice-with-python-script"]], "1.2 Start VDMS Server": [[18, "start-vdms-server"], [19, "start-vdms-server"]], "1.2 Start Video-Llama and LVM Services": [[57, "start-video-llama-and-lvm-services"]], "1.2 Start Whisper Service/Test": [[6, "start-whisper-service-test"]], "1.2.1 Start Ray Cluster": [[30, "start-ray-cluster"]], "1.2.1 Start the TGI Service": [[45, "start-the-tgi-service"]], "1.2.2 Start Finetuning Service": [[30, "start-finetuning-service"]], "1.2.2 Start the vLLM Service": [[45, "start-the-vllm-service"]], "1.2.3 Start the Ray Service": [[45, "start-the-ray-service"]], "1.3 Ingest images or video": [[67, "ingest-images-or-video"]], "1.3 Run Docker with CLI (Option A)": [[43, "run-docker-with-cli-option-a"], [46, "run-docker-with-cli-option-a"], [47, "run-docker-with-cli-option-a"]], "1.3 Setup Environment Variables": [[11, "setup-environment-variables"], [12, "setup-environment-variables"], [17, "setup-environment-variables"], [18, "setup-environment-variables"], [19, "setup-environment-variables"], [71, "setup-environment-variables"]], "1.3 Start ASR Service/Test": [[6, "start-asr-service-test"]], "1.3 Start Image To Text Service/Test": [[55, "start-image-to-text-service-test"]], "1.3 Start Image-to-Video Microservice": [[40, "start-image-to-video-microservice"]], "1.3 Start LLM Service for \u201crag\u201d/\u201dquery\u201d mode": [[42, "start-llm-service-for-rag-query-mode"]], "1.3 Start PGVector": [[14, "start-pgvector"]], "1.3 Start Reranking Service with Python Script": [[61, "start-reranking-service-with-python-script"]], "1.3 Start Retriever Service": [[73, "start-retriever-service"]], "1.3 Start TTS Service/Test": [[75, "start-tts-service-test"]], "1.3 Tools": [[3, "tools"]], "1.3 Verify the TEI Service": [[63, "verify-the-tei-service"], [70, "verify-the-tei-service"], [72, "verify-the-tei-service"], [74, "verify-the-tei-service"]], "1.3 Verify the TGI Gaudi Service": [[34, "verify-the-tgi-gaudi-service"]], "1.3 Verify the TGI Service": [[41, "verify-the-tgi-service"], [44, "verify-the-tgi-service"], [50, "verify-the-tgi-service"]], "1.4 Agent APIs": [[3, "agent-apis"]], "1.4 Run Docker with Docker Compose (Option B)": [[43, "run-docker-with-docker-compose-option-b"], [46, "run-docker-with-docker-compose-option-b"], [47, "run-docker-with-docker-compose-option-b"]], "1.4 Setup Environment Variables": [[41, "setup-environment-variables"]], "1.4 Setup VectorDB Service": [[70, "setup-vectordb-service"], [72, "setup-vectordb-service"], [74, "setup-vectordb-service"]], "1.4 Start Data Preparation Microservice for VDMS with Python Script": [[19, "start-data-preparation-microservice-for-vdms-with-python-script"]], "1.4 Start Document Preparation Microservice for PGVector with Python Script": [[14, "start-document-preparation-microservice-for-pgvector-with-python-script"]], "1.4 Start Document Preparation Microservice for Redis with Python Script": [[17, "start-document-preparation-microservice-for-redis-with-python-script"]], "1.4 Start Document Preparation Microservice for VDMS with Python Script": [[18, "start-document-preparation-microservice-for-vdms-with-python-script"]], "1.4 Start Embedding Service": [[17, "start-embedding-service"]], "1.4 Start Guardrails Service": [[34, "start-guardrails-service"]], "1.4 Start LLM Service with Python Script": [[44, "start-llm-service-with-python-script"], [50, "start-llm-service-with-python-script"]], "1.4 Start LVM Microservice (Optional)": [[12, "start-lvm-microservice-optional"]], "1.4 Start Microservice": [[42, "start-microservice"]], "1.4 Start Mosec Embedding Service": [[11, "start-mosec-embedding-service"]], "1.4 Start Reranking Service with Python Script": [[63, "start-reranking-service-with-python-script"]], "1.4 Start Retriever Service": [[67, "start-retriever-service"], [71, "start-retriever-service"]], "1.5 Start Data Preparation Microservice for Redis with Python Script": [[12, "start-data-preparation-microservice-for-redis-with-python-script"]], "1.5 Start Document Preparation Microservice for Milvus with Python Script": [[11, "start-document-preparation-microservice-for-milvus-with-python-script"]], "1.5 Start Intent Detection Microservice with Python Script": [[41, "start-intent-detection-microservice-with-python-script"]], "1.5 Start Retriever Service": [[70, "start-retriever-service"], [72, "start-retriever-service"], [74, "start-retriever-service"]], "10. Build Nginx Docker Image": [[114, "build-nginx-docker-image"], [116, "build-nginx-docker-image"]], "2 Embedding Microservice": [[115, "embedding-microservice"]], "2. Build ASR Image": [[104, "build-asr-image"], [105, "build-asr-image"]], "2. Build Embedding Image": [[116, "build-embedding-image"]], "2. Build Images for MegaService": [[137, "build-images-for-megaservice"], [138, "build-images-for-megaservice"]], "2. Build LLM Image": [[141, "build-llm-image"], [150, "build-llm-image"]], "2. Build MegaService Docker Image": [[131, "build-megaservice-docker-image"], [132, "build-megaservice-docker-image"], [140, "build-megaservice-docker-image"], [149, "build-megaservice-docker-image"], [178, "build-megaservice-docker-image"], [179, "build-megaservice-docker-image"], [186, "build-megaservice-docker-image"]], "2. Build Retriever Image": [[111, "build-retriever-image"], [112, "build-retriever-image"], [113, "build-retriever-image"], [114, "build-retriever-image"], [164, "build-retriever-image"], [173, "build-retriever-image"], [174, "build-retriever-image"], [184, "build-retriever-image"]], "2. Build retriever-multimodal-redis Image": [[161, "build-retriever-multimodal-redis-image"], [162, "build-retriever-multimodal-redis-image"]], "2. Build the MegaService Docker Image": [[123, "build-the-megaservice-docker-image"], [124, "build-the-megaservice-docker-image"]], "2. Check the docker container status": [[115, "check-the-docker-container-status"]], "2. Configure the username, password and dbname": [[81, "configure-the-username-password-and-dbname"]], "2. Create fine-tuning job": [[156, "create-fine-tuning-job"], [169, "create-fine-tuning-job"]], "2. Create images with release tag": [[195, "create-images-with-release-tag"]], "2. Get API key": [[82, "get-api-key"]], "2. Install ChatQnA": [[110, "install-chatqna"], [110, "id2"], [110, "id7"]], "2. Introduction": [[267, "introduction"]], "2. Metric for Gaudi Hardware(v1.16.2)": [[223, "metric-for-gaudi-hardware-v1-16-2"]], "2. Pull TGI Gaudi Image": [[187, "pull-tgi-gaudi-image"]], "2. Quick Start": [[22, "quick-start"]], "2. Run Docker with CLI": [[157, "run-docker-with-cli"], [158, "run-docker-with-cli"], [170, "run-docker-with-cli"], [171, "run-docker-with-cli"]], "2. Run Milvus service": [[79, "run-milvus-service"]], "2. Run Qdrant service": [[83, "run-qdrant-service"]], "2. Run Redis service": [[84, "run-redis-service"]], "2. Run VDMS service": [[85, "run-vdms-service"]], "2. Setup Grafana": [[92, "setup-grafana"]], "2. Technical Steering Committee": [[241, "technical-steering-committee"]], "2. Warning": [[237, "warning"]], "2. \ud83d\ude80Start Microservice with Docker (Option 2)": [[71, "start-microservice-with-docker-option-2"]], "2.1 Build Docker Images": [[56, "build-docker-images"]], "2.1 Build Docker image": [[22, "build-docker-image"]], "2.1 Build Images": [[6, "build-images"], [40, "build-images"], [55, "build-images"], [75, "build-images"]], "2.1 Check Service Status": [[24, "check-service-status"], [46, "check-service-status"], [47, "check-service-status"]], "2.1 Cypher mode": [[42, "cypher-mode"]], "2.1 Key capabilities": [[267, "key-capabilities"]], "2.1 Option 1: with Python": [[3, "option-1-with-python"]], "2.1 Prepare PII detection model": [[35, "prepare-pii-detection-model"]], "2.1 Prepare bias detection model": [[32, "prepare-bias-detection-model"]], "2.1 Prepare toxicity detection model": [[38, "prepare-toxicity-detection-model"]], "2.1 Setup Environment Variables": [[19, "id2"], [34, "setup-environment-variables"], [44, "setup-environment-variables"], [50, "setup-environment-variables"], [56, "setup-environment-variables"], [61, "setup-environment-variables"], [63, "setup-environment-variables"], [67, "setup-environment-variables"], [70, "setup-environment-variables"], [71, "id1"], [72, "setup-environment-variables"], [73, "setup-environment-variables"], [74, "setup-environment-variables"]], "2.1 Setup on CPU": [[30, "setup-on-cpu"]], "2.1 Start Embedding Service with TEI": [[26, "id1"], [27, "id1"]], "2.1 Start LLM Service with published image": [[45, "start-llm-service-with-published-image"]], "2.1 Start Milvus Server": [[11, "id1"]], "2.1 Start Multimodal Embedding Inference (MMEI) Service": [[23, "start-multimodal-embedding-inference-mmei-service"]], "2.1 Start PGVector": [[14, "id1"]], "2.1 Start Redis Stack Server": [[12, "id1"], [17, "id1"]], "2.1 Start TGI Service": [[41, "id1"]], "2.1 Start VDMS Server": [[18, "id1"], [19, "id1"]], "2.1 vLLM on CPU": [[51, "vllm-on-cpu"], [52, "vllm-on-cpu"]], "2.1.1 Build Docker Image": [[30, "build-docker-image"]], "2.1.1 Construction of GenAI solutions, including retrieval augmentation": [[267, "construction-of-genai-solutions-including-retrieval-augmentation"]], "2.1.1 Install Requirements": [[3, "install-requirements"]], "2.1.1 LLaVA Server Image": [[55, "llava-server-image"]], "2.1.1 SVD Server Image": [[40, "svd-server-image"]], "2.1.1 SpeechT5 Server Image": [[75, "speecht5-server-image"]], "2.1.1 Start TGI Service": [[45, "start-tgi-service"]], "2.1.1 Whisper Server Image": [[6, "whisper-server-image"]], "2.1.1 use LLM endpoint (will add later)": [[35, "use-llm-endpoint-will-add-later"]], "2.1.2 ASR Service Image": [[6, "asr-service-image"]], "2.1.2 Evaluation of GenAI solutions, including retrieval augmentation:": [[267, "evaluation-of-genai-solutions-including-retrieval-augmentation"]], "2.1.2 Image-to-Video Service Image": [[40, "image-to-video-service-image"]], "2.1.2 LVM Service Image": [[55, "lvm-service-image"]], "2.1.2 Run Docker with CLI": [[30, "run-docker-with-cli"]], "2.1.2 Start Microservice with Python Script": [[3, "start-microservice-with-python-script"]], "2.1.2 Start vLLM Service": [[45, "start-vllm-service"]], "2.1.2 TTS Service Image": [[75, "tts-service-image"]], "2.1.3 Start Ray Service": [[45, "start-ray-service"]], "2.2 Build Docker Image": [[11, "build-docker-image"], [23, "build-docker-image"], [26, "build-docker-image"], [27, "build-docker-image"], [32, "build-docker-image"], [34, "build-docker-image"], [35, "build-docker-image"], [38, "build-docker-image"], [44, "build-docker-image"], [45, "build-docker-image"], [50, "build-docker-image"], [61, "build-docker-image"], [63, "build-docker-image"], [67, "build-docker-image"], [70, "build-docker-image"], [71, "build-docker-image"], [72, "build-docker-image"], [73, "build-docker-image"], [74, "build-docker-image"]], "2.2 Consume Embedding Service": [[23, "id1"], [24, "id1"]], "2.2 Consume LLM Service": [[46, "id1"], [47, "id1"]], "2.2 Launch server": [[22, "launch-server"]], "2.2 Option 2. Start Microservice with Docker": [[3, "option-2-start-microservice-with-docker"]], "2.2 Rag mode": [[42, "rag-mode"]], "2.2 Setup Environment Variables": [[14, "id2"], [17, "id2"], [18, "id2"], [41, "id2"]], "2.2 Setup on Gaudi2": [[30, "setup-on-gaudi2"]], "2.2 Start LLM Service with image built from source": [[45, "start-llm-service-with-image-built-from-source"]], "2.2 Start LLaVA and LVM Service": [[55, "start-llava-and-lvm-service"]], "2.2 Start LVM Microservice (Optional)": [[12, "id2"]], "2.2 Start SVD and Image-to-Video Service": [[40, "start-svd-and-image-to-video-service"]], "2.2 Start Service": [[56, "start-service"]], "2.2 Start SpeechT5 and TTS Service": [[75, "start-speecht5-and-tts-service"]], "2.2 Start Whisper and ASR Service": [[6, "start-whisper-and-asr-service"]], "2.2 vLLM on Gaudi": [[51, "vllm-on-gaudi"], [52, "vllm-on-gaudi"]], "2.2.1 Build Docker Image": [[30, "id1"]], "2.2.1 Build Microservices": [[3, "build-microservices"]], "2.2.1 Setup Environment Variables": [[45, "setup-environment-variables"]], "2.2.1 Start LLaVA server": [[55, "start-llava-server"]], "2.2.1 Start SVD server": [[40, "start-svd-server"]], "2.2.1 Start SpeechT5 Server": [[75, "start-speecht5-server"]], "2.2.1 Start Whisper Server": [[6, "start-whisper-server"]], "2.2.1 TGI": [[45, "tgi"]], "2.2.2 Run Docker with CLI": [[30, "id2"]], "2.2.2 Start ASR service": [[6, "start-asr-service"]], "2.2.2 Start Image-to-Video service": [[40, "start-image-to-video-service"]], "2.2.2 Start LVM service": [[55, "start-lvm-service"]], "2.2.2 Start TTS service": [[75, "start-tts-service"]], "2.2.2 Start microservices": [[3, "start-microservices"]], "2.2.2 vLLM": [[45, "vllm"]], "2.2.3 Ray Serve": [[45, "ray-serve"]], "2.2.3 Test": [[6, "test"], [40, "test"], [55, "test"], [75, "test"]], "2.3 Build Docker Image": [[14, "build-docker-image"], [17, "build-docker-image"], [18, "build-docker-image"], [19, "build-docker-image"], [41, "build-docker-image"]], "2.3 Client test": [[22, "client-test"]], "2.3 Query mode": [[42, "query-mode"]], "2.3 Run Docker": [[61, "run-docker"]], "2.3 Run Docker Container with Microservice": [[32, "run-docker-container-with-microservice"], [38, "run-docker-container-with-microservice"]], "2.3 Run Docker with CLI": [[26, "run-docker-with-cli"], [27, "run-docker-with-cli"], [34, "run-docker-with-cli"], [35, "run-docker-with-cli"], [71, "run-docker-with-cli"]], "2.3 Run Docker with CLI (Option A)": [[11, "run-docker-with-cli-option-a"], [44, "run-docker-with-cli-option-a"], [45, "run-docker-with-cli-option-a"], [50, "run-docker-with-cli-option-a"], [63, "run-docker-with-cli-option-a"], [67, "run-docker-with-cli-option-a"], [70, "run-docker-with-cli-option-a"], [72, "run-docker-with-cli-option-a"], [73, "run-docker-with-cli-option-a"], [74, "run-docker-with-cli-option-a"]], "2.3 Run Docker with Docker Compose": [[23, "run-docker-with-docker-compose"]], "2.3 Setup Environment Variables": [[11, "id2"], [12, "id3"]], "2.3 vLLM with OpenVINO": [[51, "vllm-with-openvino"], [52, "vllm-with-openvino"]], "2.3.1 TGI": [[45, "id1"]], "2.3.2 vLLM": [[45, "id2"]], "2.3.3 Ray Serve": [[45, "id3"]], "2.4 Build Docker Image": [[12, "build-docker-image"]], "2.4 Query the service": [[51, "query-the-service"], [52, "query-the-service"]], "2.4 Run Docker Compose": [[19, "run-docker-compose"]], "2.4 Run Docker with CLI": [[18, "run-docker-with-cli"]], "2.4 Run Docker with CLI (Option A)": [[14, "run-docker-with-cli-option-a"], [17, "run-docker-with-cli-option-a"], [41, "run-docker-with-cli-option-a"]], "2.4 Run Docker with Docker Compose": [[26, "run-docker-with-docker-compose"], [27, "run-docker-with-docker-compose"], [34, "run-docker-with-docker-compose"]], "2.4 Run Docker with Docker Compose (Option B)": [[44, "run-docker-with-docker-compose-option-b"], [45, "run-docker-with-docker-compose-option-b"], [50, "run-docker-with-docker-compose-option-b"], [63, "run-docker-with-docker-compose-option-b"], [67, "run-docker-with-docker-compose-option-b"], [70, "run-docker-with-docker-compose-option-b"], [72, "run-docker-with-docker-compose-option-b"], [73, "run-docker-with-docker-compose-option-b"], [74, "run-docker-with-docker-compose-option-b"]], "2.4 Run with Docker Compose (Option B)": [[11, "run-with-docker-compose-option-b"]], "2.4.1 TGI": [[45, "id4"]], "2.4.2 vLLM": [[45, "id5"]], "2.4.3 Ray Serve": [[45, "id6"]], "2.5 Run Docker with CLI (Option A)": [[12, "run-docker-with-cli-option-a"]], "2.5 Run with Docker Compose (Option B - deprecated, will move to genAIExample in future)": [[17, "run-with-docker-compose-option-b-deprecated-will-move-to-genaiexample-in-future"]], "2.5 Run with Docker Compose (Option B)": [[14, "run-with-docker-compose-option-b"], [41, "run-with-docker-compose-option-b"]], "2.6 Run with Docker Compose (Option B - deprecated, will move to genAIExample in future)": [[12, "run-with-docker-compose-option-b-deprecated-will-move-to-genaiexample-in-future"]], "2.Use GMC to compose a ChatQnA Pipeline": [[234, "use-gmc-to-compose-a-chatqna-pipeline"]], "24-05-16 GenAIExamples-001 Using MicroService to Implement ChatQnA": [[245, "genaiexamples-001-using-microservice-to-implement-chatqna"]], "24-05-16 OPEA-001 Overall Design": [[246, "opea-001-overall-design"]], "24-05-24 OPEA-001 Code Structure": [[247, "opea-001-code-structure"]], "24-06-21-OPEA-001-Guardrails-Gateway": [[248, "opea-001-guardrails-gateway"]], "24-08-02-OPEA-AIAvatarChatbot": [[249, "opea-aiavatarchatbot"]], "24-08-07 OPEA-001 OPEA GenAIStudio": [[250, "opea-001-opea-genaistudio"]], "3 Retriever Microservice": [[115, "retriever-microservice"]], "3. Build LLM Image": [[104, "build-llm-image"], [105, "build-llm-image"]], "3. Build LVM Images": [[161, "build-lvm-images"], [162, "build-lvm-images"]], "3. Build MegaService Docker Image": [[141, "build-megaservice-docker-image"], [150, "build-megaservice-docker-image"], [187, "build-megaservice-docker-image"]], "3. Build Rerank Image": [[111, "build-rerank-image"], [112, "build-rerank-image"], [113, "build-rerank-image"], [114, "build-rerank-image"], [164, "build-rerank-image"], [173, "build-rerank-image"], [174, "build-rerank-image"], [184, "build-rerank-image"]], "3. Build Retriever Image": [[116, "build-retriever-image"]], "3. Build UI Docker Image": [[131, "build-ui-docker-image"], [132, "build-ui-docker-image"], [140, "build-ui-docker-image"], [149, "build-ui-docker-image"], [178, "build-ui-docker-image"], [179, "build-ui-docker-image"], [186, "build-ui-docker-image"]], "3. Build the UI Docker Image": [[123, "build-the-ui-docker-image"], [124, "build-the-ui-docker-image"]], "3. Check docker container log": [[115, "check-docker-container-log"]], "3. Create the index in https://app.pinecone.io/": [[82, "create-the-index-in-https-app-pinecone-io"]], "3. Framework Components, Architecture and Flow": [[267, "framework-components-architecture-and-flow"]], "3. Import Grafana Dashboard": [[92, "import-grafana-dashboard"]], "3. Manage fine-tuning job": [[156, "manage-fine-tuning-job"], [169, "manage-fine-tuning-job"]], "3. Metric for OPEA/chatqna": [[223, "metric-for-opea-chatqna"]], "3. Run Pgvector service": [[81, "run-pgvector-service"]], "3. Run tests": [[110, "run-tests"], [110, "id3"], [110, "id8"]], "3. Start all the services Docker Containers": [[137, "start-all-the-services-docker-containers"], [138, "start-all-the-services-docker-containers"]], "3. TSC Voting": [[241, "tsc-voting"]], "3. Temporary Ban": [[237, "temporary-ban"]], "3. Test ChatQnA service": [[234, "test-chatqna-service"]], "3. Test helm charts": [[195, "test-helm-charts"]], "3.1 Check Service Status": [[26, "check-service-status"], [27, "check-service-status"], [34, "check-service-status"], [43, "check-service-status"], [44, "check-service-status"], [45, "check-service-status"], [50, "check-service-status"], [61, "check-service-status"], [63, "check-service-status"], [66, "check-service-status"], [68, "check-service-status"], [70, "check-service-status"], [71, "check-service-status"], [72, "check-service-status"], [73, "check-service-status"], [74, "check-service-status"]], "3.1 Consume Embedding Service": [[67, "consume-embedding-service"]], "3.1 Consume Upload API": [[11, "consume-upload-api"], [14, "consume-upload-api"]], "3.1 Start with CLI (Option 1)": [[58, "start-with-cli-option-1"]], "3.1 Upload Retrieval File": [[110, "upload-retrieval-file"]], "3.1 Upload a training file": [[30, "upload-a-training-file"]], "3.2 Consume Embedding Service": [[26, "id2"], [27, "id2"], [66, "consume-embedding-service"], [68, "consume-embedding-service"], [70, "consume-embedding-service"], [71, "consume-embedding-service"], [72, "consume-embedding-service"], [74, "consume-embedding-service"]], "3.2 Consume FAQGen LLM Service": [[43, "consume-faqgen-llm-service"]], "3.2 Consume Guardrails Service": [[34, "id1"]], "3.2 Consume LLM Service": [[44, "id1"], [50, "id1"]], "3.2 Consume Reranking Service": [[61, "id1"], [63, "id1"]], "3.2 Consume Retriever Service": [[73, "id1"]], "3.2 Consume get_file API": [[11, "consume-get-file-api"], [14, "consume-get-file-api"]], "3.2 Create fine-tuning job": [[30, "create-fine-tuning-job"]], "3.2 Run Benchmark Test": [[110, "run-benchmark-test"]], "3.2 Start with Docker Compose (Option 2)": [[58, "start-with-docker-compose-option-2"]], "3.2 Verify the LLM Service": [[45, "verify-the-llm-service"]], "3.2.1 Instruction Tuning": [[30, "instruction-tuning"]], "3.2.1 Verify the TGI Service": [[45, "verify-the-tgi-service"]], "3.2.2 Reranking Model Training": [[30, "reranking-model-training"]], "3.2.2 Verify the vLLM Service": [[45, "verify-the-vllm-service"]], "3.2.3 Embedding Model Training": [[30, "embedding-model-training"]], "3.2.3 Verify the Ray Service": [[45, "verify-the-ray-service"]], "3.2.4 LLM Pretraining": [[30, "llm-pretraining"]], "3.3 Consume LLM Service": [[45, "id7"]], "3.3 Consume delete_file API": [[11, "consume-delete-file-api"]], "3.3 Manage fine-tuning job": [[30, "manage-fine-tuning-job"]], "3.4 Leverage fine-tuned model": [[30, "leverage-fine-tuned-model"]], "4 TEI Reranking Service": [[115, "tei-reranking-service"]], "4. Assessing GenAI components and flows": [[267, "assessing-genai-components-and-flows"]], "4. Build CodeGen React UI Docker Image (Optional)": [[123, "build-codegen-react-ui-docker-image-optional"], [124, "build-codegen-react-ui-docker-image-optional"]], "4. Build LLM Image": [[111, "build-llm-image"], [112, "build-llm-image"], [113, "build-llm-image"], [114, "build-llm-image"], [164, "build-llm-image"], [173, "build-llm-image"], [174, "build-llm-image"]], "4. Build LVM Image (Xeon)": [[184, "build-lvm-image-xeon"]], "4. Build Nginx Docker Image": [[131, "build-nginx-docker-image"], [132, "build-nginx-docker-image"], [178, "build-nginx-docker-image"], [179, "build-nginx-docker-image"]], "4. Build React UI Docker Image": [[140, "build-react-ui-docker-image"]], "4. Build Rerank Image": [[116, "build-rerank-image"]], "4. Build TTS Image": [[104, "build-tts-image"], [105, "build-tts-image"]], "4. Build UI Docker Image": [[141, "build-ui-docker-image"], [150, "build-ui-docker-image"], [187, "build-ui-docker-image"]], "4. Build dataprep-multimodal-redis Image": [[161, "build-dataprep-multimodal-redis-image"], [162, "build-dataprep-multimodal-redis-image"]], "4. Build react UI Docker Image (Optional)": [[149, "build-react-ui-docker-image-optional"]], "4. Check each micro service used by the Mega Service": [[115, "check-each-micro-service-used-by-the-mega-service"]], "4. Compliance with Policies": [[241, "compliance-with-policies"]], "4. Data collection": [[110, "data-collection"], [110, "id4"], [110, "id9"]], "4. Delete ChatQnA and GMC": [[234, "delete-chatqna-and-gmc"]], "4. Metric for PCM(Intel\u00ae Performance Counter Monitor)": [[223, "metric-for-pcm-intel-performance-counter-monitor"]], "4. Permanent Ban": [[237, "permanent-ban"]], "4. Pull TGI Xeon Image": [[186, "pull-tgi-xeon-image"]], "4. Test GMC": [[195, "test-gmc"]], "4. Validated Model": [[50, "validated-model"]], "4. Validation": [[137, "validation"], [138, "validation"]], "4.1 Consume Upload API": [[17, "consume-upload-api"]], "4.1 Consume videos_with_transcripts API": [[12, "consume-videos-with-transcripts-api"]], "4.1 Use TGI": [[114, "use-tgi"]], "4.2 Consume generate_transcripts API": [[12, "consume-generate-transcripts-api"]], "4.2 Consume get_file API": [[17, "consume-get-file-api"]], "4.2 Use VLLM": [[114, "use-vllm"]], "4.3 Consume delete_file API": [[14, "consume-delete-file-api"], [17, "consume-delete-file-api"]], "4.3 Consume generate_captions API": [[12, "consume-generate-captions-api"]], "4.3 Use VLLM-on-Ray": [[114, "use-vllm-on-ray"]], "4.4 Consume get_videos API": [[12, "consume-get-videos-api"]], "4.5 Consume delete_videos API": [[12, "consume-delete-videos-api"]], "5 Reranking Microservice": [[115, "reranking-microservice"]], "5. Build Dataprep Image": [[111, "build-dataprep-image"], [112, "build-dataprep-image"], [113, "build-dataprep-image"], [114, "build-dataprep-image"], [164, "build-dataprep-image"], [184, "build-dataprep-image"]], "5. Build LLM Image": [[116, "build-llm-image"]], "5. Build MegaService Docker Image": [[161, "build-megaservice-docker-image"], [162, "build-megaservice-docker-image"], [173, "build-megaservice-docker-image"], [174, "build-megaservice-docker-image"]], "5. Build React UI Docker Image": [[141, "build-react-ui-docker-image"]], "5. Build react UI Docker Image (Optional)": [[150, "build-react-ui-docker-image-optional"]], "5. Clean up": [[110, "clean-up"], [110, "id5"], [110, "id10"]], "5. Community Assets": [[241, "community-assets"]], "5. Customize agent strategy": [[3, "customize-agent-strategy"]], "5. Grading Structure": [[267, "grading-structure"]], "5. Publish images": [[195, "publish-images"]], "5. Trouble shooting": [[137, "trouble-shooting"], [138, "trouble-shooting"]], "6 TGI Service": [[115, "tgi-service"]], "6. Build Dataprep Image": [[116, "build-dataprep-image"]], "6. Build Guardrails Docker Image (Optional)": [[114, "build-guardrails-docker-image-optional"]], "6. Build MegaService Docker Image": [[104, "build-megaservice-docker-image"], [105, "build-megaservice-docker-image"], [111, "build-megaservice-docker-image"], [112, "build-megaservice-docker-image"], [113, "build-megaservice-docker-image"], [184, "build-megaservice-docker-image"]], "6. Build Prompt Registry Image": [[164, "build-prompt-registry-image"]], "6. Build UI Docker Image": [[161, "build-ui-docker-image"], [162, "build-ui-docker-image"], [173, "build-ui-docker-image"]], "6. General Rules and Operations.": [[241, "general-rules-and-operations"]], "6. Reference flows": [[267, "reference-flows"]], "7 LLM Microservice": [[115, "llm-microservice"]], "7. Build Chat History Image": [[164, "build-chat-history-image"]], "7. Build MegaService Docker Image": [[114, "build-megaservice-docker-image"], [116, "build-megaservice-docker-image"]], "7. Build UI Docker Image": [[111, "build-ui-docker-image"], [112, "build-ui-docker-image"], [113, "build-ui-docker-image"], [184, "build-ui-docker-image"]], "7. Intellectual Property Policy": [[241, "intellectual-property-policy"]], "8 MegaService": [[115, "megaservice"]], "8. Amendments": [[241, "amendments"]], "8. Build Conversational React UI Docker Image (Optional)": [[112, "build-conversational-react-ui-docker-image-optional"], [113, "build-conversational-react-ui-docker-image-optional"]], "8. Build MegaService Docker Images": [[164, "build-megaservice-docker-images"]], "8. Build UI Docker Image": [[114, "build-ui-docker-image"], [116, "build-ui-docker-image"]], "8.1 Build ChatQnA MegaService Docker Images": [[164, "build-chatqna-megaservice-docker-images"]], "8.2 Build DocSum Megaservice Docker Images": [[164, "build-docsum-megaservice-docker-images"]], "8.3 Build CodeGen Megaservice Docker Images": [[164, "build-codegen-megaservice-docker-images"]], "8.4 Build FAQGen Megaservice Docker Images": [[164, "build-faqgen-megaservice-docker-images"]], "9. Build Conversational React UI Docker Image (Optional)": [[114, "build-conversational-react-ui-docker-image-optional"]], "9. Build Nginx Docker Image": [[112, "build-nginx-docker-image"]], "9. Build React UI Docker Image (Optional)": [[116, "build-react-ui-docker-image-optional"]], "9. Build UI Docker Image": [[164, "build-ui-docker-image"]], "A1: System Components": [[267, "a1-system-components"]], "A2: SW Architecture": [[267, "a2-sw-architecture"]], "A3: System Flows": [[267, "a3-system-flows"]], "A4.1 End-to-end assessment": [[267, "a4-1-end-to-end-assessment"]], "A4.2 Individual Components Assessment": [[267, "a4-2-individual-components-assessment"]], "A4: Select Specifications": [[267, "a4-select-specifications"]], "A5.1 Performance Grading": [[267, "a5-1-performance-grading"]], "A5.2 Features Grading": [[267, "a5-2-features-grading"]], "A5.3 Trustworthiness Grading": [[267, "a5-3-trustworthiness-grading"]], "A5.4 Enterprise-Ready Grading": [[267, "a5-4-enterprise-ready-grading"]], "A5: Grading": [[267, "a5-grading"]], "A6.1 \u2013 Xeon + Gaudi2 LLM RAG flow for Chat QnA": [[267, "a6-1-xeon-gaudi2-llm-rag-flow-for-chat-qna"]], "A6.2 - Multimodal Chat Over Images and Videos": [[267, "a6-2-multimodal-chat-over-images-and-videos"]], "A6.3 \u2013 Optimized Text and Multimodal RAG pipeline": [[267, "a6-3-optimized-text-and-multimodal-rag-pipeline"]], "A6: Reference Flows": [[267, "a6-reference-flows"]], "AI Models": [[284, "ai-models"], [284, "id2"], [284, "id6"], [284, "id10"], [284, "id14"], [284, "id18"], [284, "id22"]], "AI Tools Integration": [[284, "ai-tools-integration"], [284, "id3"], [284, "id7"], [284, "id11"], [284, "id15"], [284, "id19"], [284, "id23"]], "API Services Table of Contents": [[253, "api-services-table-of-contents"]], "API access": [[48, "api-access"]], "APISIX based implementation for cloud native environments": [[196, "apisix-based-implementation-for-cloud-native-environments"]], "ASR": [[102, "asr"]], "ASR Micro Service": [[253, "asr-micro-service"]], "ASR Microservice": [[6, "asr-microservice"]], "Acknowledgements": [[97, "acknowledgements"]], "Adding Edge Labels": [[256, "adding-edge-labels"]], "Additional Content": [[2, "additional-content"], [88, "additional-content"], [168, "additional-content"], [194, "additional-content"]], "Additional steps if your contribution is Hardware Specific": [[238, "additional-steps-if-your-contribution-is-hardware-specific"]], "Agent Microservice": [[3, "agent-microservice"], [277, "agent-microservice"]], "AgentQnA": [[191, "agentqna"]], "AgentQnA Application": [[265, "agentqna-application"]], "Agents for Question Answering": [[100, "agents-for-question-answering"]], "All The Ways To Contribute": [[238, "all-the-ways-to-contribute"]], "Alternative Tabbed Content": [[254, "alternative-tabbed-content"]], "Alternatives Considered": [[245, "alternatives-considered"], [246, "alternatives-considered"], [248, "alternatives-considered"]], "Appendix A \u2013 Draft OPEA Specifications": [[267, "appendix-a-draft-opea-specifications"]], "Architecture": [[168, "architecture"], [226, "architecture"], [232, "architecture"], [259, "architecture"]], "Architecture and Deploy details": [[109, "architecture-and-deploy-details"]], "Asr Microservice": [[277, "asr-microservice"]], "Attribution": [[237, "attribution"]], "AudioQnA": [[108, "audioqna"], [191, "audioqna"]], "AudioQnA Application": [[102, "audioqna-application"], [265, "audioqna-application"]], "AudioQnA accuracy Evaluation": [[103, "audioqna-accuracy-evaluation"]], "Aug 2024": [[284, "aug-2024"]], "Authentication and Authorization": [[252, "authentication-and-authorization"]], "Authentication and Authorization with APISIX and OIDC based Identity provider (Keycloak)": [[197, "authentication-and-authorization-with-apisix-and-oidc-based-identity-provider-keycloak"]], "Authentication and authorization": [[196, "authentication-and-authorization"]], "Author": [[245, "author"], [246, "author"], [247, "author"], [248, "author"], [249, "author"], [250, "author"]], "Auto-Tuning for ChatQnA: Optimizing Accuracy by Tuning Model Related Parameters": [[91, "auto-tuning-for-chatqna-optimizing-accuracy-by-tuning-model-related-parameters"]], "Auto-Tuning for ChatQnA: Optimizing Resource Allocation in Kubernetes": [[91, "auto-tuning-for-chatqna-optimizing-resource-allocation-in-kubernetes"]], "AutoRAG to evaluate the RAG system performance": [[96, "autorag-to-evaluate-the-rag-system-performance"]], "Avatar Chatbot design": [[249, "avatar-chatbot-design"]], "AvatarChatbot megaservice": [[249, "avatarchatbot-megaservice"]], "Background Colors": [[254, "background-colors"]], "Basic UI": [[260, "basic-ui"], [261, "basic-ui"], [261, "id4"], [263, "basic-ui"], [264, "basic-ui"]], "Basic Usage": [[94, "basic-usage"]], "Benchmark": [[88, "benchmark"]], "Benchmark tool preparation": [[110, "benchmark-tool-preparation"]], "Benchmark with Docker": [[110, "benchmark-with-docker"]], "Bias Detection Microservice": [[32, "bias-detection-microservice"]], "Binaries building": [[226, "binaries-building"]], "Binaries deleting": [[226, "binaries-deleting"]], "Branch-Specific File Links": [[254, "branch-specific-file-links"]], "Build": [[231, "build"]], "Build Dataprep Image": [[260, "build-dataprep-image"], [261, "build-dataprep-image"], [263, "build-dataprep-image"], [264, "build-dataprep-image"]], "Build Docker Image": [[8, "build-docker-image"], [13, "build-docker-image"], [15, "build-docker-image"], [16, "build-docker-image"], [29, "build-docker-image"], [48, "build-docker-image"], [49, "build-docker-image"], [51, "build-docker-image"], [52, "build-docker-image"], [60, "build-docker-image"], [66, "build-docker-image"], [68, "build-docker-image"], [86, "build-docker-image"]], "Build Docker Images": [[25, "build-docker-images"], [33, "build-docker-images"], [36, "build-docker-images"], [37, "build-docker-images"], [39, "build-docker-images"]], "Build Embedding Image": [[260, "build-embedding-image"], [261, "build-embedding-image"], [263, "build-embedding-image"], [264, "build-embedding-image"]], "Build LLM Image": [[260, "build-llm-image"], [263, "build-llm-image"], [264, "build-llm-image"]], "Build Langchain Docker": [[23, "build-langchain-docker"], [24, "build-langchain-docker"]], "Build Mega Service images": [[260, "build-mega-service-images"], [261, "build-mega-service-images"], [263, "build-mega-service-images"], [264, "build-mega-service-images"]], "Build Mega Service of AudioQnA on Gaudi": [[105, "build-mega-service-of-audioqna-on-gaudi"]], "Build Mega Service of AudioQnA on Xeon": [[104, "build-mega-service-of-audioqna-on-xeon"]], "Build Mega Service of ChatQnA (with Qdrant) on Xeon": [[113, "build-mega-service-of-chatqna-with-qdrant-on-xeon"]], "Build Mega Service of ChatQnA on AIPC": [[111, "build-mega-service-of-chatqna-on-aipc"]], "Build Mega Service of ChatQnA on Xeon": [[112, "build-mega-service-of-chatqna-on-xeon"]], "Build Mega Service of CodeTrans on Gaudi": [[132, "build-mega-service-of-codetrans-on-gaudi"]], "Build Mega Service of CodeTrans on Xeon": [[131, "build-mega-service-of-codetrans-on-xeon"]], "Build Mega Service of Document Summarization on Intel Xeon Processor": [[140, "build-mega-service-of-document-summarization-on-intel-xeon-processor"]], "Build Mega Service of FAQ Generation on Intel Xeon Processor": [[149, "build-mega-service-of-faq-generation-on-intel-xeon-processor"]], "Build Mega Service of MultimodalQnA on Gaudi": [[162, "build-mega-service-of-multimodalqna-on-gaudi"]], "Build Mega Service of MultimodalQnA on Xeon": [[161, "build-mega-service-of-multimodalqna-on-xeon"]], "Build Mega Service of Productivity Suite on Xeon": [[164, "build-mega-service-of-productivity-suite-on-xeon"]], "Build Mega Service of SearchQnA on Gaudi": [[174, "build-mega-service-of-searchqna-on-gaudi"]], "Build Mega Service of SearchQnA on Xeon": [[173, "build-mega-service-of-searchqna-on-xeon"]], "Build Mega Service of Translation on Xeon": [[178, "build-mega-service-of-translation-on-xeon"]], "Build Mega Service of VideoQnA on Xeon": [[184, "build-mega-service-of-videoqna-on-xeon"]], "Build Mega Service of VisualQnA on Xeon": [[186, "build-mega-service-of-visualqna-on-xeon"]], "Build MegaService of ChatQnA on Gaudi": [[114, "build-megaservice-of-chatqna-on-gaudi"]], "Build MegaService of ChatQnA on NVIDIA GPU": [[116, "build-megaservice-of-chatqna-on-nvidia-gpu"]], "Build MegaService of CodeGen on Gaudi": [[124, "build-megaservice-of-codegen-on-gaudi"]], "Build MegaService of CodeGen on Xeon": [[123, "build-megaservice-of-codegen-on-xeon"]], "Build MegaService of Document Summarization on Gaudi": [[141, "build-megaservice-of-document-summarization-on-gaudi"]], "Build MegaService of FAQ Generation on Gaudi": [[150, "build-megaservice-of-faq-generation-on-gaudi"]], "Build MegaService of Translation on Gaudi": [[179, "build-megaservice-of-translation-on-gaudi"]], "Build MegaService of VisualQnA on Gaudi": [[187, "build-megaservice-of-visualqna-on-gaudi"]], "Build Other Service images": [[260, "build-other-service-images"], [261, "build-other-service-images"], [263, "build-other-service-images"], [264, "build-other-service-images"]], "Build Rerank Image": [[260, "build-rerank-image"], [261, "build-rerank-image"], [263, "build-rerank-image"], [264, "build-rerank-image"]], "Build Retriever Image": [[260, "build-retriever-image"], [261, "build-retriever-image"], [263, "build-retriever-image"], [264, "build-retriever-image"]], "Build TEI Gaudi Image": [[261, "build-tei-gaudi-image"]], "Build docker": [[51, "build-docker"], [51, "id1"], [51, "id3"], [52, "build-docker"], [52, "id1"], [52, "id3"], [53, "build-docker"], [53, "id1"], [261, "build-docker"]], "Build the UI Image": [[260, "build-the-ui-image"], [261, "build-the-ui-image"], [263, "build-the-ui-image"], [264, "build-the-ui-image"]], "Build/Pull Microservice images": [[260, "build-pull-microservice-images"], [261, "build-pull-microservice-images"], [263, "build-pull-microservice-images"], [264, "build-pull-microservice-images"]], "Building and running": [[80, "building-and-running"]], "CHAT QNA": [[167, "chat-qna"]], "CODEGEN": [[167, "codegen"]], "CPU": [[88, "cpu"]], "CPU service": [[54, "cpu-service"]], "CRAG Benchmark for Agent QnA systems": [[95, "crag-benchmark-for-agent-qna-systems"]], "CRAG dataset": [[95, "crag-dataset"]], "CRUD (Chinese dataset)": [[97, "crud-chinese-dataset"]], "Chat": [[253, "chat"]], "Chat History with MongoDB": [[7, "chat-history-with-mongodb"]], "Chat with AI assistant": [[123, "chat-with-ai-assistant"], [124, "chat-with-ai-assistant"]], "ChatQnA": [[191, "chatqna"], [201, "chatqna"]], "ChatQnA Application": [[109, "chatqna-application"], [265, "chatqna-application"]], "ChatQnA Benchmarking": [[110, "chatqna-benchmarking"]], "ChatQnA Conversational UI": [[119, "chatqna-conversational-ui"]], "ChatQnA Customized UI": [[120, "chatqna-customized-ui"]], "ChatQnA Example Deployment Options": [[262, "chatqna-example-deployment-options"]], "ChatQnA Sample Guide": [[259, "chatqna-sample-guide"]], "ChatQnA Troubleshooting": [[202, "chatqna-troubleshooting"]], "ChatQnA Use Cases in Kubernetes Cluster via GMC": [[227, "chatqna-use-cases-in-kubernetes-cluster-via-gmc"]], "ChatQnA supports multiple LLM models": [[227, "chatqna-supports-multiple-llm-models"]], "ChatQnA with data preparation": [[227, "chatqna-with-data-preparation"]], "Chathistory Microservice": [[277, "chathistory-microservice"]], "Check Env Variables": [[260, "check-env-variables"], [261, "check-env-variables"], [263, "check-env-variables"], [264, "check-env-variables"]], "Check Service Status": [[109, "check-service-status"]], "Check docker container log": [[260, "check-docker-container-log"], [261, "check-docker-container-log"], [263, "check-docker-container-log"], [264, "check-docker-container-log"]], "Check microservice status": [[51, "check-microservice-status"]], "Check the container status": [[260, "check-the-container-status"], [261, "check-the-container-status"], [263, "check-the-container-status"], [264, "check-the-container-status"]], "Check the installation result": [[228, "check-the-installation-result"]], "Citation": [[1, "citation"], [87, "citation"], [98, "citation"], [159, "citation"], [193, "citation"]], "Clean Microservices": [[184, "clean-microservices"]], "Clean up": [[110, "id13"]], "Clone OPEA GenAIComps": [[45, "clone-opea-genaicomps"]], "Cloud Native": [[262, "cloud-native"]], "Code Gen": [[128, "code-gen"], [129, "code-gen"]], "Code Generation Application": [[121, "code-generation-application"]], "Code Suggestion": [[123, "code-suggestion"], [124, "code-suggestion"]], "Code Translation": [[135, "code-translation"]], "Code Translation Application": [[130, "code-translation-application"]], "Code and Command Examples": [[254, "code-and-command-examples"]], "CodeGen": [[191, "codegen"], [203, "codegen"]], "CodeGen Application": [[265, "codegen-application"]], "CodeGen accuracy Evaluation": [[122, "codegen-accuracy-evaluation"]], "CodeTrans": [[191, "codetrans"], [204, "codetrans"]], "CodeTrans Application": [[265, "codetrans-application"]], "Coding Guides": [[257, "coding-guides"]], "Community Discussions": [[238, "community-discussions"]], "Community Support": [[243, "community-support"]], "Compatibility": [[245, "compatibility"], [246, "compatibility"], [248, "compatibility"], [249, "compatibility"], [250, "compatibility"]], "Components": [[200, "components"]], "Configuration": [[80, "configuration"], [90, "configuration"]], "Configuration Files": [[91, "configuration-files"]], "Configuration file": [[94, "configuration-file"]], "Configure": [[89, "configure"]], "Configuring the ingress gateway": [[232, "configuring-the-ingress-gateway"]], "Constructing Services with yaml": [[245, "constructing-services-with-yaml"]], "Consume Chat Service": [[109, "consume-chat-service"]], "Consume ChatQnA Service with RAG": [[109, "consume-chatqna-service-with-rag"]], "Consume Code Translation Service": [[130, "consume-code-translation-service"]], "Consume CodeGen Service": [[121, "consume-codegen-service"]], "Consume Document Summarization Service": [[139, "consume-document-summarization-service"]], "Consume Instruction Tuning Service": [[156, "consume-instruction-tuning-service"]], "Consume Rerank Model Finetuning Service": [[169, "consume-rerank-model-finetuning-service"]], "Consume SearchQnA Service": [[172, "consume-searchqna-service"]], "Consume Web Retriever Service": [[86, "consume-web-retriever-service"]], "Consume retrieval tool": [[101, "consume-retrieval-tool"]], "Consume the Ollama Microservice": [[48, "consume-the-ollama-microservice"]], "Consume the Prediction Guard Microservice": [[49, "consume-the-prediction-guard-microservice"]], "Consume the microservice": [[51, "consume-the-microservice"]], "Consume vLLM Service": [[51, "consume-vllm-service"]], "Content Highlighting": [[254, "content-highlighting"]], "Continuous Integration (CICD) owners": [[242, "continuous-integration-cicd-owners"]], "Contribute a GenAI Component": [[238, "contribute-a-genai-component"]], "Contribute a GenAI Example": [[238, "contribute-a-genai-example"]], "Contributing Guides": [[243, "contributing-guides"]], "Contributing to OPEA": [[2, "contributing-to-opea"], [168, "contributing-to-opea"]], "Contribution": [[284, "contribution"], [284, "id1"], [284, "id5"], [284, "id9"], [284, "id13"], [284, "id17"], [284, "id21"]], "Contribution Guidelines": [[238, "contribution-guidelines"]], "Contributor Covenant Code of Conduct": [[237, "contributor-covenant-code-of-conduct"], [238, "contributor-covenant-code-of-conduct"]], "Conversational UI": [[260, "conversational-ui"], [261, "conversational-ui"], [261, "id5"], [263, "conversational-ui"], [264, "conversational-ui"]], "Cores Microservice": [[277, "cores-microservice"]], "Create AWS EKS Cluster in AWS Console": [[272, "create-aws-eks-cluster-in-aws-console"]], "Create Pull Request": [[238, "create-pull-request"]], "Create a new index from a loader": [[78, "create-a-new-index-from-a-loader"]], "Create a new index from texts": [[78, "create-a-new-index-from-texts"]], "Current Approach": [[250, "current-approach"]], "Customize": [[123, "customize"], [124, "customize"]], "DATA SOURCE": [[167, "data-source"]], "DOC SUMMARY": [[167, "doc-summary"]], "Data collection": [[110, "id12"]], "Dataprep": [[260, "dataprep"], [261, "dataprep"], [263, "dataprep"], [264, "dataprep"]], "Dataprep Microservice": [[10, "dataprep-microservice"], [277, "dataprep-microservice"]], "Dataprep Microservice for Multimodal Data with Redis": [[12, "dataprep-microservice-for-multimodal-data-with-redis"]], "Dataprep Microservice with Milvus": [[10, "dataprep-microservice-with-milvus"], [11, "dataprep-microservice-with-milvus"]], "Dataprep Microservice with Multimodal": [[10, "dataprep-microservice-with-multimodal"]], "Dataprep Microservice with Neo4J": [[13, "dataprep-microservice-with-neo4j"]], "Dataprep Microservice with PGVector": [[10, "dataprep-microservice-with-pgvector"], [14, "dataprep-microservice-with-pgvector"]], "Dataprep Microservice with Pinecone": [[10, "dataprep-microservice-with-pinecone"], [15, "dataprep-microservice-with-pinecone"]], "Dataprep Microservice with Qdrant": [[10, "dataprep-microservice-with-qdrant"], [16, "dataprep-microservice-with-qdrant"]], "Dataprep Microservice with Redis": [[10, "dataprep-microservice-with-redis"], [17, "dataprep-microservice-with-redis"]], "Dataprep Microservice with VDMS": [[10, "dataprep-microservice-with-vdms"], [18, "dataprep-microservice-with-vdms"]], "Dataprep Microservice\uff08Optional\uff09": [[260, "dataprep-microservice-optional"], [261, "dataprep-microservice-optional"], [263, "dataprep-microservice-optional"], [264, "dataprep-microservice-optional"]], "Dataset": [[103, "dataset"], [148, "dataset"]], "Delete Ray Cluster with Autoscaling": [[235, "delete-ray-cluster-with-autoscaling"]], "Delete all uploaded files and links": [[260, "delete-all-uploaded-files-and-links"], [261, "delete-all-uploaded-files-and-links"], [263, "delete-all-uploaded-files-and-links"], [264, "delete-all-uploaded-files-and-links"]], "Delete file": [[260, "delete-file"], [261, "delete-file"], [263, "delete-file"], [264, "delete-file"]], "Delete link": [[260, "delete-link"], [261, "delete-link"], [263, "delete-link"], [264, "delete-link"]], "Deploy AudioQnA Service": [[102, "deploy-audioqna-service"]], "Deploy AudioQnA in Kubernetes Cluster on Xeon and Gaudi": [[107, "deploy-audioqna-in-kubernetes-cluster-on-xeon-and-gaudi"]], "Deploy AudioQnA in a Kubernetes Cluster": [[106, "deploy-audioqna-in-a-kubernetes-cluster"]], "Deploy AudioQnA on Gaudi": [[102, "deploy-audioqna-on-gaudi"]], "Deploy AudioQnA on Xeon": [[102, "deploy-audioqna-on-xeon"]], "Deploy AudioQnA pipeline": [[107, "deploy-audioqna-pipeline"]], "Deploy Autoscaling Ray Cluster with KubeRay in Kubernetes Cluster": [[235, "deploy-autoscaling-ray-cluster-with-kuberay-in-kubernetes-cluster"]], "Deploy ChatQnA Megaservice and Microservices": [[268, "deploy-chatqna-megaservice-and-microservices"]], "Deploy ChatQnA Service": [[109, "deploy-chatqna-service"]], "Deploy ChatQnA in Kubernetes Cluster": [[117, "deploy-chatqna-in-kubernetes-cluster"]], "Deploy ChatQnA in Kubernetes Cluster on Xeon and Gaudi": [[118, "deploy-chatqna-in-kubernetes-cluster-on-xeon-and-gaudi"]], "Deploy ChatQnA into Kubernetes on Xeon & Gaudi with GMC": [[109, "deploy-chatqna-into-kubernetes-on-xeon-gaudi-with-gmc"]], "Deploy ChatQnA into Kubernetes on Xeon & Gaudi without GMC": [[109, "deploy-chatqna-into-kubernetes-on-xeon-gaudi-without-gmc"]], "Deploy ChatQnA into Kubernetes using Helm Chart": [[109, "deploy-chatqna-into-kubernetes-using-helm-chart"]], "Deploy ChatQnA on AI PC": [[109, "deploy-chatqna-on-ai-pc"]], "Deploy ChatQnA on Gaudi": [[109, "deploy-chatqna-on-gaudi"], [110, "deploy-chatqna-on-gaudi"]], "Deploy ChatQnA on NVIDIA GPU": [[109, "deploy-chatqna-on-nvidia-gpu"], [110, "deploy-chatqna-on-nvidia-gpu"]], "Deploy ChatQnA on Red Hat OpenShift Container Platform (RHOCP)": [[109, "deploy-chatqna-on-red-hat-openshift-container-platform-rhocp"]], "Deploy ChatQnA on Xeon": [[109, "deploy-chatqna-on-xeon"], [110, "deploy-chatqna-on-xeon"]], "Deploy ChatQnA pipeline": [[118, "deploy-chatqna-pipeline"], [227, "deploy-chatqna-pipeline"]], "Deploy ChatQnA service with Docker": [[110, "deploy-chatqna-service-with-docker"]], "Deploy Code Translation Service": [[130, "deploy-code-translation-service"]], "Deploy Code Translation on Gaudi": [[130, "deploy-code-translation-on-gaudi"]], "Deploy Code Translation on Xeon": [[130, "deploy-code-translation-on-xeon"]], "Deploy CodeGen Service": [[121, "deploy-codegen-service"]], "Deploy CodeGen in Kubernetes Cluster": [[125, "deploy-codegen-in-kubernetes-cluster"]], "Deploy CodeGen in a Kubernetes Cluster": [[126, "deploy-codegen-in-a-kubernetes-cluster"]], "Deploy CodeGen into Kubernetes using Helm Chart": [[121, "deploy-codegen-into-kubernetes-using-helm-chart"]], "Deploy CodeGen on Gaudi": [[121, "deploy-codegen-on-gaudi"]], "Deploy CodeGen on Xeon": [[121, "deploy-codegen-on-xeon"]], "Deploy CodeGen using Docker": [[121, "deploy-codegen-using-docker"]], "Deploy CodeGen using Kubernetes": [[121, "deploy-codegen-using-kubernetes"]], "Deploy CodeGen with ReactUI": [[127, "deploy-codegen-with-reactui"]], "Deploy CodeTrans in Kubernetes Cluster": [[133, "deploy-codetrans-in-kubernetes-cluster"]], "Deploy CodeTrans in a Kubernetes Cluster": [[134, "deploy-codetrans-in-a-kubernetes-cluster"]], "Deploy CodeTrans into Kubernetes using Helm Chart": [[130, "deploy-codetrans-into-kubernetes-using-helm-chart"]], "Deploy DocSum in Kubernetes Cluster": [[142, "deploy-docsum-in-kubernetes-cluster"], [143, "deploy-docsum-in-kubernetes-cluster"]], "Deploy DocSum into Kubernetes using Helm Chart": [[139, "deploy-docsum-into-kubernetes-using-helm-chart"]], "Deploy DocSum with ReactUI": [[144, "deploy-docsum-with-reactui"]], "Deploy Document Summarization Service": [[139, "deploy-document-summarization-service"]], "Deploy Examples": [[168, "deploy-examples"]], "Deploy FAQ Generation Service": [[147, "deploy-faq-generation-service"]], "Deploy FAQ Generation on Gaudi": [[147, "deploy-faq-generation-on-gaudi"]], "Deploy FAQ Generation on Xeon": [[147, "deploy-faq-generation-on-xeon"]], "Deploy FaqGen in Kubernetes Cluster": [[151, "deploy-faqgen-in-kubernetes-cluster"]], "Deploy FaqGen with ReactUI": [[153, "deploy-faqgen-with-reactui"]], "Deploy Instruction Tuning Service": [[156, "deploy-instruction-tuning-service"]], "Deploy Instruction Tuning Service on Gaudi": [[156, "deploy-instruction-tuning-service-on-gaudi"], [158, "deploy-instruction-tuning-service-on-gaudi"]], "Deploy Instruction Tuning Service on Xeon": [[156, "deploy-instruction-tuning-service-on-xeon"], [157, "deploy-instruction-tuning-service-on-xeon"]], "Deploy Kubernetes add-ons for OPEA": [[224, "deploy-kubernetes-add-ons-for-opea"]], "Deploy MultimodalQnA Service": [[160, "deploy-multimodalqna-service"]], "Deploy MultimodalQnA on Gaudi": [[160, "deploy-multimodalqna-on-gaudi"]], "Deploy MultimodalQnA on Xeon": [[160, "deploy-multimodalqna-on-xeon"]], "Deploy On Gaudi": [[106, "deploy-on-gaudi"], [117, "deploy-on-gaudi"], [125, "deploy-on-gaudi"], [133, "deploy-on-gaudi"], [142, "deploy-on-gaudi"], [151, "deploy-on-gaudi"], [180, "deploy-on-gaudi"], [188, "deploy-on-gaudi"]], "Deploy On Xeon": [[106, "deploy-on-xeon"], [117, "deploy-on-xeon"], [125, "deploy-on-xeon"], [133, "deploy-on-xeon"], [142, "deploy-on-xeon"], [151, "deploy-on-xeon"], [180, "deploy-on-xeon"], [188, "deploy-on-xeon"]], "Deploy Rerank Model Finetuning Service": [[169, "deploy-rerank-model-finetuning-service"]], "Deploy Rerank Model Finetuning Service on Gaudi": [[169, "deploy-rerank-model-finetuning-service-on-gaudi"], [171, "deploy-rerank-model-finetuning-service-on-gaudi"]], "Deploy Rerank Model Finetuning Service on Xeon": [[169, "deploy-rerank-model-finetuning-service-on-xeon"], [170, "deploy-rerank-model-finetuning-service-on-xeon"]], "Deploy SearchQnA Service": [[172, "deploy-searchqna-service"]], "Deploy SearchQnA in a Kubernetes Cluster": [[175, "deploy-searchqna-in-a-kubernetes-cluster"]], "Deploy SearchQnA on Gaudi": [[172, "deploy-searchqna-on-gaudi"]], "Deploy SearchQnA on Xeon": [[172, "deploy-searchqna-on-xeon"]], "Deploy Translation Service": [[177, "deploy-translation-service"]], "Deploy Translation in Kubernetes Cluster": [[180, "deploy-translation-in-kubernetes-cluster"]], "Deploy Translation in a Kubernetes Cluster": [[181, "deploy-translation-in-a-kubernetes-cluster"]], "Deploy Translation on Gaudi": [[177, "deploy-translation-on-gaudi"]], "Deploy Translation on Xeon": [[177, "deploy-translation-on-xeon"]], "Deploy UI": [[151, "deploy-ui"]], "Deploy VideoQnA Service": [[183, "deploy-videoqna-service"]], "Deploy VideoQnA on Xeon": [[183, "deploy-videoqna-on-xeon"]], "Deploy VisualQnA Service": [[185, "deploy-visualqna-service"]], "Deploy VisualQnA in Kubernetes Cluster": [[188, "deploy-visualqna-in-kubernetes-cluster"]], "Deploy VisualQnA in a Kubernetes Cluster": [[189, "deploy-visualqna-in-a-kubernetes-cluster"]], "Deploy VisualQnA on Gaudi": [[185, "deploy-visualqna-on-gaudi"]], "Deploy VisualQnA on Xeon": [[185, "deploy-visualqna-on-xeon"]], "Deploy on Gaudi": [[139, "deploy-on-gaudi"]], "Deploy on Xeon": [[139, "deploy-on-xeon"]], "Deploy the RAG application": [[126, "deploy-the-rag-application"], [134, "deploy-the-rag-application"], [175, "deploy-the-rag-application"], [181, "deploy-the-rag-application"]], "Deploy the RAG pipeline": [[143, "deploy-the-rag-pipeline"]], "Deploy the VisualQnA application": [[189, "deploy-the-visualqna-application"]], "Deploy the use case": [[260, "deploy-the-use-case"], [261, "deploy-the-use-case"], [263, "deploy-the-use-case"], [264, "deploy-the-use-case"]], "Deploy using Docker": [[139, "deploy-using-docker"]], "Deploy using Kubernetes with GMC": [[130, "deploy-using-kubernetes-with-gmc"], [139, "deploy-using-kubernetes-with-gmc"]], "Deploy using Kubernetes without GMC": [[130, "deploy-using-kubernetes-without-gmc"], [139, "deploy-using-kubernetes-without-gmc"]], "Deploy using native kubectl": [[226, "deploy-using-native-kubectl"]], "Deploy via helm chart": [[226, "deploy-via-helm-chart"]], "Deploy with Docker": [[130, "deploy-with-docker"]], "Deploy with helm charts": [[200, "deploy-with-helm-charts"]], "Deploying GenAI": [[252, "deploying-genai"]], "Deployment": [[231, "deployment"], [232, "deployment"], [259, "deployment"]], "Deployment Guide": [[168, "deployment-guide"]], "Deployment Type": [[284, "deployment-type"], [284, "id4"], [284, "id8"], [284, "id12"], [284, "id16"], [284, "id20"], [284, "id24"]], "Description": [[226, "description"]], "Design Proposal": [[245, "design-proposal"], [246, "design-proposal"], [247, "design-proposal"], [248, "design-proposal"], [249, "design-proposal"], [250, "design-proposal"]], "Design Space": [[250, "design-space"]], "Details": [[281, "details"], [282, "details"], [283, "details"]], "Developer Guides": [[257, "developer-guides"]], "Development": [[192, "development"], [231, "development"]], "Do I need to be a Linux Foundation member to join?": [[266, "do-i-need-to-be-a-linux-foundation-member-to-join"]], "Doc Summary": [[146, "doc-summary"]], "Doc Summary React": [[145, "doc-summary-react"], [154, "doc-summary-react"]], "DocIndexRetriever": [[191, "docindexretriever"]], "DocIndexRetriever Application": [[265, "docindexretriever-application"]], "DocRetriever Application": [[136, "docretriever-application"]], "DocRetriever Application with Docker": [[137, "docretriever-application-with-docker"], [138, "docretriever-application-with-docker"]], "DocSum": [[191, "docsum"], [221, "docsum"]], "DocSum Application": [[265, "docsum-application"]], "Docker Images": [[190, "docker-images"]], "Docker images building": [[226, "docker-images-building"]], "Document Summarization Application": [[139, "document-summarization-application"]], "Document Summary TGI Microservice": [[44, "document-summary-tgi-microservice"]], "Document Versioning": [[255, "document-versioning"]], "Documentation": [[238, "documentation"]], "Documentation Generation": [[254, "documentation-generation"]], "Documentation Guidelines": [[254, "documentation-guidelines"]], "Documentation Guides": [[257, "documentation-guides"]], "Documentation Organization": [[254, "documentation-organization"]], "Documentation Overview": [[255, "documentation-overview"]], "Documentation Presentation Theme": [[255, "documentation-presentation-theme"]], "Drawings": [[254, "drawings"]], "Drawings Using Graphviz": [[256, "drawings-using-graphviz"]], "Dump the configuration": [[93, "dump-the-configuration"]], "Embedding": [[253, "embedding"]], "Embedding Generation Prediction Guard Microservice": [[25, "embedding-generation-prediction-guard-microservice"]], "Embedding Micro Service": [[253, "embedding-micro-service"]], "Embedding Microservice": [[260, "embedding-microservice"], [261, "embedding-microservice"], [263, "embedding-microservice"], [264, "embedding-microservice"]], "Embedding Server": [[22, "embedding-server"]], "Embedding Service": [[260, "embedding-service"], [261, "embedding-service"], [263, "embedding-service"], [264, "embedding-service"]], "Embeddings Microservice": [[20, "embeddings-microservice"], [277, "embeddings-microservice"]], "Embeddings Microservice with Langchain TEI": [[26, "embeddings-microservice-with-langchain-tei"]], "Embeddings Microservice with Llama Index TEI": [[27, "embeddings-microservice-with-llama-index-tei"]], "Embeddings Microservice with Mosec": [[20, "embeddings-microservice-with-mosec"]], "Embeddings Microservice with Multimodal": [[20, "embeddings-microservice-with-multimodal"]], "Embeddings Microservice with Multimodal Clip": [[20, "embeddings-microservice-with-multimodal-clip"]], "Embeddings Microservice with Prediction Guard": [[20, "embeddings-microservice-with-prediction-guard"]], "Embeddings Microservice with TEI": [[20, "embeddings-microservice-with-tei"]], "Enable HPA": [[199, "enable-hpa"]], "Enable NRI in Containerd": [[225, "enable-nri-in-containerd"]], "Enable RDT": [[225, "enable-rdt"]], "Enforcement": [[237, "enforcement"]], "Enforcement Guidelines": [[237, "enforcement-guidelines"]], "Enforcement Responsibilities": [[237, "enforcement-responsibilities"]], "Enterprise Readiness Grade": [[267, "enterprise-readiness-grade"]], "Enterprise readiness": [[267, "enterprise-readiness"]], "Environment": [[97, "environment"]], "Evaluate": [[103, "evaluate"], [148, "evaluate"]], "Evaluate with Ragas": [[148, "evaluate-with-ragas"]], "Evaluating GenAI": [[258, "evaluating-genai"]], "Evaluation": [[88, "evaluation"], [97, "evaluation"], [97, "id3"], [103, "evaluation"]], "Evaluation FAQs": [[122, "evaluation-faqs"]], "Evaluation Framework": [[122, "evaluation-framework"]], "Evaluation Methodology": [[97, "evaluation-methodology"]], "Example Code for Customizing Gateway": [[245, "example-code-for-customizing-gateway"]], "Example Python Code for Constructing Services": [[245, "example-python-code-for-constructing-services"]], "Example images": [[190, "example-images"]], "Examples": [[98, "examples"], [200, "examples"]], "Expected Output": [[259, "expected-output"]], "FAQ Generation": [[155, "faq-generation"]], "FAQ Generation Application": [[147, "faq-generation-application"]], "FAQ Generator": [[167, "faq-generator"]], "FAQ and Troubleshooting": [[234, "faq-and-troubleshooting"]], "Factuality Check Prediction Guard Microservice": [[33, "factuality-check-prediction-guard-microservice"]], "FaqGen": [[191, "faqgen"]], "FaqGen Application": [[265, "faqgen-application"]], "FaqGen Evaluation": [[148, "faqgen-evaluation"]], "Features": [[88, "features"], [90, "features"], [231, "features"]], "Features / Functionality": [[267, "features-functionality"]], "Features Grade": [[267, "features-grade"]], "Feedback Management with MongoDB": [[28, "feedback-management-with-mongodb"]], "Feedback_management Microservice": [[277, "feedback-management-microservice"]], "File Names and Commands": [[254, "file-names-and-commands"]], "Filter Expected Warnings": [[255, "filter-expected-warnings"]], "Fine-tuning Microservice": [[30, "fine-tuning-microservice"]], "Finetuning Microservice": [[277, "finetuning-microservice"]], "Finite-State Machine": [[256, "finite-state-machine"]], "First Instruction Step": [[254, "first-instruction-step"]], "Four node test": [[110, "four-node-test"]], "From Source Code": [[200, "from-source-code"]], "Frontend UI": [[249, "frontend-ui"]], "Further References": [[98, "further-references"]], "Future Development": [[32, "future-development"], [38, "future-development"]], "GMC Deployment on K8s cluster": [[226, "gmc-deployment-on-k8s-cluster"]], "GMC build": [[226, "gmc-build"]], "Gateway": [[2, "gateway"], [245, "gateway"]], "Gateways: Customized Access to Mega- and Microservices": [[276, "gateways-customized-access-to-mega-and-microservices"]], "Gaudi2": [[88, "gaudi2"]], "GenAI Examples": [[265, "genai-examples"]], "GenAI Microservices": [[277, "genai-microservices"]], "GenAI Studio Approach": [[250, "genai-studio-approach"]], "GenAI Studio High Level Architecture": [[250, "genai-studio-high-level-architecture"]], "GenAI-microservices-connector(GMC)": [[270, "genai-microservices-connector-gmc"]], "GenAI-microservices-connector(GMC) Installation": [[270, "genai-microservices-connector-gmc-installation"]], "GenAIComps": [[2, "genaicomps"], [279, "genaicomps"], [280, "genaicomps"]], "GenAIComps Repository Code Owners": [[242, "genaicomps-repository-code-owners"]], "GenAIEval": [[88, "genaieval"]], "GenAIEval Repository Code Owners": [[242, "genaieval-repository-code-owners"]], "GenAIEvals": [[279, "genaievals"], [280, "genaievals"]], "GenAIExamples": [[279, "genaiexamples"], [280, "genaiexamples"]], "GenAIExamples Repository Code Owners": [[242, "genaiexamples-repository-code-owners"]], "GenAIInfra": [[194, "genaiinfra"], [279, "genaiinfra"], [280, "genaiinfra"]], "GenAIInfra Repository Code Owners": [[242, "genaiinfra-repository-code-owners"]], "General ChatQnA with preset RAG data": [[227, "general-chatqna-with-preset-rag-data"]], "General Metrics": [[9, "general-metrics"]], "Generate FAQs": [[148, "generate-faqs"]], "Generate FAQs with microservice": [[148, "generate-faqs-with-microservice"]], "Generate manifests from Helm Charts": [[200, "generate-manifests-from-helm-charts"]], "Generate the test output report": [[93, "generate-the-test-output-report"]], "Generation and Evaluation": [[122, "generation-and-evaluation"]], "Generative AI Components (GenAIComps)": [[2, "generative-ai-components-genaicomps"]], "Generative AI Examples": [[168, "generative-ai-examples"]], "Get Started": [[48, "get-started"], [49, "get-started"]], "Getting Started": [[77, "getting-started"], [110, "getting-started"], [168, "getting-started"], [226, "getting-started"]], "Getting Started with OPEA": [[268, "getting-started-with-opea"]], "Getting started": [[95, "getting-started"], [100, "getting-started"]], "Glossary of Terms": [[269, "glossary-of-terms"]], "Gotchas": [[199, "gotchas"]], "Grafana Dashboards": [[88, "grafana-dashboards"]], "Guardrail Microservice": [[261, "guardrail-microservice"]], "Guardrails": [[232, "guardrails"]], "Guardrails (optional)": [[261, "guardrails-optional"]], "Guardrails Microservice": [[34, "guardrails-microservice"], [277, "guardrails-microservice"]], "Hardrware_info.json": [[91, "hardrware-info-json"]], "Headings": [[254, "headings"]], "Health check the vector store": [[80, "health-check-the-vector-store"]], "Helm Charts": [[200, "helm-charts"], [252, "helm-charts"]], "Helm Charts Options": [[200, "helm-charts-options"]], "Helm chart for genai-microservices-connector(GMC)": [[228, "helm-chart-for-genai-microservices-connector-gmc"]], "Helm charts for deploying GenAI Components and Examples": [[200, "helm-charts-for-deploying-genai-components-and-examples"]], "HorizontalPodAutoscaler (HPA) support": [[199, "horizontalpodautoscaler-hpa-support"]], "How It Works": [[259, "how-it-works"]], "How do I pronounce OPEA?": [[266, "how-do-i-pronounce-opea"]], "How does it compare to other options for deploying Gen AI solutions within the enterprise?": [[266, "how-does-it-compare-to-other-options-for-deploying-gen-ai-solutions-within-the-enterprise"]], "How to Check and Validate Micro Service in the GenAI Example": [[115, "how-to-check-and-validate-micro-service-in-the-genai-example"]], "How to Use": [[98, "how-to-use"], [123, "how-to-use"], [124, "how-to-use"]], "How to build the binary and setup?": [[225, "how-to-build-the-binary-and-setup"]], "How to build the docker image and setup?": [[225, "how-to-build-the-docker-image-and-setup"]], "How to config proxy?": [[274, "how-to-config-proxy"]], "How to delete binary?": [[225, "how-to-delete-binary"]], "How to deploy a single node Kubernetes?": [[274, "how-to-deploy-a-single-node-kubernetes"]], "How to deploy on the K8s cluster?": [[225, "how-to-deploy-on-the-k8s-cluster"]], "How to register your own tools with agent": [[100, "how-to-register-your-own-tools-with-agent"]], "How to scale Kubernetes cluster to add more nodes?": [[274, "how-to-scale-kubernetes-cluster-to-add-more-nodes"]], "How to use": [[88, "how-to-use"]], "How-To Setup Observability for OPEA Workload in Kubernetes": [[223, "how-to-setup-observability-for-opea-workload-in-kubernetes"]], "IMPORTANT NOTE": [[201, "important-note"], [203, "important-note"]], "Image-to-Video Microservice": [[40, "image-to-video-microservice"]], "Image2video Microservice": [[277, "image2video-microservice"]], "Images": [[254, "images"]], "In the terminal": [[48, "in-the-terminal"]], "Index data into vector database": [[101, "index-data-into-vector-database"]], "Inference In Place": [[248, "inference-in-place"]], "Input and output": [[35, "input-and-output"]], "Inputs": [[98, "inputs"]], "Install": [[89, "install"], [197, "install"], [199, "install"]], "Install Copilot VSCode extension from Plugin Marketplace as the frontend": [[123, "install-copilot-vscode-extension-from-plugin-marketplace-as-the-frontend"], [124, "install-copilot-vscode-extension-from-plugin-marketplace-as-the-frontend"]], "Install GMC": [[270, "install-gmc"]], "Install KubeRay": [[235, "install-kuberay"]], "Install Requirements": [[10, "install-requirements"], [13, "install-requirements"], [15, "install-requirements"], [16, "install-requirements"], [66, "install-requirements"], [68, "install-requirements"]], "Install the Chart": [[210, "install-the-chart"]], "Install the Documentation Tools": [[255, "install-the-documentation-tools"]], "Installation": [[2, "installation"], [88, "installation"], [90, "installation"], [93, "installation"]], "Installation Guides": [[252, "installation-guides"]], "Installing the Chart": [[201, "installing-the-chart"], [203, "installing-the-chart"], [204, "installing-the-chart"], [213, "installing-the-chart"], [214, "installing-the-chart"], [215, "installing-the-chart"], [216, "installing-the-chart"], [218, "installing-the-chart"], [220, "installing-the-chart"], [221, "installing-the-chart"]], "Installing the GMC Helm Chart": [[228, "installing-the-gmc-helm-chart"]], "Instruction Steps": [[254, "instruction-steps"]], "Instruction Tuning": [[156, "instruction-tuning"]], "InstructionTuning": [[191, "instructiontuning"]], "InstructionTuning Application": [[265, "instructiontuning-application"]], "Integrating Guardrails in the ingress gateway": [[232, "integrating-guardrails-in-the-ingress-gateway"]], "Intel\u00ae Gaudi\u00ae Base Operator for Kubernetes": [[222, "intel-gaudi-base-operator-for-kubernetes"]], "Intended Uses": [[98, "intended-uses"]], "Intent Detection Microservice by TGI": [[41, "intent-detection-microservice-by-tgi"]], "Intent_detection Microservice": [[277, "intent-detection-microservice"]], "Interact with ChatQnA Megaservice and Microservice": [[268, "interact-with-chatqna-megaservice-and-microservice"]], "Interacting with ChatQnA deployment": [[260, "interacting-with-chatqna-deployment"], [261, "interacting-with-chatqna-deployment"], [263, "interacting-with-chatqna-deployment"], [264, "interacting-with-chatqna-deployment"]], "Internal Cross-Reference Linking": [[254, "internal-cross-reference-linking"]], "Introduction": [[32, "introduction"], [38, "introduction"], [48, "introduction"], [77, "introduction"], [89, "introduction"], [97, "introduction"], [168, "introduction"], [199, "introduction"], [226, "introduction"]], "Invoke Microservice": [[13, "invoke-microservice"], [15, "invoke-microservice"], [16, "invoke-microservice"]], "Is there a cost for joining?": [[266, "is-there-a-cost-for-joining"]], "Istio based implementation for cloud native environments": [[196, "istio-based-implementation-for-cloud-native-environments"]], "July 2024": [[284, "july-2024"]], "June 2024": [[284, "june-2024"]], "Key Features": [[91, "key-features"]], "Key Implementation Details": [[259, "key-implementation-details"]], "Knowledge Graph Microservice": [[42, "knowledge-graph-microservice"]], "Knowledgegraphs Microservice": [[277, "knowledgegraphs-microservice"]], "Kubernetes": [[262, "kubernetes"]], "Kubernetes Addons": [[252, "kubernetes-addons"]], "Kubernetes Cluster Example": [[110, "kubernetes-cluster-example"]], "Kubernetes Installation Options": [[271, "kubernetes-installation-options"]], "Kubernetes Installation using AWS EKS Cluster": [[272, "kubernetes-installation-using-aws-eks-cluster"]], "Kubernetes Platform Optimization with Resource Management": [[89, "kubernetes-platform-optimization-with-resource-management"]], "Kubernetes installation demo using kubeadm": [[273, "kubernetes-installation-demo-using-kubeadm"]], "Kubernetes installation using Kubespray": [[274, "kubernetes-installation-using-kubespray"]], "Kubernetes platform optimization": [[88, "kubernetes-platform-optimization"]], "LLM Generation Micro Service": [[253, "llm-generation-micro-service"]], "LLM Microservice": [[45, "llm-microservice"], [260, "llm-microservice"], [261, "llm-microservice"], [263, "llm-microservice"], [264, "llm-microservice"]], "LLM Native Microservice": [[46, "llm-native-microservice"], [47, "llm-native-microservice"]], "LLM Service": [[260, "llm-service"], [261, "llm-service"], [261, "id1"], [263, "llm-service"], [264, "llm-service"]], "LM-Eval Microservice": [[54, "lm-eval-microservice"]], "LVM Microservice": [[55, "lvm-microservice"], [57, "lvm-microservice"]], "LVM Prediction Guard Microservice": [[56, "lvm-prediction-guard-microservice"]], "Language Translation": [[182, "language-translation"], [191, "language-translation"]], "Launch ASR microservice": [[103, "launch-asr-microservice"]], "Launch CodeGen microservice": [[122, "launch-codegen-microservice"]], "Launch FaQGen microservice": [[148, "launch-faqgen-microservice"]], "Launch HuggingFace endpoint on Intel\u2019s Gaudi machines": [[99, "launch-huggingface-endpoint-on-intel-s-gaudi-machines"]], "Launch Service of LLM-as-a-Judge": [[97, "launch-service-of-llm-as-a-judge"]], "Launch Service of RAG System": [[97, "launch-service-of-rag-system"], [97, "id2"]], "Launch TGI service": [[148, "launch-tgi-service"]], "Launch UI": [[260, "launch-ui"], [261, "launch-ui"], [261, "id3"], [263, "launch-ui"], [264, "launch-ui"]], "Launch agent QnA system": [[95, "launch-agent-qna-system"]], "Launch microservices": [[101, "launch-microservices"]], "Launch the microservice": [[51, "launch-the-microservice"], [52, "launch-the-microservice"], [53, "launch-the-microservice"]], "Launch the service": [[53, "launch-the-service"]], "Launch vLLM service": [[51, "launch-vllm-service"], [51, "id2"], [52, "launch-vllm-service"], [52, "id2"]], "Launch vLLM service on multiple nodes": [[51, "launch-vllm-service-on-multiple-nodes"], [52, "launch-vllm-service-on-multiple-nodes"]], "Launch vLLM service on single node": [[51, "launch-vllm-service-on-single-node"], [52, "launch-vllm-service-on-single-node"]], "Launch with Nginx": [[112, "launch-with-nginx"], [114, "launch-with-nginx"], [116, "launch-with-nginx"], [131, "launch-with-nginx"], [132, "launch-with-nginx"]], "Launch with origin port": [[112, "launch-with-origin-port"], [114, "launch-with-origin-port"], [116, "launch-with-origin-port"], [131, "launch-with-origin-port"], [132, "launch-with-origin-port"]], "Legal Information": [[1, "legal-information"], [87, "legal-information"], [159, "legal-information"], [193, "legal-information"]], "Leveraging Istio to compose an OPEA Pipeline with authentication and authorization enabled": [[198, "leveraging-istio-to-compose-an-opea-pipeline-with-authentication-and-authorization-enabled"]], "License": [[1, "license"], [87, "license"], [159, "license"], [193, "license"]], "Limitations and Bias": [[98, "limitations-and-bias"]], "List Configurable Parameters": [[253, "list-configurable-parameters"]], "List Services": [[253, "list-services"]], "Lists": [[254, "lists"]], "Llms Microservice": [[277, "llms-microservice"]], "Lvms Microservice": [[277, "lvms-microservice"]], "ML strategy": [[35, "ml-strategy"]], "Manifest preparation": [[110, "manifest-preparation"]], "Markdown vs. RestructuredText": [[254, "markdown-vs-restructuredtext"]], "May 2024": [[284, "may-2024"]], "MegaService": [[2, "megaservice"], [260, "id1"], [261, "id2"], [263, "id1"], [264, "id1"]], "Megaservice": [[245, "megaservice"], [260, "megaservice"], [261, "megaservice"], [263, "megaservice"], [264, "megaservice"]], "Megaservices: A Comprehensive Solution": [[276, "megaservices-a-comprehensive-solution"]], "Member companies at launch:": [[236, "member-companies-at-launch"]], "Metric Card for BLEU": [[98, "metric-card-for-bleu"]], "Metric Description": [[98, "metric-description"]], "Metrics": [[9, "metrics"], [103, "metrics"], [110, "metrics"]], "MicroService": [[2, "microservice"]], "Microservice": [[245, "microservice"]], "Microservice Outline and Diagram": [[259, "microservice-outline-and-diagram"]], "Microservice images": [[190, "microservice-images"]], "Microservices Connector": [[252, "microservices-connector"]], "Microservices: Flexible and Scalable Architecture": [[276, "microservices-flexible-and-scalable-architecture"]], "Milestone 1 (May, Done)": [[285, "milestone-1-may-done"]], "Milestone 2 (June)": [[285, "milestone-2-june"]], "Milestone 3 (July)": [[285, "milestone-3-july"]], "Milestone 4 (Aug)": [[285, "milestone-4-aug"]], "Miscs": [[245, "miscs"], [246, "miscs"], [247, "miscs"], [248, "miscs"], [249, "miscs"]], "Monitoring": [[259, "monitoring"]], "Monitoring OPEA Service with Prometheus and Grafana dashboard": [[109, "monitoring-opea-service-with-prometheus-and-grafana-dashboard"]], "More flags about memory bandwidth exporter": [[225, "more-flags-about-memory-bandwidth-exporter"]], "Motivation": [[245, "motivation"], [246, "motivation"], [247, "motivation"], [248, "motivation"], [249, "motivation"], [250, "motivation"]], "Mounting models in the container": [[232, "mounting-models-in-the-container"]], "Multi-Column Lists": [[254, "multi-column-lists"]], "Multi-Services Deployment": [[248, "multi-services-deployment"]], "MultiHop (English dataset)": [[97, "multihop-english-dataset"]], "Multimodal CLIP Embeddings Microservice": [[24, "multimodal-clip-embeddings-microservice"]], "Multimodal Dataprep Microservice with VDMS": [[19, "multimodal-dataprep-microservice-with-vdms"]], "Multimodal Embeddings Microservice": [[23, "multimodal-embeddings-microservice"]], "MultimodalQnA": [[191, "multimodalqna"]], "MultimodalQnA Application": [[160, "multimodalqna-application"], [265, "multimodalqna-application"]], "MultimodalQnA Demo on Gaudi2": [[160, "multimodalqna-demo-on-gaudi2"]], "Multiple video upload": [[12, "multiple-video-upload"]], "Multiple video-transcript pair upload": [[12, "multiple-video-transcript-pair-upload"]], "NER strategy": [[35, "ner-strategy"]], "NOTES": [[273, "notes"]], "NRI Plugins": [[89, "nri-plugins"]], "NRI topology-aware resource policy": [[89, "nri-topology-aware-resource-policy"]], "NVIDIA GPU Quick-Start Guide": [[234, "nvidia-gpu-quick-start-guide"]], "Network Port & Security": [[112, "network-port-security"]], "Neural Chat": [[176, "neural-chat"]], "Next Step": [[226, "next-step"], [276, "next-step"]], "Next step": [[228, "next-step"]], "Nginx Microservice": [[277, "nginx-microservice"]], "Nginx for Microservice Forwarding": [[58, "nginx-for-microservice-forwarding"]], "Node configuration": [[273, "node-configuration"]], "Node preparation": [[274, "node-preparation"]], "Non-ASCII Characters": [[254, "non-ascii-characters"]], "Notes": [[96, "notes"]], "OPEA 2024 - 2025 Roadmap": [[284, "opea-2024-2025-roadmap"]], "OPEA API Service Spec (v0.9)": [[253, "opea-api-service-spec-v0-9"]], "OPEA Benchmark Tool": [[90, "opea-benchmark-tool"]], "OPEA CI/CD Roadmap": [[285, "opea-ci-cd-roadmap"]], "OPEA Community": [[243, "opea-community"]], "OPEA Documentation Generation": [[255, "opea-documentation-generation"]], "OPEA Frequently Asked Questions": [[266, "opea-frequently-asked-questions"]], "OPEA Highlight": [[279, "opea-highlight"]], "OPEA Highlights": [[280, "opea-highlights"]], "OPEA Mega Service API": [[253, "opea-mega-service-api"]], "OPEA Micro Service API": [[253, "opea-micro-service-api"]], "OPEA Overview": [[276, "opea-overview"]], "OPEA Pipeline Proxy": [[231, "opea-pipeline-proxy"]], "OPEA Project": [[236, "opea-project"]], "OPEA Project Architecture": [[276, "opea-project-architecture"]], "OPEA Project Code Owners": [[242, "opea-project-code-owners"]], "OPEA Project Documentation": [[275, "opea-project-documentation"]], "OPEA Release Notes v0.6": [[279, "opea-release-notes-v0-6"]], "OPEA Release Notes v0.7": [[280, "opea-release-notes-v0-7"]], "OPEA Release Notes v0.8": [[281, "opea-release-notes-v0-8"]], "OPEA Release Notes v0.9": [[282, "opea-release-notes-v0-9"]], "OPEA Release Notes v1.0": [[283, "opea-release-notes-v1-0"]], "OPEA adaption of ragas (LLM-as-a-judge evaluation of Retrieval Augmented Generation)": [[99, "opea-adaption-of-ragas-llm-as-a-judge-evaluation-of-retrieval-augmented-generation"]], "Objective": [[245, "objective"], [246, "objective"], [247, "objective"], [248, "objective"], [249, "objective"], [250, "objective"]], "Observability": [[248, "observability"]], "Ollama Service": [[260, "ollama-service"]], "Open Platform for Enterprise AI (OPEA) Framework Draft Proposal": [[267, "open-platform-for-enterprise-ai-opea-framework-draft-proposal"]], "Open an existing dataset": [[78, "open-an-existing-dataset"]], "Other Operations": [[253, "other-operations"]], "Other configs (parser, splitter and the embedder)": [[80, "other-configs-parser-splitter-and-the-embedder"]], "Our Pledge": [[237, "our-pledge"]], "Our Standards": [[237, "our-standards"]], "Output": [[91, "output"]], "Output Values": [[98, "output-values"]], "Overview": [[95, "overview"], [100, "overview"], [194, "overview"], [259, "overview"], [260, "overview"], [261, "overview"], [263, "overview"], [264, "overview"]], "PII Detection Microservice": [[35, "pii-detection-microservice"]], "PII Detection Prediction Guard Microservice": [[36, "pii-detection-prediction-guard-microservice"]], "Page Not Found": [[0, "page-not-found"]], "Part 1: Application Build and Configuration": [[250, "part-1-application-build-and-configuration"]], "Part 2: Benchmark and Evaluation": [[250, "part-2-benchmark-and-evaluation"]], "Part 3: Enterprise Deployment": [[250, "part-3-enterprise-deployment"]], "Perform authentication and authorization via Bearer JWT tokens and curl": [[198, "perform-authentication-and-authorization-via-bearer-jwt-tokens-and-curl"]], "Perform authentication and authorization via JWT tokens generated by OIDC provider": [[198, "perform-authentication-and-authorization-via-jwt-tokens-generated-by-oidc-provider"]], "Perform authentication and authorization via fake JWT tokens": [[198, "perform-authentication-and-authorization-via-fake-jwt-tokens"]], "Perform authentication and authorization via oauth2-proxy and OIDC provider and UI": [[198, "perform-authentication-and-authorization-via-oauth2-proxy-and-oidc-provider-and-ui"]], "Performance": [[267, "performance"]], "Performance Grade": [[267, "performance-grade"]], "Performance Result": [[103, "performance-result"], [148, "performance-result"]], "Performance tips": [[51, "performance-tips"], [52, "performance-tips"]], "Persona": [[250, "persona"]], "Personas": [[226, "personas"]], "Pinecone setup": [[82, "pinecone-setup"]], "Pipeline Proxy": [[252, "pipeline-proxy"]], "Plan Execute": [[4, "plan-execute"]], "Post-install": [[199, "post-install"]], "Pre-conditions": [[199, "pre-conditions"]], "Prediction Guard Introduction": [[49, "prediction-guard-introduction"]], "Prepare": [[223, "prepare"]], "Prepare (Building / Pulling) Docker images": [[260, "prepare-building-pulling-docker-images"], [261, "prepare-building-pulling-docker-images"], [263, "prepare-building-pulling-docker-images"], [264, "prepare-building-pulling-docker-images"]], "Prepare Dataset": [[91, "prepare-dataset"], [97, "prepare-dataset"], [97, "id1"]], "Preparing the model used in Guardrails": [[232, "preparing-the-model-used-in-guardrails"]], "Prerequirements": [[93, "prerequirements"]], "Prerequisite": [[97, "prerequisite"], [168, "prerequisite"], [194, "prerequisite"], [198, "prerequisite"], [234, "prerequisite"]], "Prerequisites": [[90, "prerequisites"], [110, "prerequisites"], [192, "prerequisites"], [197, "prerequisites"], [226, "prerequisites"], [260, "prerequisites"], [261, "prerequisites"], [263, "prerequisites"], [264, "prerequisites"], [268, "prerequisites"], [272, "prerequisites"], [274, "prerequisites"]], "Prerequisites for Deploying CodeGen with ReactUI": [[127, "prerequisites-for-deploying-codegen-with-reactui"]], "Prerequisites for Deploying DocSum with ReactUI": [[144, "prerequisites-for-deploying-docsum-with-reactui"]], "Prerequisites for Deploying FaqGen with ReactUI": [[153, "prerequisites-for-deploying-faqgen-with-reactui"]], "Productivity Suite Application": [[163, "productivity-suite-application"]], "Productivity Suite React UI": [[167, "productivity-suite-react-ui"]], "ProductivitySuite": [[191, "productivitysuite"]], "ProductivitySuite Application": [[265, "productivitysuite-application"]], "Project Governance": [[243, "project-governance"]], "Prometheus": [[199, "prometheus"]], "Prompt Injection Detection Prediction Guard Microservice": [[37, "prompt-injection-detection-prediction-guard-microservice"]], "Prompt Registry with MongoDB": [[59, "prompt-registry-with-mongodb"]], "Prompt_registry Microservice": [[277, "prompt-registry-microservice"]], "Proposal": [[245, "proposal"]], "Proposing New Features": [[238, "proposing-new-features"]], "Publish Content": [[255, "publish-content"]], "Pull Request Acceptance Criteria": [[238, "pull-request-acceptance-criteria"]], "Pull Request Review": [[238, "pull-request-review"]], "Pull Request Status Checks Overview": [[238, "pull-request-status-checks-overview"]], "Pull Request Template": [[238, "pull-request-template"]], "Purpose": [[110, "purpose"], [259, "purpose"]], "Q1 2025": [[284, "q1-2025"]], "Q4 2024": [[284, "q4-2024"]], "Query the microservice": [[52, "query-the-microservice"], [53, "query-the-microservice"]], "Query the service": [[53, "query-the-service"]], "Quick Start: 1.Setup Environment Variable": [[109, "quick-start-1-setup-environment-variable"], [112, "quick-start-1-setup-environment-variable"], [114, "quick-start-1-setup-environment-variable"], [116, "quick-start-1-setup-environment-variable"]], "Quick Start: 2.Run Docker Compose": [[109, "quick-start-2-run-docker-compose"], [112, "quick-start-2-run-docker-compose"], [114, "quick-start-2-run-docker-compose"], [116, "quick-start-2-run-docker-compose"]], "Quick reference": [[274, "quick-reference"]], "QuickStart: 3.Consume the ChatQnA Service": [[109, "quickstart-3-consume-the-chatqna-service"], [112, "quickstart-3-consume-the-chatqna-service"], [114, "quickstart-3-consume-the-chatqna-service"], [116, "quickstart-3-consume-the-chatqna-service"]], "RAG Agent": [[5, "rag-agent"]], "RAG Reranking Micro Service": [[253, "rag-reranking-micro-service"]], "RAG Retrieval Micro Service": [[253, "rag-retrieval-micro-service"]], "RAG evaluation": [[96, "rag-evaluation"]], "REF": [[202, "ref"]], "RFC Archive": [[251, "rfc-archive"]], "RFC Content": [[250, "rfc-content"]], "RFC Proposals": [[243, "rfc-proposals"]], "RFC Template": [[244, "rfc-template"]], "Ragas Microservice": [[277, "ragas-microservice"]], "React UI (Optional)": [[140, "react-ui-optional"]], "Real-time demo": [[249, "real-time-demo"]], "Release Branches": [[195, "release-branches"]], "Release Notes": [[278, "release-notes"]], "Remove a policy": [[89, "remove-a-policy"]], "Reporting Issues": [[238, "reporting-issues"]], "Reporting a Vulnerability": [[239, "reporting-a-vulnerability"]], "Request": [[253, "request"], [253, "id2"], [253, "id4"], [253, "id6"], [253, "id8"], [253, "id10"], [253, "id12"], [253, "id14"], [253, "id16"]], "Request for Comments (RFCs)": [[244, "request-for-comments-rfcs"]], "Required Models": [[109, "required-models"], [112, "required-models"], [113, "required-models"], [114, "required-models"], [116, "required-models"], [121, "required-models"], [130, "required-models"], [131, "required-models"], [132, "required-models"], [133, "required-models"], [134, "required-models"], [139, "required-models"], [140, "required-models"], [141, "required-models"], [149, "required-models"], [150, "required-models"], [151, "required-models"], [160, "required-models"], [161, "required-models"], [162, "required-models"], [178, "required-models"], [179, "required-models"], [183, "required-models"], [185, "required-models"]], "Rerank Microservice": [[64, "rerank-microservice"]], "Rerank Model Finetuning": [[169, "rerank-model-finetuning"]], "RerankFinetuning": [[191, "rerankfinetuning"]], "RerankFinetuning Application": [[265, "rerankfinetuning-application"]], "Reranking Microservice": [[61, "reranking-microservice"], [63, "reranking-microservice"], [260, "reranking-microservice"], [261, "reranking-microservice"], [263, "reranking-microservice"], [264, "reranking-microservice"]], "Reranking Service": [[260, "reranking-service"], [261, "reranking-service"], [263, "reranking-service"], [264, "reranking-service"]], "Reranks Microservice": [[277, "reranks-microservice"]], "Resource requests": [[199, "resource-requests"]], "Resources": [[243, "resources"]], "Response": [[253, "response"], [253, "id3"], [253, "id5"], [253, "id7"], [253, "id9"], [253, "id11"], [253, "id13"], [253, "id15"], [253, "id17"]], "Retrieval tool for agent": [[101, "retrieval-tool-for-agent"]], "Retriever Microservice": [[65, "retriever-microservice"], [67, "retriever-microservice"], [70, "retriever-microservice"], [72, "retriever-microservice"], [73, "retriever-microservice"], [74, "retriever-microservice"], [260, "retriever-microservice"], [261, "retriever-microservice"], [263, "retriever-microservice"], [264, "retriever-microservice"]], "Retriever Microservice with Milvus": [[65, "retriever-microservice-with-milvus"], [66, "retriever-microservice-with-milvus"]], "Retriever Microservice with Multimodal": [[65, "retriever-microservice-with-multimodal"]], "Retriever Microservice with Neo4J": [[68, "retriever-microservice-with-neo4j"]], "Retriever Microservice with PGVector": [[65, "retriever-microservice-with-pgvector"]], "Retriever Microservice with Pathway": [[65, "retriever-microservice-with-pathway"], [69, "retriever-microservice-with-pathway"]], "Retriever Microservice with QDrant": [[65, "retriever-microservice-with-qdrant"]], "Retriever Microservice with Qdrant": [[71, "retriever-microservice-with-qdrant"]], "Retriever Microservice with Redis": [[65, "retriever-microservice-with-redis"]], "Retriever Microservice with VDMS": [[65, "retriever-microservice-with-vdms"]], "Retrievers Microservice": [[277, "retrievers-microservice"]], "Roadmap": [[100, "roadmap"]], "Roadmaps": [[243, "roadmaps"]], "Run CRAG benchmark": [[95, "run-crag-benchmark"]], "Run Docker with CLI": [[8, "run-docker-with-cli"], [13, "run-docker-with-cli"], [15, "run-docker-with-cli"], [16, "run-docker-with-cli"], [29, "run-docker-with-cli"], [60, "run-docker-with-cli"], [66, "run-docker-with-cli"], [68, "run-docker-with-cli"]], "Run Docker with Docker Compose": [[13, "run-docker-with-docker-compose"], [15, "run-docker-with-docker-compose"], [16, "run-docker-with-docker-compose"]], "Run OPEA ragas pipeline using your desired list of metrics": [[99, "run-opea-ragas-pipeline-using-your-desired-list-of-metrics"]], "Run a test": [[93, "run-a-test"]], "Run tests": [[110, "id11"]], "Run the Documentation Processors": [[255, "run-the-documentation-processors"]], "Run the Ollama Microservice": [[48, "run-the-ollama-microservice"]], "Run the Predictionguard Microservice": [[49, "run-the-predictionguard-microservice"]], "Run the Tuning script": [[91, "run-the-tuning-script"]], "Sanity Check": [[260, "sanity-check"], [261, "sanity-check"], [263, "sanity-check"], [264, "sanity-check"]], "Scope": [[237, "scope"]], "Screen Shot": [[167, "screen-shot"], [167, "id1"], [167, "id2"]], "Screen Shots": [[167, "screen-shots"]], "Screenshots": [[164, "screenshots"], [164, "id1"], [164, "id2"], [164, "id3"], [164, "id4"]], "Script Usage Notice": [[239, "script-usage-notice"]], "Scripts": [[252, "scripts"]], "Scripts and tools": [[233, "scripts-and-tools"]], "SearchQnA": [[191, "searchqna"]], "SearchQnA Application": [[172, "searchqna-application"], [265, "searchqna-application"]], "Second Instruction Step": [[254, "second-instruction-step"]], "Sep 2024": [[284, "sep-2024"]], "Service URL Setting": [[123, "service-url-setting"], [124, "service-url-setting"]], "Service preparation": [[96, "service-preparation"]], "Set Up the Documentation Working Folders": [[255, "set-up-the-documentation-working-folders"]], "Set Up the Grafana Dashboard": [[259, "set-up-the-grafana-dashboard"]], "Set Up the Prometheus Server": [[259, "set-up-the-prometheus-server"]], "Set the required environment variables:": [[268, "set-the-required-environment-variables"]], "Set up OPEA microservice": [[53, "set-up-opea-microservice"]], "Set up VLLM Ray Gaudi Service": [[53, "set-up-vllm-ray-gaudi-service"]], "Set up environment": [[53, "set-up-environment"]], "Setting up the Pathway data sources": [[80, "setting-up-the-pathway-data-sources"]], "Setup": [[48, "setup"], [78, "setup"], [225, "setup"]], "Setup ChatQnA Parameters": [[268, "setup-chatqna-parameters"]], "Setup Environment Variable": [[121, "setup-environment-variable"], [130, "setup-environment-variable"], [139, "setup-environment-variable"], [160, "setup-environment-variable"], [172, "setup-environment-variable"], [185, "setup-environment-variable"]], "Setup Environment Variables": [[8, "setup-environment-variables"], [13, "setup-environment-variables"], [13, "id1"], [15, "setup-environment-variables"], [15, "id1"], [16, "setup-environment-variables"], [16, "id1"], [25, "setup-environment-variables"], [29, "setup-environment-variables"], [33, "setup-environment-variables"], [36, "setup-environment-variables"], [37, "setup-environment-variables"], [39, "setup-environment-variables"], [60, "setup-environment-variables"], [66, "setup-environment-variables"], [68, "setup-environment-variables"], [111, "setup-environment-variables"], [112, "setup-environment-variables"], [113, "setup-environment-variables"], [114, "setup-environment-variables"], [116, "setup-environment-variables"], [123, "setup-environment-variables"], [124, "setup-environment-variables"], [131, "setup-environment-variables"], [132, "setup-environment-variables"], [140, "setup-environment-variables"], [141, "setup-environment-variables"], [149, "setup-environment-variables"], [150, "setup-environment-variables"], [161, "setup-environment-variables"], [162, "setup-environment-variables"], [164, "setup-environment-variables"], [178, "setup-environment-variables"], [179, "setup-environment-variables"], [184, "setup-environment-variables"], [186, "setup-environment-variables"], [187, "setup-environment-variables"]], "Setup Kubernetes cluster": [[194, "setup-kubernetes-cluster"], [234, "setup-kubernetes-cluster"]], "Setup Prometheus and Grafana to visualize microservice metrics": [[92, "setup-prometheus-and-grafana-to-visualize-microservice-metrics"]], "Setup memory bandwidth exporter": [[225, "setup-memory-bandwidth-exporter"]], "Simple Directed Graph": [[256, "simple-directed-graph"]], "Single Node": [[262, "single-node"]], "Single node on-prem deployment with Ollama on AIPC": [[260, "single-node-on-prem-deployment-with-ollama-on-aipc"]], "Single node on-prem deployment with TGI on Nvidia gpu": [[263, "single-node-on-prem-deployment-with-tgi-on-nvidia-gpu"]], "Single node on-prem deployment with vLLM or TGI on Gaudi AI Accelerator": [[261, "single-node-on-prem-deployment-with-vllm-or-tgi-on-gaudi-ai-accelerator"]], "Single node on-prem deployment with vLLM or TGI on Xeon Scalable processors": [[264, "single-node-on-prem-deployment-with-vllm-or-tgi-on-xeon-scalable-processors"]], "Single node test": [[110, "single-node-test"]], "Single video upload": [[12, "single-video-upload"]], "Single video-transcript pair upload": [[12, "single-video-transcript-pair-upload"]], "Specific Metrics": [[9, "specific-metrics"]], "Start Chroma Server": [[77, "id1"]], "Start Chroma server": [[77, "start-chroma-server"]], "Start Document Preparation Microservice for Neo4J with Python Script": [[13, "start-document-preparation-microservice-for-neo4j-with-python-script"]], "Start Document Preparation Microservice for Pinecone with Python Script": [[15, "start-document-preparation-microservice-for-pinecone-with-python-script"]], "Start Document Preparation Microservice for Qdrant with Python Script": [[16, "start-document-preparation-microservice-for-qdrant-with-python-script"]], "Start Embedding Service with Local Model": [[26, "start-embedding-service-with-local-model"], [27, "start-embedding-service-with-local-model"]], "Start Embedding Service with TEI": [[26, "start-embedding-service-with-tei"], [27, "start-embedding-service-with-tei"]], "Start LanceDB Server": [[78, "start-lancedb-server"]], "Start Log Output": [[77, "start-log-output"]], "Start Microservice Docker Containers": [[131, "start-microservice-docker-containers"], [132, "start-microservice-docker-containers"], [140, "start-microservice-docker-containers"], [141, "start-microservice-docker-containers"], [149, "start-microservice-docker-containers"], [150, "start-microservice-docker-containers"], [178, "start-microservice-docker-containers"], [179, "start-microservice-docker-containers"]], "Start Microservice with Docker": [[86, "start-microservice-with-docker"]], "Start Milvus Server": [[66, "start-milvus-server"]], "Start Milvus server": [[79, "start-milvus-server"]], "Start Neo4J Server": [[13, "start-neo4j-server"], [68, "start-neo4j-server"]], "Start PGVector server": [[81, "start-pgvector-server"]], "Start Pinecone Server": [[15, "start-pinecone-server"]], "Start Qdrant Server": [[16, "start-qdrant-server"]], "Start Qdrant server": [[83, "start-qdrant-server"]], "Start Ray Cluster with Autoscaling": [[235, "start-ray-cluster-with-autoscaling"]], "Start Redis server": [[84, "start-redis-server"]], "Start Retriever Service": [[66, "start-retriever-service"], [68, "start-retriever-service"], [69, "start-retriever-service"]], "Start Service": [[25, "start-service"], [33, "start-service"], [36, "start-service"], [37, "start-service"], [39, "start-service"]], "Start TEI Service": [[86, "start-tei-service"]], "Start VDMS server": [[85, "start-vdms-server"]], "Start Web Retriever Service": [[86, "start-web-retriever-service"]], "Start all the services Docker Containers": [[111, "start-all-the-services-docker-containers"], [112, "start-all-the-services-docker-containers"], [113, "start-all-the-services-docker-containers"], [114, "start-all-the-services-docker-containers"], [116, "start-all-the-services-docker-containers"], [161, "start-all-the-services-docker-containers"], [162, "start-all-the-services-docker-containers"], [164, "start-all-the-services-docker-containers"], [186, "start-all-the-services-docker-containers"], [187, "start-all-the-services-docker-containers"]], "Start all the services with Docker Containers": [[184, "start-all-the-services-with-docker-containers"]], "Start the Docker Containers for All Services": [[123, "start-the-docker-containers-for-all-services"], [124, "start-the-docker-containers-for-all-services"]], "Start the Pathway Vector DB Server": [[80, "start-the-pathway-vector-db-server"]], "Stateful Guardrails": [[248, "stateful-guardrails"]], "Status": [[245, "status"], [246, "status"], [247, "status"], [248, "status"], [249, "status"], [250, "status"]], "Step 0. Clean up the environment": [[273, "step-0-clean-up-the-environment"]], "Step 1. Install relevant components": [[273, "step-1-install-relevant-components"]], "Step 1. Set up Kubespray and Ansible": [[274, "step-1-set-up-kubespray-and-ansible"]], "Step 1: Install ChatQnA by Helm": [[223, "step-1-install-chatqna-by-helm"]], "Step 1: Install PCM": [[223, "step-1-install-pcm"]], "Step 1: Install Prometheus&Grafana": [[223, "step-1-install-prometheus-grafana"]], "Step 1: Install daemonset": [[223, "step-1-install-daemonset"]], "Step 2. Build your own inventory": [[274, "step-2-build-your-own-inventory"]], "Step 2. Create the k8s cluster": [[273, "step-2-create-the-k8s-cluster"]], "Step 2: Install all the serviceMonitor": [[223, "step-2-install-all-the-servicemonitor"]], "Step 2: Install metric-exporter": [[223, "step-2-install-metric-exporter"]], "Step 2: Modify & Install pcm-service": [[223, "step-2-modify-install-pcm-service"]], "Step 2: Verify the installation": [[223, "step-2-verify-the-installation"]], "Step 3 (optional) Reset Kubernetes cluster": [[273, "step-3-optional-reset-kubernetes-cluster"]], "Step 3. Define Kubernetes configuration": [[274, "step-3-define-kubernetes-configuration"]], "Step 3: Install pcm serviceMonitor": [[223, "step-3-install-pcm-servicemonitor"]], "Step 3: Install service-monitor": [[223, "step-3-install-service-monitor"]], "Step 3: Install the dashboard": [[223, "step-3-install-the-dashboard"]], "Step 3: Port-forward to access Grafana": [[223, "step-3-port-forward-to-access-grafana"]], "Step 4. Deploy Kubernetes": [[274, "step-4-deploy-kubernetes"]], "Step 4: Access Grafana": [[223, "step-4-access-grafana"]], "Step 4: Install the pcm dashboard": [[223, "step-4-install-the-pcm-dashboard"]], "Step 4: Verify the metrics": [[223, "step-4-verify-the-metrics"]], "Step 5. Create kubectl configuration": [[274, "step-5-create-kubectl-configuration"]], "Step 5: Import the dashboard into Grafana": [[223, "step-5-import-the-dashboard-into-grafana"]], "Step-by-Step guidelines": [[238, "step-by-step-guidelines"], [238, "id1"]], "Stop the services": [[260, "stop-the-services"], [261, "stop-the-services"], [263, "stop-the-services"], [264, "stop-the-services"]], "Stragegy and Scope of Work": [[250, "stragegy-and-scope-of-work"]], "StressCli": [[93, "stresscli"]], "Submitting Pull Requests": [[238, "submitting-pull-requests"]], "Summary and Next Steps": [[259, "summary-and-next-steps"]], "Support": [[238, "support"]], "Supported Examples": [[168, "supported-examples"], [191, "supported-examples"]], "Supported Models": [[102, "supported-models"]], "Svelte UI": [[140, "svelte-ui"]], "TEI Embedding Service": [[260, "tei-embedding-service"], [261, "tei-embedding-service"], [263, "tei-embedding-service"], [264, "tei-embedding-service"]], "TEI Reranking Service": [[260, "tei-reranking-service"], [261, "tei-reranking-service"], [263, "tei-reranking-service"], [264, "tei-reranking-service"]], "TGI FAQGen LLM Microservice": [[43, "tgi-faqgen-llm-microservice"]], "TGI LLM Microservice": [[50, "tgi-llm-microservice"]], "TGI Q and A": [[202, "tgi-q-and-a"]], "TGI Service": [[263, "tgi-service"]], "TSC Members (as of September 6, 2024)": [[240, "id1"]], "TTS": [[102, "tts"]], "TTS Microservice": [[75, "tts-microservice"]], "Table of Contents": [[90, "table-of-contents"], [199, "table-of-contents"], [200, "table-of-contents"]], "Table title": [[254, "id2"]], "Tables": [[254, "tables"], [256, "tables"]], "Tabs, Spaces, and Indenting": [[254, "tabs-spaces-and-indenting"]], "Technical Charter (the \u201cCharter\u201d) for OPEA a Series of LF Projects, LLC": [[241, "technical-charter-the-charter-for-opea-a-series-of-lf-projects-llc"]], "Technical Steering Committee": [[236, "technical-steering-committee"]], "Technical Steering Committee (TSC)": [[240, "technical-steering-committee-tsc"]], "Technical Steering Committee Members": [[240, "technical-steering-committee-members"]], "Telemetry for OPEA": [[9, "telemetry-for-opea"]], "Test Cases": [[90, "test-cases"]], "Test Configurations": [[110, "test-configurations"]], "Test Steps": [[110, "test-steps"]], "Test Suite Configuration": [[90, "test-suite-configuration"]], "Testing": [[192, "testing"]], "Thanks to these contributors": [[281, "thanks-to-these-contributors"]], "To run GenAIInfra on NVIDIA GPUs": [[234, "to-run-genaiinfra-on-nvidia-gpus"]], "Toxicity Checking Prediction Guard Microservice": [[39, "toxicity-checking-prediction-guard-microservice"]], "Toxicity Detection Microservice": [[38, "toxicity-detection-microservice"]], "Tracing": [[9, "tracing"]], "Translation Application": [[177, "translation-application"], [265, "translation-application"]], "Troubleshooting": [[99, "troubleshooting"], [109, "troubleshooting"], [121, "troubleshooting"], [130, "troubleshooting"], [139, "troubleshooting"], [172, "troubleshooting"], [201, "troubleshooting"], [259, "troubleshooting"]], "Troubleshooting GMC Custom Resource\uff08CR\uff09": [[229, "troubleshooting-gmc-custom-resource-cr"]], "Troubleshooting guide": [[226, "troubleshooting-guide"]], "Trust and Safety with LLM": [[31, "trust-and-safety-with-llm"]], "Trustworthiness Grade": [[267, "trustworthiness-grade"]], "Tts Microservice": [[277, "tts-microservice"]], "Tuning Config Parameters": [[91, "tuning-config-parameters"]], "Two node test": [[110, "two-node-test"]], "Understanding OPEA\u2019s Core Components": [[268, "understanding-opea-s-core-components"]], "Uninstall": [[197, "uninstall"], [228, "uninstall"]], "Uninstall KubeRay": [[235, "uninstall-kuberay"]], "Update a file to database": [[202, "update-a-file-to-database"]], "Update values": [[197, "update-values"]], "Upload RAG Files (Optional)": [[109, "upload-rag-files-optional"]], "Uploading images to an AWS Private Registry": [[272, "uploading-images-to-an-aws-private-registry"]], "Usage": [[48, "usage"], [78, "usage"], [90, "usage"], [91, "usage"], [93, "usage"], [197, "usage"]], "Usage guide for genai-microservices-connector(GMC)": [[230, "usage-guide-for-genai-microservices-connector-gmc"]], "Usages": [[194, "usages"], [234, "usages"]], "Use Case Setup": [[260, "use-case-setup"], [261, "use-case-setup"], [263, "use-case-setup"], [264, "use-case-setup"]], "Use GMC and Istio to compose an OPEA Pipeline with authentication and authorization enabled": [[230, "use-gmc-and-istio-to-compose-an-opea-pipeline-with-authentication-and-authorization-enabled"]], "Use GMC to adjust the chatQnA Pipeline": [[230, "use-gmc-to-adjust-the-chatqna-pipeline"]], "Use GMC to compose a chatQnA Pipeline": [[230, "use-gmc-to-compose-a-chatqna-pipeline"], [270, "use-gmc-to-compose-a-chatqna-pipeline"]], "Use GMC to delete the chatQnA Pipeline": [[230, "use-gmc-to-delete-the-chatqna-pipeline"]], "Use GenAI Microservices Connector (GMC) to deploy and adjust GenAIExamples": [[194, "use-genai-microservices-connector-gmc-to-deploy-and-adjust-genaiexamples"]], "Use GenAI Microservices Connector (GMC) to deploy and adjust GenAIExamples on NVIDIA GPUs": [[234, "use-genai-microservices-connector-gmc-to-deploy-and-adjust-genaiexamples-on-nvidia-gpus"]], "Use LLM-as-judge to grade the answers": [[95, "use-llm-as-judge-to-grade-the-answers"]], "Use LVM (Large Vision Model) for Summarizing Image Data": [[10, "use-lvm-large-vision-model-for-summarizing-image-data"]], "Use TGI as backend": [[112, "use-tgi-as-backend"], [164, "use-tgi-as-backend"]], "Use helm charts to deploy": [[194, "use-helm-charts-to-deploy"]], "Use vLLM as backend": [[112, "use-vllm-as-backend"]], "User data": [[99, "user-data"]], "Using Helm Charts repository": [[200, "using-helm-charts-repository"]], "Using Persistent Volume": [[200, "using-persistent-volume"]], "Using Private Docker Hub": [[200, "using-private-docker-hub"]], "Using prebuilt images": [[107, "using-prebuilt-images"], [118, "using-prebuilt-images"], [227, "using-prebuilt-images"]], "VLLM-Ray Endpoint Service": [[53, "vllm-ray-endpoint-service"]], "Validate CPU affinity and hardware alignment in containers": [[89, "validate-cpu-affinity-and-hardware-alignment-in-containers"]], "Validate MicroServices and MegaService": [[114, "validate-microservices-and-megaservice"], [116, "validate-microservices-and-megaservice"], [187, "validate-microservices-and-megaservice"]], "Validate Microservices": [[111, "validate-microservices"], [112, "validate-microservices"], [113, "validate-microservices"], [131, "validate-microservices"], [132, "validate-microservices"], [140, "validate-microservices"], [141, "validate-microservices"], [149, "validate-microservices"], [150, "validate-microservices"], [161, "validate-microservices"], [162, "validate-microservices"], [178, "validate-microservices"], [179, "validate-microservices"], [184, "validate-microservices"], [186, "validate-microservices"]], "Validate against the spec": [[93, "validate-against-the-spec"]], "Validate microservice": [[260, "validate-microservice"], [261, "validate-microservice"], [263, "validate-microservice"], [264, "validate-microservice"]], "Validate policy status": [[89, "validate-policy-status"]], "Validate services": [[100, "validate-services"], [101, "validate-services"]], "Validate the MicroServices and MegaService": [[123, "validate-the-microservices-and-megaservice"], [124, "validate-the-microservices-and-megaservice"]], "Validated LLM Models": [[45, "validated-llm-models"]], "Validating the result": [[232, "validating-the-result"]], "Validation Matrix and Prerequisites": [[259, "validation-matrix-and-prerequisites"]], "Value Proposition": [[250, "value-proposition"]], "Values": [[201, "values"], [203, "values"], [204, "values"], [205, "values"], [206, "values"], [207, "values"], [208, "values"], [209, "values"], [210, "values"], [211, "values"], [212, "values"], [213, "values"], [214, "values"], [215, "values"], [216, "values"], [217, "values"], [218, "values"], [219, "values"], [220, "values"], [221, "values"]], "Values from Popular Papers": [[98, "values-from-popular-papers"]], "VectorDB": [[260, "vectordb"], [261, "vectordb"], [263, "vectordb"], [264, "vectordb"]], "Vectorstores Microservice": [[76, "vectorstores-microservice"], [277, "vectorstores-microservice"]], "Vectorstores Microservice with Chroma": [[76, "vectorstores-microservice-with-chroma"]], "Vectorstores Microservice with LanceDB": [[76, "vectorstores-microservice-with-lancedb"]], "Vectorstores Microservice with Milvus": [[76, "vectorstores-microservice-with-milvus"]], "Vectorstores Microservice with PGVector": [[76, "vectorstores-microservice-with-pgvector"]], "Vectorstores Microservice with Pathway": [[76, "vectorstores-microservice-with-pathway"]], "Vectorstores Microservice with Pinecone": [[76, "vectorstores-microservice-with-pinecone"]], "Vectorstores Microservice with Qdrant": [[76, "vectorstores-microservice-with-qdrant"]], "Vectorstores Microservice with Redis": [[76, "vectorstores-microservice-with-redis"]], "Vectorstores Microservice with VDMS": [[76, "vectorstores-microservice-with-vdms"]], "Verify": [[199, "verify"], [201, "verify"], [203, "verify"], [204, "verify"], [205, "verify"], [206, "verify"], [207, "verify"], [208, "verify"], [209, "verify"], [210, "verify"], [211, "verify"], [212, "verify"], [213, "verify"], [214, "verify"], [215, "verify"], [216, "verify"], [217, "verify"], [218, "verify"], [219, "verify"], [220, "verify"], [221, "verify"]], "Verify Services": [[106, "verify-services"], [117, "verify-services"], [125, "verify-services"], [127, "verify-services"], [133, "verify-services"], [142, "verify-services"], [144, "verify-services"], [151, "verify-services"], [153, "verify-services"], [180, "verify-services"], [188, "verify-services"]], "Verify the workload through UI": [[201, "verify-the-workload-through-ui"], [203, "verify-the-workload-through-ui"], [204, "verify-the-workload-through-ui"], [221, "verify-the-workload-through-ui"]], "Verify the workload through curl command": [[201, "verify-the-workload-through-curl-command"], [203, "verify-the-workload-through-curl-command"], [204, "verify-the-workload-through-curl-command"], [221, "verify-the-workload-through-curl-command"]], "VideoQnA": [[191, "videoqna"]], "VideoQnA Application": [[183, "videoqna-application"], [265, "videoqna-application"]], "Visual Data Management System (VDMS)": [[74, "visual-data-management-system-vdms"]], "Visual Guide to Deployment": [[268, "visual-guide-to-deployment"]], "Visual Question and Answering": [[185, "visual-question-and-answering"]], "VisualQnA": [[191, "visualqna"]], "VisualQnA Application": [[265, "visualqna-application"]], "Visualization": [[9, "visualization"]], "Visualize metrics": [[9, "visualize-metrics"]], "Visualize tracing": [[9, "visualize-tracing"]], "We provided DocRetriever with different deployment infra": [[136, "we-provided-docretriever-with-different-deployment-infra"]], "Web Retriever Microservice": [[86, "web-retriever-microservice"]], "Web_retrievers Microservice": [[277, "web-retrievers-microservice"]], "What are the different ways partners can contribute to OPEA?": [[266, "what-are-the-different-ways-partners-can-contribute-to-opea"]], "What does OPEA acronym stand for?": [[266, "what-does-opea-acronym-stand-for"]], "What initial companies and open-source projects joined OPEA?": [[266, "what-initial-companies-and-open-source-projects-joined-opea"]], "What is Intel contributing?": [[266, "what-is-intel-contributing"]], "What is OPEA?": [[266, "what-is-opea"]], "What is OPEA\u2019s mission?": [[266, "what-is-opea-s-mission"]], "What problems are faced by GenAI deployments within the enterprise?": [[266, "what-problems-are-faced-by-genai-deployments-within-the-enterprise"]], "What\u2019s New in OPEA v0.8": [[281, "whats-new-in-opea-v0-8"]], "What\u2019s New in OPEA v0.9": [[282, "whats-new-in-opea-v0-9"]], "What\u2019s New in OPEA v1.0": [[283, "whats-new-in-opea-v1-0"]], "What\u2019s Next": [[268, "whats-next"]], "When you say Technical Conceptual Framework, what components are included?": [[266, "when-you-say-technical-conceptual-framework-what-components-are-included"]], "Where can I report a bug or vulnerability?": [[266, "where-can-i-report-a-bug-or-vulnerability"]], "Where can partners see the latest draft of the Conceptual Framework spec?": [[266, "where-can-partners-see-the-latest-draft-of-the-conceptual-framework-spec"]], "Why Agent for question answering?": [[100, "why-agent-for-question-answering"]], "Why now?": [[266, "why-now"]], "Will OPEA reference implementations work with proprietary components?": [[266, "will-opea-reference-implementations-work-with-proprietary-components"]], "With streaming": [[49, "with-streaming"]], "With the Docker CLI": [[69, "with-the-docker-cli"]], "With the Docker compose": [[69, "with-the-docker-compose"]], "Without streaming": [[49, "without-streaming"]], "Workflow of the deployed Document Summarization Service": [[139, "workflow-of-the-deployed-document-summarization-service"]], "a function to get the endpoint of service": [[202, "a-function-to-get-the-endpoint-of-service"]], "accuracy Result": [[122, "accuracy-result"]], "animation microservice": [[249, "animation-microservice"]], "asr": [[205, "asr"]], "bigcode-evaluation-harness": [[88, "bigcode-evaluation-harness"]], "build Mosec endpoint docker image": [[21, "build-mosec-endpoint-docker-image"]], "build cpu docker": [[54, "build-cpu-docker"]], "build embedding microservice docker image": [[21, "build-embedding-microservice-docker-image"]], "build reranking Mosec endpoint docker image": [[62, "build-reranking-mosec-endpoint-docker-image"]], "build reranking microservice docker image": [[62, "build-reranking-microservice-docker-image"]], "chatqna_neuralchat_rerank_latest.yaml": [[91, "chatqna-neuralchat-rerank-latest-yaml"]], "command line usage": [[88, "command-line-usage"], [88, "id1"], [122, "command-line-usage"]], "data-prep": [[206, "data-prep"]], "define the namespace of service": [[202, "define-the-namespace-of-service"]], "docs Repository Code Owners": [[242, "docs-repository-code-owners"]], "embedding-usvc": [[207, "embedding-usvc"]], "evaluate the model": [[54, "evaluate-the-model"]], "function call usage": [[88, "function-call-usage"], [88, "id2"]], "genai-microservices-connector(GMC)": [[226, "genai-microservices-connector-gmc"]], "get the embedding of input": [[202, "get-the-embedding-of-input"]], "get the retriever docs": [[202, "get-the-retriever-docs"]], "guardrails-usvc": [[208, "guardrails-usvc"]], "launch Mosec endpoint docker container": [[21, "launch-mosec-endpoint-docker-container"], [62, "launch-mosec-endpoint-docker-container"]], "launch embedding microservice docker container": [[21, "launch-embedding-microservice-docker-container"], [62, "launch-embedding-microservice-docker-container"]], "llm-uservice": [[209, "llm-uservice"]], "lm-evaluation-harness": [[88, "lm-evaluation-harness"]], "locust scripts for OPEA ChatQnA": [[94, "locust-scripts-for-opea-chatqna"]], "memory bandwidth exporter": [[225, "memory-bandwidth-exporter"]], "pre-commit testing": [[192, "pre-commit-testing"]], "redis-vector-db": [[210, "redis-vector-db"]], "remote service usage": [[88, "remote-service-usage"]], "reranking the docs": [[202, "reranking-the-docs"]], "reranking-usvc": [[211, "reranking-usvc"]], "retriever-usvc": [[212, "retriever-usvc"]], "run client test": [[21, "run-client-test"], [62, "run-client-test"]], "speecht5": [[213, "speecht5"]], "start the server": [[54, "start-the-server"]], "stresscli.py": [[93, "stresscli-py"]], "tei": [[214, "tei"]], "teirerank": [[215, "teirerank"]], "tgi": [[216, "tgi"]], "tts": [[217, "tts"]], "vLLM Endpoint Service": [[51, "vllm-endpoint-service"], [52, "vllm-endpoint-service"]], "vLLM and TGI Service": [[264, "vllm-and-tgi-service"]], "vllm": [[218, "vllm"]], "web-retriever": [[219, "web-retriever"]], "whisper": [[220, "whisper"]], "\u267b\ufe0f 3. Clean": [[57, "clean"], [64, "clean"]], "\u2699\ufe0f Implementation": [[7, "implementation"], [28, "implementation"], [59, "implementation"]], "\u26a0\ufe0f Prerequisites for Deploying ProductivitySuite with ReactUI": [[166, "prerequisites-for-deploying-productivitysuite-with-reactui"]], "\u2705 2. Test": [[57, "test"], [64, "test"]], "\u2705 Invoke Microservice": [[8, "invoke-microservice"], [29, "invoke-microservice"], [60, "invoke-microservice"]], "\u2705 Validate Microservices": [[164, "validate-microservices"]], "\u2705 Verify Services": [[166, "verify-services"]], "\u2753 FAQ Generation": [[163, "faq-generation"]], "\u2753 FAQ Generator": [[164, "faq-generator"]], "\ud83c\udf10 Deploying ProductivitySuite": [[166, "deploying-productivitysuite"]], "\ud83c\udf9b\ufe0f Data Source": [[164, "data-source"]], "\ud83c\udf9b\ufe0f User Context Management": [[163, "user-context-management"]], "\ud83d\udc33 Build Docker Images": [[164, "build-docker-images"]], "\ud83d\udcac Chat with Documents": [[163, "chat-with-documents"]], "\ud83d\udcacChatQnA": [[164, "chatqna"]], "\ud83d\udcbb Code Generation": [[163, "code-generation"]], "\ud83d\udcbb Codegen": [[164, "codegen"]], "\ud83d\udcc4 Content Summarization": [[163, "content-summarization"]], "\ud83d\udcda Document Summarization": [[164, "document-summarization"]], "\ud83d\udcda Setup Guide": [[163, "setup-guide"]], "\ud83d\udcdd Chat History Microservice": [[7, "chat-history-microservice"]], "\ud83d\udcdd Chat History Microservice with MongoDB": [[8, "chat-history-microservice-with-mongodb"]], "\ud83d\udcf8 Project Screenshots": [[108, "project-screenshots"], [119, "project-screenshots"], [120, "project-screenshots"], [128, "project-screenshots"], [129, "project-screenshots"], [135, "project-screenshots"], [145, "project-screenshots"], [146, "project-screenshots"], [154, "project-screenshots"], [155, "project-screenshots"], [167, "project-screenshots"], [176, "project-screenshots"], [182, "project-screenshots"]], "\ud83d\udd10 Identity and Access Management": [[163, "identity-and-access-management"]], "\ud83d\udd10 Keycloak Configuration Setup": [[165, "keycloak-configuration-setup"]], "\ud83d\udd10 Setup Keycloak": [[164, "setup-keycloak"]], "\ud83d\udd10 User Management via Keycloak Configuration": [[166, "user-management-via-keycloak-configuration"]], "\ud83d\udde8 Feedback Management Microservice": [[28, "feedback-management-microservice"]], "\ud83d\udde8 Feedback Management Microservice with MongoDB": [[29, "feedback-management-microservice-with-mongodb"]], "\ud83d\ude80 3. Validate Microservice": [[3, "validate-microservice"]], "\ud83d\ude80 4. Provide your own tools": [[3, "provide-your-own-tools"]], "\ud83d\ude80 Apply Intel Xeon Server on AWS": [[140, "apply-intel-xeon-server-on-aws"], [149, "apply-intel-xeon-server-on-aws"]], "\ud83d\ude80 Apply Xeon Server on AWS": [[112, "apply-xeon-server-on-aws"], [113, "apply-xeon-server-on-aws"], [161, "apply-xeon-server-on-aws"], [178, "apply-xeon-server-on-aws"], [186, "apply-xeon-server-on-aws"]], "\ud83d\ude80 Build Docker Images": [[111, "build-docker-images"], [112, "build-docker-images"], [113, "build-docker-images"], [114, "build-docker-images"], [116, "build-docker-images"], [124, "build-docker-images"], [131, "build-docker-images"], [132, "build-docker-images"], [140, "build-docker-images"], [141, "build-docker-images"], [149, "build-docker-images"], [150, "build-docker-images"], [157, "build-docker-images"], [158, "build-docker-images"], [161, "build-docker-images"], [162, "build-docker-images"], [170, "build-docker-images"], [171, "build-docker-images"], [174, "build-docker-images"], [184, "build-docker-images"], [186, "build-docker-images"], [187, "build-docker-images"]], "\ud83d\ude80 Build Docker images": [[104, "build-docker-images"], [105, "build-docker-images"], [173, "build-docker-images"]], "\ud83d\ude80 Consume Embeddings Service": [[25, "consume-embeddings-service"]], "\ud83d\ude80 Consume Factuality Check Service": [[33, "consume-factuality-check-service"]], "\ud83d\ude80 Consume PII Detection Service": [[36, "consume-pii-detection-service"]], "\ud83d\ude80 Consume Prompt Injection Detection Service": [[37, "consume-prompt-injection-detection-service"]], "\ud83d\ude80 Consume Toxicity Check Service": [[39, "consume-toxicity-check-service"]], "\ud83d\ude80 Create an AWS Xeon Instance": [[123, "create-an-aws-xeon-instance"], [131, "create-an-aws-xeon-instance"]], "\ud83d\ude80 Deploy ProductivitySuite with ReactUI": [[166, "deploy-productivitysuite-with-reactui"]], "\ud83d\ude80 Download or Build Docker Images": [[123, "download-or-build-docker-images"]], "\ud83d\ude80 Launch the Conversational UI (Optional)": [[112, "launch-the-conversational-ui-optional"], [114, "launch-the-conversational-ui-optional"], [116, "launch-the-conversational-ui-optional"]], "\ud83d\ude80 Launch the Conversational UI (react)": [[113, "launch-the-conversational-ui-react"]], "\ud83d\ude80 Launch the React Based UI (Optional)": [[123, "launch-the-react-based-ui-optional"], [124, "launch-the-react-based-ui-optional"]], "\ud83d\ude80 Launch the React UI (Optional)": [[141, "launch-the-react-ui-optional"], [149, "launch-the-react-ui-optional"], [150, "launch-the-react-ui-optional"]], "\ud83d\ude80 Launch the Svelte Based UI": [[124, "launch-the-svelte-based-ui"]], "\ud83d\ude80 Launch the Svelte UI": [[141, "launch-the-svelte-ui"]], "\ud83d\ude80 Launch the UI": [[111, "launch-the-ui"], [112, "launch-the-ui"], [113, "launch-the-ui"], [114, "launch-the-ui"], [116, "launch-the-ui"], [123, "launch-the-ui"], [131, "launch-the-ui"], [132, "launch-the-ui"], [140, "launch-the-ui"], [149, "launch-the-ui"], [150, "launch-the-ui"], [164, "launch-the-ui"], [178, "launch-the-ui"], [179, "launch-the-ui"], [184, "launch-the-ui"], [186, "launch-the-ui"], [187, "launch-the-ui"]], "\ud83d\ude80 Port used for the microservices": [[184, "port-used-for-the-microservices"]], "\ud83d\ude80 Prepare Docker Images": [[178, "prepare-docker-images"], [179, "prepare-docker-images"]], "\ud83d\ude80 Set the environment variables": [[104, "set-the-environment-variables"], [105, "set-the-environment-variables"], [173, "set-the-environment-variables"], [174, "set-the-environment-variables"]], "\ud83d\ude80 Start MicroServices and MegaService": [[114, "start-microservices-and-megaservice"], [116, "start-microservices-and-megaservice"], [124, "start-microservices-and-megaservice"], [187, "start-microservices-and-megaservice"]], "\ud83d\ude80 Start Microservice with Docker": [[25, "start-microservice-with-docker"], [33, "start-microservice-with-docker"], [36, "start-microservice-with-docker"], [37, "start-microservice-with-docker"], [39, "start-microservice-with-docker"]], "\ud83d\ude80 Start Microservices": [[111, "start-microservices"], [112, "start-microservices"], [113, "start-microservices"], [131, "start-microservices"], [132, "start-microservices"], [161, "start-microservices"], [162, "start-microservices"], [164, "start-microservices"], [178, "start-microservices"], [179, "start-microservices"], [184, "start-microservices"], [186, "start-microservices"]], "\ud83d\ude80 Start Microservices and MegaService": [[123, "start-microservices-and-megaservice"], [140, "start-microservices-and-megaservice"], [141, "start-microservices-and-megaservice"], [149, "start-microservices-and-megaservice"], [150, "start-microservices-and-megaservice"]], "\ud83d\ude80 Start the MegaService": [[104, "start-the-megaservice"], [105, "start-the-megaservice"], [173, "start-the-megaservice"], [174, "start-the-megaservice"]], "\ud83d\ude80 Test MegaService": [[104, "test-megaservice"], [105, "test-megaservice"], [173, "test-megaservice"], [174, "test-megaservice"]], "\ud83d\ude80 Test MicroServices": [[104, "test-microservices"], [105, "test-microservices"], [173, "test-microservices"], [174, "test-microservices"]], "\ud83d\ude801. Build Docker Image": [[58, "build-docker-image"]], "\ud83d\ude801. Set up Environment Variables": [[51, "set-up-environment-variables"], [52, "set-up-environment-variables"]], "\ud83d\ude801. Start Microservice": [[46, "start-microservice"], [47, "start-microservice"]], "\ud83d\ude801. Start Microservice with Docker": [[24, "start-microservice-with-docker"], [42, "start-microservice-with-docker"], [43, "start-microservice-with-docker"], [57, "start-microservice-with-docker"], [64, "start-microservice-with-docker"]], "\ud83d\ude801. Start Microservice with Python": [[56, "start-microservice-with-python"]], "\ud83d\ude801. Start Microservice with Python (Option 1)": [[6, "start-microservice-with-python-option-1"], [11, "start-microservice-with-python-option-1"], [18, "start-microservice-with-python-option-1"], [19, "start-microservice-with-python-option-1"], [23, "start-microservice-with-python-option-1"], [26, "start-microservice-with-python-option-1"], [27, "start-microservice-with-python-option-1"], [34, "start-microservice-with-python-option-1"], [40, "start-microservice-with-python-option-1"], [45, "start-microservice-with-python-option-1"], [50, "start-microservice-with-python-option-1"], [55, "start-microservice-with-python-option-1"], [61, "start-microservice-with-python-option-1"], [63, "start-microservice-with-python-option-1"], [67, "start-microservice-with-python-option-1"], [70, "start-microservice-with-python-option-1"], [72, "start-microservice-with-python-option-1"], [73, "start-microservice-with-python-option-1"], [74, "start-microservice-with-python-option-1"]], "\ud83d\ude801. Start Microservice with Python (Optional 1)": [[30, "start-microservice-with-python-optional-1"]], "\ud83d\ude801. Start Microservice with Python \ud83d\udc0d (Option 1)": [[44, "start-microservice-with-python-option-1"]], "\ud83d\ude801. Start Microservice with Python\uff08Option 1\uff09": [[12, "start-microservice-with-python-option-1"], [14, "start-microservice-with-python-option-1"], [17, "start-microservice-with-python-option-1"], [32, "start-microservice-with-python-option-1"], [35, "start-microservice-with-python-option-1"], [38, "start-microservice-with-python-option-1"], [41, "start-microservice-with-python-option-1"]], "\ud83d\ude802. Consume Embedding Service": [[24, "consume-embedding-service"]], "\ud83d\ude802. Consume Knowledge Graph Service": [[42, "consume-knowledge-graph-service"]], "\ud83d\ude802. Consume LLM Service": [[46, "consume-llm-service"], [47, "consume-llm-service"]], "\ud83d\ude802. Environment Settings": [[58, "environment-settings"]], "\ud83d\ude802. Set up vLLM Service": [[51, "set-up-vllm-service"], [52, "set-up-vllm-service"]], "\ud83d\ude802. Start Agent Microservice": [[3, "start-agent-microservice"]], "\ud83d\ude802. Start Microservice with Docker (Option 2)": [[6, "start-microservice-with-docker-option-2"], [11, "start-microservice-with-docker-option-2"], [12, "start-microservice-with-docker-option-2"], [14, "start-microservice-with-docker-option-2"], [17, "start-microservice-with-docker-option-2"], [18, "start-microservice-with-docker-option-2"], [19, "start-microservice-with-docker-option-2"], [23, "start-microservice-with-docker-option-2"], [32, "start-microservice-with-docker-option-2"], [34, "start-microservice-with-docker-option-2"], [35, "start-microservice-with-docker-option-2"], [38, "start-microservice-with-docker-option-2"], [40, "start-microservice-with-docker-option-2"], [41, "start-microservice-with-docker-option-2"], [45, "start-microservice-with-docker-option-2"], [50, "start-microservice-with-docker-option-2"], [55, "start-microservice-with-docker-option-2"], [56, "start-microservice-with-docker-option-2"], [61, "start-microservice-with-docker-option-2"], [63, "start-microservice-with-docker-option-2"], [67, "start-microservice-with-docker-option-2"], [70, "start-microservice-with-docker-option-2"], [72, "start-microservice-with-docker-option-2"], [73, "start-microservice-with-docker-option-2"], [74, "start-microservice-with-docker-option-2"], [75, "start-microservice-with-docker-option-2"]], "\ud83d\ude802. Start Microservice with Docker (Optional 2)": [[26, "start-microservice-with-docker-optional-2"], [27, "start-microservice-with-docker-optional-2"], [30, "start-microservice-with-docker-optional-2"]], "\ud83d\ude802. Start Microservice with Docker \ud83d\udc33 (Option 2)": [[44, "start-microservice-with-docker-option-2"]], "\ud83d\ude803. Consume Embedding Service": [[23, "consume-embedding-service"], [26, "consume-embedding-service"], [27, "consume-embedding-service"]], "\ud83d\ude803. Consume Finetuning Service": [[30, "consume-finetuning-service"]], "\ud83d\ude803. Consume Guardrails Service": [[34, "consume-guardrails-service"]], "\ud83d\ude803. Consume LLM Service": [[43, "consume-llm-service"], [44, "consume-llm-service"], [45, "consume-llm-service"], [50, "consume-llm-service"]], "\ud83d\ude803. Consume LVM Service": [[56, "consume-lvm-service"]], "\ud83d\ude803. Consume Microservice": [[11, "consume-microservice"], [14, "consume-microservice"], [41, "consume-microservice"]], "\ud83d\ude803. Consume Reranking Service": [[61, "consume-reranking-service"], [63, "consume-reranking-service"]], "\ud83d\ude803. Consume Retriever Service": [[66, "consume-retriever-service"], [67, "consume-retriever-service"], [68, "consume-retriever-service"], [70, "consume-retriever-service"], [71, "consume-retriever-service"], [72, "consume-retriever-service"], [73, "consume-retriever-service"], [74, "consume-retriever-service"]], "\ud83d\ude803. Get Status of Microservice": [[32, "get-status-of-microservice"], [35, "get-status-of-microservice"], [38, "get-status-of-microservice"]], "\ud83d\ude803. Set up LLM microservice": [[51, "set-up-llm-microservice"], [52, "set-up-llm-microservice"]], "\ud83d\ude803. Start Nginx Service": [[58, "start-nginx-service"]], "\ud83d\ude803. Status Microservice": [[12, "status-microservice"], [17, "status-microservice"], [18, "status-microservice"], [19, "status-microservice"]], "\ud83d\ude804. Consume Forwarded Service": [[58, "consume-forwarded-service"]], "\ud83d\ude804. Consume Microservice": [[12, "consume-microservice"], [17, "consume-microservice"], [18, "consume-microservice"], [19, "consume-microservice"], [35, "consume-microservice"]], "\ud83d\ude804. Consume Microservice Pre-LLM/Post-LLM": [[32, "consume-microservice-pre-llm-post-llm"], [38, "consume-microservice-pre-llm-post-llm"]], "\ud83d\ude804. Descriptions for Finetuning parameters": [[30, "descriptions-for-finetuning-parameters"]], "\ud83d\ude804. Troubleshooting": [[11, "troubleshooting"]], "\ud83d\ude80Start Microservice with Docker": [[8, "start-microservice-with-docker"], [13, "start-microservice-with-docker"], [15, "start-microservice-with-docker"], [16, "start-microservice-with-docker"], [29, "start-microservice-with-docker"], [60, "start-microservice-with-docker"], [66, "start-microservice-with-docker"], [68, "start-microservice-with-docker"]], "\ud83d\ude80Start Microservice with Python": [[13, "start-microservice-with-python"], [15, "start-microservice-with-python"], [16, "start-microservice-with-python"], [66, "start-microservice-with-python"], [68, "start-microservice-with-python"]], "\ud83d\ude80Start Microservices": [[69, "start-microservices"]], "\ud83d\udee0\ufe0f Features": [[7, "features"], [28, "features"], [59, "features"]], "\ud83d\udee0\ufe0f Get it Running": [[108, "get-it-running"], [119, "get-it-running"], [120, "get-it-running"], [128, "get-it-running"], [129, "get-it-running"], [135, "get-it-running"], [145, "get-it-running"], [146, "get-it-running"], [154, "get-it-running"], [155, "get-it-running"], [167, "get-it-running"], [176, "get-it-running"], [182, "get-it-running"]], "\ud83d\udee0\ufe0f Key Features": [[163, "key-features"], [164, "key-features"]], "\ud83e\uddd0 Features": [[108, "features"], [119, "features"], [120, "features"], [128, "features"], [129, "features"], [135, "features"], [145, "features"], [146, "features"], [154, "features"], [155, "features"], [167, "features"], [176, "features"], [182, "features"]], "\ud83e\uddfe Prompt Registry Microservice": [[59, "prompt-registry-microservice"]], "\ud83e\uddfe Prompt Registry Microservice with MongoDB": [[60, "prompt-registry-microservice-with-mongodb"]]}, "docnames": ["404", "GenAIComps/LEGAL_INFORMATION", "GenAIComps/README", "GenAIComps/comps/agent/langchain/README", "GenAIComps/comps/agent/langchain/src/strategy/planexec/README", "GenAIComps/comps/agent/langchain/src/strategy/ragagent/README", "GenAIComps/comps/asr/whisper/README", "GenAIComps/comps/chathistory/README", "GenAIComps/comps/chathistory/mongo/README", "GenAIComps/comps/cores/telemetry/README", "GenAIComps/comps/dataprep/README", "GenAIComps/comps/dataprep/milvus/langchain/README", "GenAIComps/comps/dataprep/multimodal/redis/langchain/README", "GenAIComps/comps/dataprep/neo4j/langchain/README", "GenAIComps/comps/dataprep/pgvector/langchain/README", "GenAIComps/comps/dataprep/pinecone/langchain/README", "GenAIComps/comps/dataprep/qdrant/langchain/README", "GenAIComps/comps/dataprep/redis/README", "GenAIComps/comps/dataprep/vdms/README", "GenAIComps/comps/dataprep/vdms/multimodal_langchain/README", "GenAIComps/comps/embeddings/README", "GenAIComps/comps/embeddings/mosec/langchain/README", "GenAIComps/comps/embeddings/mosec/langchain/dependency/README", "GenAIComps/comps/embeddings/multimodal/README", "GenAIComps/comps/embeddings/multimodal_clip/README", "GenAIComps/comps/embeddings/predictionguard/README", "GenAIComps/comps/embeddings/tei/langchain/README", "GenAIComps/comps/embeddings/tei/llama_index/README", "GenAIComps/comps/feedback_management/README", "GenAIComps/comps/feedback_management/mongo/README", "GenAIComps/comps/finetuning/README", "GenAIComps/comps/guardrails/README", "GenAIComps/comps/guardrails/bias_detection/README", "GenAIComps/comps/guardrails/factuality/predictionguard/README", "GenAIComps/comps/guardrails/llama_guard/langchain/README", "GenAIComps/comps/guardrails/pii_detection/README", "GenAIComps/comps/guardrails/pii_detection/predictionguard/README", "GenAIComps/comps/guardrails/prompt_injection/predictionguard/README", "GenAIComps/comps/guardrails/toxicity_detection/README", "GenAIComps/comps/guardrails/toxicity_detection/predictionguard/README", "GenAIComps/comps/image2video/README", "GenAIComps/comps/intent_detection/langchain/README", "GenAIComps/comps/knowledgegraphs/langchain/README", "GenAIComps/comps/llms/faq-generation/tgi/langchain/README", "GenAIComps/comps/llms/summarization/tgi/langchain/README", "GenAIComps/comps/llms/text-generation/README", "GenAIComps/comps/llms/text-generation/native/langchain/README", "GenAIComps/comps/llms/text-generation/native/llama_index/README", "GenAIComps/comps/llms/text-generation/ollama/langchain/README", "GenAIComps/comps/llms/text-generation/predictionguard/README", "GenAIComps/comps/llms/text-generation/tgi/README", "GenAIComps/comps/llms/text-generation/vllm/langchain/README", "GenAIComps/comps/llms/text-generation/vllm/llama_index/README", "GenAIComps/comps/llms/text-generation/vllm/ray/README", "GenAIComps/comps/llms/utils/lm-eval/README", "GenAIComps/comps/lvms/llava/README", "GenAIComps/comps/lvms/predictionguard/README", "GenAIComps/comps/lvms/video-llama/README", "GenAIComps/comps/nginx/README", "GenAIComps/comps/prompt_registry/README", "GenAIComps/comps/prompt_registry/mongo/README", "GenAIComps/comps/reranks/fastrag/README", "GenAIComps/comps/reranks/mosec/langchain/README", "GenAIComps/comps/reranks/tei/README", "GenAIComps/comps/reranks/videoqna/README", "GenAIComps/comps/retrievers/README", "GenAIComps/comps/retrievers/milvus/langchain/README", "GenAIComps/comps/retrievers/multimodal/redis/langchain/README", "GenAIComps/comps/retrievers/neo4j/langchain/README", "GenAIComps/comps/retrievers/pathway/langchain/README", "GenAIComps/comps/retrievers/pgvector/langchain/README", "GenAIComps/comps/retrievers/qdrant/haystack/README", "GenAIComps/comps/retrievers/redis/langchain/README", "GenAIComps/comps/retrievers/redis/llama_index/README", "GenAIComps/comps/retrievers/vdms/langchain/README", "GenAIComps/comps/tts/speecht5/README", "GenAIComps/comps/vectorstores/README", "GenAIComps/comps/vectorstores/chroma/README", "GenAIComps/comps/vectorstores/lancedb/README", "GenAIComps/comps/vectorstores/milvus/README", "GenAIComps/comps/vectorstores/pathway/README", "GenAIComps/comps/vectorstores/pgvector/README", "GenAIComps/comps/vectorstores/pinecone/README", "GenAIComps/comps/vectorstores/qdrant/README", "GenAIComps/comps/vectorstores/redis/README", "GenAIComps/comps/vectorstores/vdms/README", "GenAIComps/comps/web_retrievers/chroma/langchain/README", "GenAIEval/LEGAL_INFORMATION", "GenAIEval/README", "GenAIEval/doc/platform-optimization/README", "GenAIEval/evals/benchmark/README", "GenAIEval/evals/benchmark/auto_tuning/README", "GenAIEval/evals/benchmark/grafana/README", "GenAIEval/evals/benchmark/stresscli/README", "GenAIEval/evals/benchmark/stresscli/locust/README", "GenAIEval/evals/evaluation/agent_eval/crag_eval/README", "GenAIEval/evals/evaluation/autorag/evaluation/README", "GenAIEval/evals/evaluation/rag_eval/README", "GenAIEval/evals/metrics/bleu/README", "GenAIEval/evals/metrics/ragas/README", "GenAIExamples/AgentQnA/README", "GenAIExamples/AgentQnA/retrieval_tool/README", "GenAIExamples/AudioQnA/README", "GenAIExamples/AudioQnA/benchmark/accuracy/README", "GenAIExamples/AudioQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/AudioQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/AudioQnA/kubernetes/intel/README", "GenAIExamples/AudioQnA/kubernetes/intel/README_gmc", "GenAIExamples/AudioQnA/ui/svelte/README", "GenAIExamples/ChatQnA/README", "GenAIExamples/ChatQnA/benchmark/performance/README", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/aipc/README", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README_qdrant", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/how_to_validate_service", "GenAIExamples/ChatQnA/docker_compose/nvidia/gpu/README", "GenAIExamples/ChatQnA/kubernetes/intel/README", "GenAIExamples/ChatQnA/kubernetes/intel/README_gmc", "GenAIExamples/ChatQnA/ui/react/README", "GenAIExamples/ChatQnA/ui/svelte/README", "GenAIExamples/CodeGen/README", "GenAIExamples/CodeGen/benchmark/accuracy/README", "GenAIExamples/CodeGen/docker_compose/intel/cpu/xeon/README", "GenAIExamples/CodeGen/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/CodeGen/kubernetes/intel/README", "GenAIExamples/CodeGen/kubernetes/intel/README_gmc", "GenAIExamples/CodeGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui", "GenAIExamples/CodeGen/ui/react/README", "GenAIExamples/CodeGen/ui/svelte/README", "GenAIExamples/CodeTrans/README", "GenAIExamples/CodeTrans/docker_compose/intel/cpu/xeon/README", "GenAIExamples/CodeTrans/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/CodeTrans/kubernetes/intel/README", "GenAIExamples/CodeTrans/kubernetes/intel/README_gmc", "GenAIExamples/CodeTrans/ui/svelte/README", "GenAIExamples/DocIndexRetriever/README", "GenAIExamples/DocIndexRetriever/docker_compose/intel/cpu/xeon/README", "GenAIExamples/DocIndexRetriever/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/DocSum/README", "GenAIExamples/DocSum/docker_compose/intel/cpu/xeon/README", "GenAIExamples/DocSum/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/DocSum/kubernetes/intel/README", "GenAIExamples/DocSum/kubernetes/intel/README_gmc", "GenAIExamples/DocSum/kubernetes/intel/cpu/xeon/manifest/ui/README", "GenAIExamples/DocSum/ui/react/README", "GenAIExamples/DocSum/ui/svelte/README", "GenAIExamples/FaqGen/README", "GenAIExamples/FaqGen/benchmark/accuracy/README", "GenAIExamples/FaqGen/docker_compose/intel/cpu/xeon/README", "GenAIExamples/FaqGen/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/FaqGen/kubernetes/intel/README", "GenAIExamples/FaqGen/kubernetes/intel/README_gmc", "GenAIExamples/FaqGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui", "GenAIExamples/FaqGen/ui/react/README", "GenAIExamples/FaqGen/ui/svelte/README", "GenAIExamples/InstructionTuning/README", "GenAIExamples/InstructionTuning/docker_compose/intel/cpu/xeon/README", "GenAIExamples/InstructionTuning/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/LEGAL_INFORMATION", "GenAIExamples/MultimodalQnA/README", "GenAIExamples/MultimodalQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/MultimodalQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/ProductivitySuite/README", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/README", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/keycloak_setup_guide", "GenAIExamples/ProductivitySuite/kubernetes/intel/README", "GenAIExamples/ProductivitySuite/ui/react/README", "GenAIExamples/README", "GenAIExamples/RerankFinetuning/README", "GenAIExamples/RerankFinetuning/docker_compose/intel/cpu/xeon/README", "GenAIExamples/RerankFinetuning/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/SearchQnA/README", "GenAIExamples/SearchQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/SearchQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/SearchQnA/kubernetes/intel/README_gmc", "GenAIExamples/SearchQnA/ui/svelte/README", "GenAIExamples/Translation/README", "GenAIExamples/Translation/docker_compose/intel/cpu/xeon/README", "GenAIExamples/Translation/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/Translation/kubernetes/intel/README", "GenAIExamples/Translation/kubernetes/intel/README_gmc", "GenAIExamples/Translation/ui/svelte/README", "GenAIExamples/VideoQnA/README", "GenAIExamples/VideoQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/VisualQnA/README", "GenAIExamples/VisualQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/VisualQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/VisualQnA/kubernetes/intel/README", "GenAIExamples/VisualQnA/kubernetes/intel/README_gmc", "GenAIExamples/docker_images_list", "GenAIExamples/supported_examples", "GenAIInfra/DEVELOPMENT", "GenAIInfra/LEGAL_INFORMATION", "GenAIInfra/README", "GenAIInfra/RELEASE_BRANCHES", "GenAIInfra/authN-authZ/README", "GenAIInfra/authN-authZ/auth-apisix/README", "GenAIInfra/authN-authZ/auth-istio/README", "GenAIInfra/helm-charts/HPA", "GenAIInfra/helm-charts/README", "GenAIInfra/helm-charts/chatqna/README", "GenAIInfra/helm-charts/chatqna/troubleshooting", "GenAIInfra/helm-charts/codegen/README", "GenAIInfra/helm-charts/codetrans/README", "GenAIInfra/helm-charts/common/asr/README", "GenAIInfra/helm-charts/common/data-prep/README", "GenAIInfra/helm-charts/common/embedding-usvc/README", "GenAIInfra/helm-charts/common/guardrails-usvc/README", "GenAIInfra/helm-charts/common/llm-uservice/README", "GenAIInfra/helm-charts/common/redis-vector-db/README", "GenAIInfra/helm-charts/common/reranking-usvc/README", "GenAIInfra/helm-charts/common/retriever-usvc/README", "GenAIInfra/helm-charts/common/speecht5/README", "GenAIInfra/helm-charts/common/tei/README", "GenAIInfra/helm-charts/common/teirerank/README", "GenAIInfra/helm-charts/common/tgi/README", "GenAIInfra/helm-charts/common/tts/README", "GenAIInfra/helm-charts/common/vllm/README", "GenAIInfra/helm-charts/common/web-retriever/README", "GenAIInfra/helm-charts/common/whisper/README", "GenAIInfra/helm-charts/docsum/README", "GenAIInfra/kubernetes-addons/Intel-Gaudi-Base-Operator/README", "GenAIInfra/kubernetes-addons/Observability/README", "GenAIInfra/kubernetes-addons/README", "GenAIInfra/kubernetes-addons/memory-bandwidth-exporter/README", "GenAIInfra/microservices-connector/README", "GenAIInfra/microservices-connector/config/samples/ChatQnA/use_cases", "GenAIInfra/microservices-connector/helm/README", "GenAIInfra/microservices-connector/troubleshooting_guide", "GenAIInfra/microservices-connector/usage_guide", "GenAIInfra/proxy/README", "GenAIInfra/proxy/deployments/guardrails/README", "GenAIInfra/scripts/README", "GenAIInfra/scripts/nvidia/README", "GenAIInfra/scripts/ray/README", "README", "community/CODE_OF_CONDUCT", "community/CONTRIBUTING", "community/SECURITY", "community/TSC", "community/charter", "community/codeowner", "community/index", "community/rfcs", "community/rfcs/24-05-16-GenAIExamples-001-Using_MicroService_to_implement_ChatQnA", "community/rfcs/24-05-16-OPEA-001-Overall-Design", "community/rfcs/24-05-24-OPEA-001-Code-Structure", "community/rfcs/24-06-21-OPEA-001-Guardrails-Gateway", "community/rfcs/24-08-02-OPEA-AIAvatarChatbot", "community/rfcs/24-08-07-OPEA-GenAIStudio", "community/rfcs/README", "deploy/index", "developer-guides/OPEA_API", "developer-guides/doc_guidelines", "developer-guides/docbuild", "developer-guides/graphviz", "developer-guides/index", "eval/index", "examples/ChatQnA/ChatQnA_Guide", "examples/ChatQnA/deploy/aipc", "examples/ChatQnA/deploy/gaudi", "examples/ChatQnA/deploy/index", "examples/ChatQnA/deploy/nvidia", "examples/ChatQnA/deploy/xeon", "examples/index", "faq", "framework/framework", "getting-started/README", "glossary", "guide/installation/gmc_install/gmc_install", "guide/installation/k8s_install/README", "guide/installation/k8s_install/k8s_instal_aws_eks", "guide/installation/k8s_install/k8s_install_kubeadm", "guide/installation/k8s_install/k8s_install_kubespray", "index", "introduction/index", "microservices/index", "release_notes/index", "release_notes/v0.6", "release_notes/v0.7", "release_notes/v0.8", "release_notes/v0.9", "release_notes/v1.0", "roadmap/2024-2025", "roadmap/CICD"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["404.rst", "GenAIComps/LEGAL_INFORMATION.md", "GenAIComps/README.md", "GenAIComps/comps/agent/langchain/README.md", "GenAIComps/comps/agent/langchain/src/strategy/planexec/README.md", "GenAIComps/comps/agent/langchain/src/strategy/ragagent/README.md", "GenAIComps/comps/asr/whisper/README.md", "GenAIComps/comps/chathistory/README.md", "GenAIComps/comps/chathistory/mongo/README.md", "GenAIComps/comps/cores/telemetry/README.md", "GenAIComps/comps/dataprep/README.md", "GenAIComps/comps/dataprep/milvus/langchain/README.md", "GenAIComps/comps/dataprep/multimodal/redis/langchain/README.md", "GenAIComps/comps/dataprep/neo4j/langchain/README.md", "GenAIComps/comps/dataprep/pgvector/langchain/README.md", "GenAIComps/comps/dataprep/pinecone/langchain/README.md", "GenAIComps/comps/dataprep/qdrant/langchain/README.md", "GenAIComps/comps/dataprep/redis/README.md", "GenAIComps/comps/dataprep/vdms/README.md", "GenAIComps/comps/dataprep/vdms/multimodal_langchain/README.md", "GenAIComps/comps/embeddings/README.md", "GenAIComps/comps/embeddings/mosec/langchain/README.md", "GenAIComps/comps/embeddings/mosec/langchain/dependency/README.md", "GenAIComps/comps/embeddings/multimodal/README.md", "GenAIComps/comps/embeddings/multimodal_clip/README.md", "GenAIComps/comps/embeddings/predictionguard/README.md", "GenAIComps/comps/embeddings/tei/langchain/README.md", "GenAIComps/comps/embeddings/tei/llama_index/README.md", "GenAIComps/comps/feedback_management/README.md", "GenAIComps/comps/feedback_management/mongo/README.md", "GenAIComps/comps/finetuning/README.md", "GenAIComps/comps/guardrails/README.md", "GenAIComps/comps/guardrails/bias_detection/README.md", "GenAIComps/comps/guardrails/factuality/predictionguard/README.md", "GenAIComps/comps/guardrails/llama_guard/langchain/README.md", "GenAIComps/comps/guardrails/pii_detection/README.md", "GenAIComps/comps/guardrails/pii_detection/predictionguard/README.md", "GenAIComps/comps/guardrails/prompt_injection/predictionguard/README.md", "GenAIComps/comps/guardrails/toxicity_detection/README.md", "GenAIComps/comps/guardrails/toxicity_detection/predictionguard/README.md", "GenAIComps/comps/image2video/README.md", "GenAIComps/comps/intent_detection/langchain/README.md", "GenAIComps/comps/knowledgegraphs/langchain/README.md", "GenAIComps/comps/llms/faq-generation/tgi/langchain/README.md", "GenAIComps/comps/llms/summarization/tgi/langchain/README.md", "GenAIComps/comps/llms/text-generation/README.md", "GenAIComps/comps/llms/text-generation/native/langchain/README.md", "GenAIComps/comps/llms/text-generation/native/llama_index/README.md", "GenAIComps/comps/llms/text-generation/ollama/langchain/README.md", "GenAIComps/comps/llms/text-generation/predictionguard/README.md", "GenAIComps/comps/llms/text-generation/tgi/README.md", "GenAIComps/comps/llms/text-generation/vllm/langchain/README.md", "GenAIComps/comps/llms/text-generation/vllm/llama_index/README.md", "GenAIComps/comps/llms/text-generation/vllm/ray/README.md", "GenAIComps/comps/llms/utils/lm-eval/README.md", "GenAIComps/comps/lvms/llava/README.md", "GenAIComps/comps/lvms/predictionguard/README.md", "GenAIComps/comps/lvms/video-llama/README.md", "GenAIComps/comps/nginx/README.md", "GenAIComps/comps/prompt_registry/README.md", "GenAIComps/comps/prompt_registry/mongo/README.md", "GenAIComps/comps/reranks/fastrag/README.md", "GenAIComps/comps/reranks/mosec/langchain/README.md", "GenAIComps/comps/reranks/tei/README.md", "GenAIComps/comps/reranks/videoqna/README.md", "GenAIComps/comps/retrievers/README.md", "GenAIComps/comps/retrievers/milvus/langchain/README.md", "GenAIComps/comps/retrievers/multimodal/redis/langchain/README.md", "GenAIComps/comps/retrievers/neo4j/langchain/README.md", "GenAIComps/comps/retrievers/pathway/langchain/README.md", "GenAIComps/comps/retrievers/pgvector/langchain/README.md", "GenAIComps/comps/retrievers/qdrant/haystack/README.md", "GenAIComps/comps/retrievers/redis/langchain/README.md", "GenAIComps/comps/retrievers/redis/llama_index/README.md", "GenAIComps/comps/retrievers/vdms/langchain/README.md", "GenAIComps/comps/tts/speecht5/README.md", "GenAIComps/comps/vectorstores/README.md", "GenAIComps/comps/vectorstores/chroma/README.md", "GenAIComps/comps/vectorstores/lancedb/README.md", "GenAIComps/comps/vectorstores/milvus/README.md", "GenAIComps/comps/vectorstores/pathway/README.md", "GenAIComps/comps/vectorstores/pgvector/README.md", "GenAIComps/comps/vectorstores/pinecone/README.md", "GenAIComps/comps/vectorstores/qdrant/README.md", "GenAIComps/comps/vectorstores/redis/README.md", "GenAIComps/comps/vectorstores/vdms/README.md", "GenAIComps/comps/web_retrievers/chroma/langchain/README.md", "GenAIEval/LEGAL_INFORMATION.md", "GenAIEval/README.md", "GenAIEval/doc/platform-optimization/README.md", "GenAIEval/evals/benchmark/README.md", "GenAIEval/evals/benchmark/auto_tuning/README.md", "GenAIEval/evals/benchmark/grafana/README.md", "GenAIEval/evals/benchmark/stresscli/README.md", "GenAIEval/evals/benchmark/stresscli/locust/README.md", "GenAIEval/evals/evaluation/agent_eval/crag_eval/README.md", "GenAIEval/evals/evaluation/autorag/evaluation/README.md", "GenAIEval/evals/evaluation/rag_eval/README.md", "GenAIEval/evals/metrics/bleu/README.md", "GenAIEval/evals/metrics/ragas/README.md", "GenAIExamples/AgentQnA/README.md", "GenAIExamples/AgentQnA/retrieval_tool/README.md", "GenAIExamples/AudioQnA/README.md", "GenAIExamples/AudioQnA/benchmark/accuracy/README.md", "GenAIExamples/AudioQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/AudioQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/AudioQnA/kubernetes/intel/README.md", "GenAIExamples/AudioQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/AudioQnA/ui/svelte/README.md", "GenAIExamples/ChatQnA/README.md", "GenAIExamples/ChatQnA/benchmark/performance/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/aipc/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README_qdrant.md", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/how_to_validate_service.md", "GenAIExamples/ChatQnA/docker_compose/nvidia/gpu/README.md", "GenAIExamples/ChatQnA/kubernetes/intel/README.md", "GenAIExamples/ChatQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/ChatQnA/ui/react/README.md", "GenAIExamples/ChatQnA/ui/svelte/README.md", "GenAIExamples/CodeGen/README.md", "GenAIExamples/CodeGen/benchmark/accuracy/README.md", "GenAIExamples/CodeGen/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/CodeGen/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/CodeGen/kubernetes/intel/README.md", "GenAIExamples/CodeGen/kubernetes/intel/README_gmc.md", "GenAIExamples/CodeGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui.md", "GenAIExamples/CodeGen/ui/react/README.md", "GenAIExamples/CodeGen/ui/svelte/README.md", "GenAIExamples/CodeTrans/README.md", "GenAIExamples/CodeTrans/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/CodeTrans/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/CodeTrans/kubernetes/intel/README.md", "GenAIExamples/CodeTrans/kubernetes/intel/README_gmc.md", "GenAIExamples/CodeTrans/ui/svelte/README.md", "GenAIExamples/DocIndexRetriever/README.md", "GenAIExamples/DocIndexRetriever/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/DocIndexRetriever/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/DocSum/README.md", "GenAIExamples/DocSum/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/DocSum/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/DocSum/kubernetes/intel/README.md", "GenAIExamples/DocSum/kubernetes/intel/README_gmc.md", "GenAIExamples/DocSum/kubernetes/intel/cpu/xeon/manifest/ui/README.md", "GenAIExamples/DocSum/ui/react/README.md", "GenAIExamples/DocSum/ui/svelte/README.md", "GenAIExamples/FaqGen/README.md", "GenAIExamples/FaqGen/benchmark/accuracy/README.md", "GenAIExamples/FaqGen/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/FaqGen/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/FaqGen/kubernetes/intel/README.md", "GenAIExamples/FaqGen/kubernetes/intel/README_gmc.md", "GenAIExamples/FaqGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui.md", "GenAIExamples/FaqGen/ui/react/README.md", "GenAIExamples/FaqGen/ui/svelte/README.md", "GenAIExamples/InstructionTuning/README.md", "GenAIExamples/InstructionTuning/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/InstructionTuning/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/LEGAL_INFORMATION.md", "GenAIExamples/MultimodalQnA/README.md", "GenAIExamples/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/ProductivitySuite/README.md", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/keycloak_setup_guide.md", "GenAIExamples/ProductivitySuite/kubernetes/intel/README.md", "GenAIExamples/ProductivitySuite/ui/react/README.md", "GenAIExamples/README.md", "GenAIExamples/RerankFinetuning/README.md", "GenAIExamples/RerankFinetuning/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/RerankFinetuning/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/SearchQnA/README.md", "GenAIExamples/SearchQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/SearchQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/SearchQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/SearchQnA/ui/svelte/README.md", "GenAIExamples/Translation/README.md", "GenAIExamples/Translation/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/Translation/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/Translation/kubernetes/intel/README.md", "GenAIExamples/Translation/kubernetes/intel/README_gmc.md", "GenAIExamples/Translation/ui/svelte/README.md", "GenAIExamples/VideoQnA/README.md", "GenAIExamples/VideoQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/VisualQnA/README.md", "GenAIExamples/VisualQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/VisualQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/VisualQnA/kubernetes/intel/README.md", "GenAIExamples/VisualQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/docker_images_list.md", "GenAIExamples/supported_examples.md", "GenAIInfra/DEVELOPMENT.md", "GenAIInfra/LEGAL_INFORMATION.md", "GenAIInfra/README.md", "GenAIInfra/RELEASE_BRANCHES.md", "GenAIInfra/authN-authZ/README.md", "GenAIInfra/authN-authZ/auth-apisix/README.md", "GenAIInfra/authN-authZ/auth-istio/README.md", "GenAIInfra/helm-charts/HPA.md", "GenAIInfra/helm-charts/README.md", "GenAIInfra/helm-charts/chatqna/README.md", "GenAIInfra/helm-charts/chatqna/troubleshooting.md", "GenAIInfra/helm-charts/codegen/README.md", "GenAIInfra/helm-charts/codetrans/README.md", "GenAIInfra/helm-charts/common/asr/README.md", "GenAIInfra/helm-charts/common/data-prep/README.md", "GenAIInfra/helm-charts/common/embedding-usvc/README.md", "GenAIInfra/helm-charts/common/guardrails-usvc/README.md", "GenAIInfra/helm-charts/common/llm-uservice/README.md", "GenAIInfra/helm-charts/common/redis-vector-db/README.md", "GenAIInfra/helm-charts/common/reranking-usvc/README.md", "GenAIInfra/helm-charts/common/retriever-usvc/README.md", "GenAIInfra/helm-charts/common/speecht5/README.md", "GenAIInfra/helm-charts/common/tei/README.md", "GenAIInfra/helm-charts/common/teirerank/README.md", "GenAIInfra/helm-charts/common/tgi/README.md", "GenAIInfra/helm-charts/common/tts/README.md", "GenAIInfra/helm-charts/common/vllm/README.md", "GenAIInfra/helm-charts/common/web-retriever/README.md", "GenAIInfra/helm-charts/common/whisper/README.md", "GenAIInfra/helm-charts/docsum/README.md", "GenAIInfra/kubernetes-addons/Intel-Gaudi-Base-Operator/README.md", "GenAIInfra/kubernetes-addons/Observability/README.md", "GenAIInfra/kubernetes-addons/README.md", "GenAIInfra/kubernetes-addons/memory-bandwidth-exporter/README.md", "GenAIInfra/microservices-connector/README.md", "GenAIInfra/microservices-connector/config/samples/ChatQnA/use_cases.md", "GenAIInfra/microservices-connector/helm/README.md", "GenAIInfra/microservices-connector/troubleshooting_guide.md", "GenAIInfra/microservices-connector/usage_guide.md", "GenAIInfra/proxy/README.md", "GenAIInfra/proxy/deployments/guardrails/README.md", "GenAIInfra/scripts/README.md", "GenAIInfra/scripts/nvidia/README.md", "GenAIInfra/scripts/ray/README.md", "README.md", "community/CODE_OF_CONDUCT.md", "community/CONTRIBUTING.md", "community/SECURITY.md", "community/TSC.rst", "community/charter.md", "community/codeowner.md", "community/index.rst", "community/rfcs.rst", "community/rfcs/24-05-16-GenAIExamples-001-Using_MicroService_to_implement_ChatQnA.md", "community/rfcs/24-05-16-OPEA-001-Overall-Design.md", "community/rfcs/24-05-24-OPEA-001-Code-Structure.md", "community/rfcs/24-06-21-OPEA-001-Guardrails-Gateway.md", "community/rfcs/24-08-02-OPEA-AIAvatarChatbot.md", "community/rfcs/24-08-07-OPEA-GenAIStudio.md", "community/rfcs/README.md", "deploy/index.rst", "developer-guides/OPEA_API.rst", "developer-guides/doc_guidelines.rst", "developer-guides/docbuild.rst", "developer-guides/graphviz.rst", "developer-guides/index.rst", "eval/index.rst", "examples/ChatQnA/ChatQnA_Guide.rst", "examples/ChatQnA/deploy/aipc.md", "examples/ChatQnA/deploy/gaudi.md", "examples/ChatQnA/deploy/index.rst", "examples/ChatQnA/deploy/nvidia.md", "examples/ChatQnA/deploy/xeon.md", "examples/index.rst", "faq.md", "framework/framework.md", "getting-started/README.md", "glossary.rst", "guide/installation/gmc_install/gmc_install.md", "guide/installation/k8s_install/README.md", "guide/installation/k8s_install/k8s_instal_aws_eks.md", "guide/installation/k8s_install/k8s_install_kubeadm.md", "guide/installation/k8s_install/k8s_install_kubespray.md", "index.rst", "introduction/index.rst", "microservices/index.rst", "release_notes/index.rst", "release_notes/v0.6.md", "release_notes/v0.7.md", "release_notes/v0.8.md", "release_notes/v0.9.md", "release_notes/v1.0.md", "roadmap/2024-2025.md", "roadmap/CICD.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 2, 3, 5, 9, 12, 32, 34, 37, 38, 40, 42, 45, 48, 51, 52, 57, 59, 65, 67, 70, 72, 73, 74, 78, 89, 92, 93, 94, 98, 100, 106, 107, 108, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 139, 142, 143, 144, 145, 146, 147, 151, 153, 154, 155, 163, 164, 166, 167, 168, 172, 175, 176, 180, 181, 182, 183, 184, 186, 187, 188, 189, 190, 191, 196, 197, 198, 199, 200, 202, 226, 227, 228, 229, 230, 236, 237, 238, 240, 241, 243, 244, 245, 248, 249, 250, 251, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 270, 273, 274], "0": [1, 2, 9, 22, 23, 32, 33, 34, 37, 38, 39, 41, 42, 44, 45, 48, 49, 50, 51, 52, 53, 57, 62, 63, 64, 66, 67, 68, 69, 70, 72, 73, 74, 77, 78, 80, 81, 84, 87, 89, 90, 91, 92, 94, 96, 97, 98, 99, 100, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 141, 143, 148, 150, 159, 160, 161, 162, 164, 172, 173, 174, 178, 179, 184, 185, 186, 187, 193, 197, 198, 199, 200, 201, 202, 203, 204, 209, 210, 218, 221, 223, 225, 226, 227, 228, 229, 230, 232, 234, 238, 241, 245, 250, 253, 255, 259, 260, 261, 263, 264, 267, 268, 270, 274, 278, 281, 282], "00": [94, 225], "000": 273, "0000": [115, 260, 263, 264], "000015000000000000002": 9, "000022500000000000005": 9, "00003375000000000001": 9, "00030903306": 115, "000a9": 254, "000ae": 254, "000b0": 254, "000b1": 254, "000b5": 254, "001": [41, 244, 251], "002": 253, "00227b8": 283, "0023064255": 253, "0025720573": 115, "0028842222": 253, "0049176104": 115, "00532a": 281, "006806653": 115, "009327292": 253, "0094f52": 283, "009c96": 281, "01": [45, 48, 50, 51, 52, 90, 96, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "012404448": 115, "0125": 253, "015a2b1": 282, "0160026": 115, "01886fe": 283, "01c1b75": 282, "01eed8": 280, "02": [77, 244], "020899": 280, "02122": 254, "021343587": 115, "02192": 254, "02261455": 115, "022785513": 115, "022948774": [115, 260, 261, 263, 264], "02295": 254, "02412e7": 283, "0246678": 115, "02714": 254, "02776986": 115, "0292355": 283, "029969815": 115, "02a1536": 282, "02b60b5": 283, "03": [45, 48, 50, 51, 77, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "032ddbc": 283, "033122733": 115, "0343a2f": 283, "034541": 281, "0355d705484a": 261, "035f39f": 283, "037477136": 115, "0379aeb": 283, "039014f": 282, "03999176": 115, "03t02": [109, 112, 113, 114, 116], "04": [194, 200, 234, 244, 251, 273, 274], "040d2b7": 282, "04385c9": 283, "04570737": 115, "0458443": 283, "047c479": 283, "04986c1": 282, "04d7f2": 280, "04ff8bf": 282, "05": 244, "050649878": 115, "051e0d68e263": 260, "0527": 98, "053251z": 115, "053279z": 115, "053352819z": 115, "053373989z": 115, "053385371z": 115, "055404a": 282, "0584b45": 282, "05c40b636239": 115, "05f9828": 283, "05t01": [115, 261, 263, 264], "05t05": [115, 261, 263, 264], "05t08": 260, "06": [115, 244, 261, 263, 264], "0611707": 283, "0614fc2": 282, "0629696": 283, "06356524": 115, "0657cb66df78": 261, "066555829z": 260, "06696c8": 283, "068527d": 282, "06c4484": 282, "06cb308": 282, "06d5a5cefc06cf9a9e0b5fa74a9f233c": [137, 138], "07": [77, 94, 223, 244], "07494c": 281, "075e84f": 282, "076bca3": 282, "076e81": 282, "07baa8f": 283, "08": [77, 94, 244], "0869029": 283, "08eb269": 282, "08f57fa": 282, "09": [109, 112, 113, 114, 116, 223, 260], "09a3196": 282, "0a3e006": 283, "0a6bad0": 282, "0ac732": 281, "0af532a": 283, "0bb0abb": 283, "0bb69ac": 283, "0bd8215": 282, "0c1dd04b31ab87a5468d65f98e33a9f6": [115, 260, 261, 263, 264], "0c39b7b": 282, "0d49244": 283, "0de5535": 283, "0dedc2": 280, "0e686efd33175ce0ebcf7e0ed7431673": 6, "0f2c2b1": 283, "0f5cef1": 283, "0m": 273, "0r": 283, "1": [10, 13, 16, 33, 37, 39, 48, 53, 62, 69, 77, 78, 80, 86, 89, 90, 91, 95, 96, 97, 98, 99, 100, 101, 107, 118, 121, 122, 130, 139, 148, 160, 172, 185, 194, 197, 198, 202, 209, 210, 212, 214, 215, 216, 219, 225, 226, 227, 228, 229, 230, 231, 232, 249, 253, 254, 255, 256, 260, 261, 263, 264, 268, 270, 272, 277, 281, 282, 283, 284], "10": [17, 18, 19, 41, 45, 48, 50, 51, 64, 88, 89, 91, 94, 97, 104, 105, 111, 112, 113, 115, 123, 124, 161, 162, 164, 166, 173, 174, 199, 209, 225, 227, 230, 249, 253, 255, 256, 260, 261, 263, 264, 267, 273, 274, 279], "100": [11, 13, 16, 17, 18, 49, 51, 52, 57, 88, 94, 97, 115, 200, 227, 253, 261, 263, 264], "1000": [17, 88, 122, 254], "100000": [88, 90], "1004d5b": 282, "100gb": 270, "100gi": 200, "100m": 94, "1024": [34, 42, 90, 94, 110, 114, 115, 202, 260, 261, 263, 264, 282], "102fcdd": 283, "103": 89, "104": [89, 115, 122, 261, 263, 264], "1043336": 282, "1048576": 110, "1072": 98, "10b908": 281, "10c81f1": 283, "10ee6dec7d37": 261, "10fe3c6": 283, "10gb": 117, "10k": [109, 111, 112, 114, 116, 164, 202, 260, 261, 263, 264, 283], "10m": 273, "11": [92, 93, 94, 115, 225, 226, 259, 260, 261, 263, 264, 283], "11074": 94, "111": [89, 255], "112": 89, "112295a": 282, "11434": [48, 111, 260], "1144fae": 283, "1161": 115, "116c": [161, 162], "119": 89, "119941e": 282, "11a56": 281, "12": [35, 89, 94, 115, 241, 253, 256, 260, 261, 263, 264, 273], "120": [89, 90], "1204": 148, "121": [273, 274], "123": [35, 122, 253], "1234": [213, 220], "123f3f8ebaf62f8dfc4542360e5103842408a6cdf630af159e2abc260201ba99": 273, "1249c4f": 283, "125": 223, "125m": [38, 218], "126": 89, "127": [22, 34, 48, 62, 63, 69, 70, 72, 74, 80, 89, 109, 110, 112, 114, 116, 121, 130, 131, 132, 139, 160, 172, 178, 179, 185, 198, 210, 268, 273, 274], "128": [9, 30, 42, 51, 52, 90, 110, 148, 188, 189, 253, 261], "1280": [97, 110], "128g": 264, "129254135z": 260, "12fd97a": 283, "13": [107, 118, 126, 134, 143, 175, 181, 189, 198, 227, 230, 270, 273], "133": [273, 274], "134": 274, "136": 89, "13b": [160, 162, 178, 179, 185, 191, 267, 284], "14": [94, 115, 279], "14621f8": 282, "15": [89, 109, 121, 130, 139, 168, 223, 227, 228, 254, 267], "150": [57, 184], "1500": [11, 13, 16, 17, 18], "1513998": 283, "1536": [78, 253], "1566047": 282, "15fc6f": 281, "15x": 17, "16": [89, 90, 94, 109, 115, 121, 130, 139, 162, 172, 185, 227, 244, 270, 273, 281, 282], "160752424z": 260, "161c338": 283, "1666666666666667": 98, "16686": 9, "1677652288": 253, "168": [109, 110, 112, 114, 115, 116, 121, 122, 130, 131, 132, 139, 160, 172, 178, 179, 185, 200, 261, 263, 264, 268, 273, 274], "16c5fd": 280, "17": [41, 44, 45, 50, 51, 52, 53, 104, 105, 111, 112, 113, 114, 115, 116, 118, 130, 131, 132, 139, 140, 149, 160, 164, 173, 174, 178, 197, 198, 209, 216, 227, 230, 260, 261, 263, 264, 270], "171816f0a789": 261, "172": 273, "1724317365": 80, "1724325093": 80, "1724915247": 29, "1724915249": 29, "1726269914": 261, "174bd43fa6b5": 115, "1785149": 283, "17b9676": 282, "17d35e3": 283, "18": [260, 267, 273], "18092f3": 283, "182183e": [282, 283], "184": 200, "18688": 9, "1874dfd": 283, "19": [77, 223, 260], "191061b": 283, "192": [109, 110, 112, 114, 116, 121, 122, 130, 131, 132, 139, 160, 172, 178, 179, 185, 200, 268, 273, 274], "194": 273, "19530": [11, 66], "199": 273, "19fe1a2": 283, "1_build_imag": 95, "1_stat": 110, "1a934af": 283, "1b48e5": 281, "1b50b73": 282, "1b654d": 280, "1b69897": 283, "1b7001": 280, "1c07a38": 282, "1c23d87": 282, "1d1e1f9": 283, "1d3a502": 283, "1d4664": 281, "1d742199fb1a86aa8c3f7bcd580d94af": [115, 260, 261, 263, 264], "1d761fa": 283, "1dd7d4": 281, "1e13031": 283, "1e47444": 283, "1e4c382": 283, "1eaf6b7": 282, "1eb6f5ad6f85": 261, "1ff81da": 282, "1g": [41, 43, 44, 45, 50, 112, 263, 264], "1gb": [214, 215, 216], "1i": 198, "1k": 110, "1m": [184, 284], "1st": [230, 250], "2": [1, 9, 13, 16, 29, 49, 53, 54, 77, 78, 87, 88, 89, 90, 91, 97, 98, 99, 103, 107, 118, 122, 143, 159, 191, 193, 198, 199, 202, 208, 210, 226, 227, 230, 248, 249, 253, 254, 255, 259, 260, 261, 263, 264, 266, 277, 281, 282, 283, 284], "20": [64, 66, 67, 68, 72, 74, 90, 95, 97, 184, 253, 254, 255], "200": [137, 138, 197, 223, 249, 253], "2001": 254, "2002": 98, "2004": 98, "2008": 254, "2014": 98, "2017": 98, "2023": [66, 67, 68, 69, 70, 71, 72, 73, 74, 109, 111, 112, 113, 114, 115, 116, 117, 118, 161, 162, 164, 197, 198, 201, 202, 212, 227, 230, 260, 261, 263, 264, 268, 270, 283], "2024": [1, 77, 87, 94, 95, 109, 112, 113, 114, 115, 116, 159, 173, 174, 193, 234, 241, 243, 249, 260, 261, 263, 264, 267, 275], "20240710_004105": 93, "2025": 243, "204128984z": 260, "2048": [34, 42, 51, 52, 90, 97, 114, 122, 253, 261], "2080": [216, 218], "2081": 214, "2082": 215, "2093558": 283, "2098b91": 282, "20dce6": 280, "20do": [57, 184], "20fc8ca": 282, "20i": [57, 184], "20person": [57, 184], "20th": 98, "20the": [57, 184], "21": [234, 244, 253, 255, 260], "211b560": 283, "21b7d1": 281, "21d": 202, "21e215c": 283, "21fab71": 282, "22": [194, 197, 198, 200, 234, 260, 273, 274], "2207503": 282, "221": [115, 261, 263, 264], "229472564z": 260, "22d012e": 283, "22d066a": 283, "23": [35, 89, 94, 98, 232], "2311": [109, 112, 113, 114, 116], "231884525z": 260, "232468605z": 260, "233": 94, "235": 273, "236": 166, "2360e5a": 283, "236381": 281, "239": 91, "2390920": 282, "23cc3ea": 283, "23m": 274, "24": [89, 100, 200, 244, 251, 260, 267, 273, 274, 275], "240587": 280, "244": 273, "2458e2": 281, "24a240f8ad1c": [263, 264], "24cae0db1a70": [263, 264], "24m": 274, "25": [254, 260, 274], "250": 254, "25174c0": 283, "2517e79": 283, "255": 94, "2556": 97, "256": [51, 52, 90, 97, 110, 121, 123, 124, 164, 261], "2560": 110, "2571": 98, "25m": 273, "26": [260, 273], "2620": 103, "262a6f6": 283, "264759d": 283, "267d828": 283, "267fb02": 283, "268d58": 281, "26d4ff": 281, "26d6ea": 280, "26ddcc": 280, "26dhl": 89, "26f9b16": 283, "26tg15": 273, "27": [98, 115, 194, 234, 260, 261, 263, 264], "27017": [8, 29, 60, 164], "2705e93": 283, "27210945c7c6c054fa7355bdd4cde818": [115, 260, 261, 263, 264], "273cb1d": 282, "2792e2": 281, "2794abd": 283, "27a01e": 282, "27a062": 281, "28": [94, 249, 260, 273], "284": 98, "284d85": 281, "2891cc6": 282, "28d9a5570246": 115, "28gdr": 89, "29": [110, 244, 251, 260, 273, 274], "290a74": 281, "2931147": 283, "295b818": 280, "29a7a43abcef": 261, "29de55": 280, "29fe569": 283, "2_start_retrieval_tool": 95, "2a2a93": 282, "2a2ff45": 283, "2a4860": 280, "2a53e25": 283, "2a6a29": 280, "2a6af64": 283, "2a91903": 283, "2b14c63": 282, "2b68323": 283, "2ba3516": 283, "2bf648c": 282, "2c2322e": 283, "2c48bc8": 283, "2ca56f3": 283, "2d17c9": 280, "2d28beb": 283, "2d5130f": 283, "2d6772": 281, "2dd69dc": 283, "2e41dcf": 283, "2e62ecc": 280, "2ef83fc": 283, "2f": 57, "2f03a3a": 283, "2f317d": 280, "2f4723": 280, "2f9397": 281, "2fa17d84605f": 115, "2fb070": 280, "2fbce3e": 283, "2fcbb0": 281, "2fdamo": 57, "2fexampl": 57, "2fgithub": 57, "2fmain": 57, "2fraw": 57, "2fsilence_girl": 57, "2fvideo": 57, "2m41": 230, "2m42": 230, "2m43": 230, "2m7": 273, "2nd": 230, "2wzhr": 89, "2xx": 9, "3": [2, 5, 9, 13, 16, 29, 48, 49, 54, 78, 88, 89, 90, 91, 93, 95, 96, 99, 103, 107, 118, 121, 126, 130, 134, 139, 143, 151, 166, 168, 175, 181, 189, 191, 198, 200, 201, 218, 221, 225, 226, 227, 228, 230, 253, 254, 255, 259, 260, 261, 263, 264, 270, 280, 281, 283, 284], "30": [56, 77, 89, 115, 241, 249, 261, 263, 264, 272], "300": [186, 187], "3000": [92, 223, 259], "3001": [104, 105, 172, 173, 174], "3002": [104, 105, 173, 174], "3003": [173, 174], "3004": [173, 174], "3005": [173, 174], "3006": [104, 105, 173, 174], "3007": [104, 105, 173, 174], "3008": [104, 105, 106, 172, 173, 174], "300gi": 200, "30789": 133, "308": 94, "309c2d": 280, "30d95b": 281, "31": [89, 115, 260, 261, 263, 264], "311": 98, "31234": 122, "313b9d14928a": 115, "314": 283, "315183296z": 260, "318": 98, "31m": [273, 274], "32": [34, 42, 45, 48, 51, 52, 89, 90, 112, 114, 198, 208, 218, 260, 261, 263, 264], "325236a01f9b": 115, "326a637": 283, "32856": 94, "32afb65": 283, "32gb": 270, "33": 260, "335362": 281, "3363a37": 282, "3367b76": 283, "337741889z": 260, "339": 273, "33b": 121, "33db504": 282, "33f37c": 281, "33f8329": 282, "34": [260, 273], "340f507": 283, "341f97a": 283, "343d614": 282, "35": [273, 274], "3505bd": 281, "353f3a5": 283, "354e62c703caac8c547b3061433ec5e8": [137, 138], "3563f5d": 283, "357": [115, 261, 263, 264], "358": [115, 261, 263, 264], "358dbd": 280, "35d": 110, "36": 94, "36000": 94, "365c0bd3c000": 260, "367459f6e65b": 261, "368c833": 282, "36fb9a9": 283, "37": 94, "37000000": [161, 162], "372d78c": 283, "3756cf": 281, "375ea7a": 283, "377dd2": 281, "379": [115, 261, 263, 264], "38": 261, "3800": 110, "383": 283, "384931": 281, "38abaab": 283, "38f646": 280, "39": [89, 94], "3913c7b": 282, "391c4a5": 283, "39539": 94, "397208": 281, "39860": 94, "39fb55e": 283, "3a": 57, "3a31295": 283, "3ac391a": 283, "3b5f62e": 282, "3b5fa9a722da": [263, 264], "3b70fb0": 283, "3c29fb4": 282, "3c5fc80": 283, "3c9e2aa": 282, "3ce387a": 283, "3ce3955": 283, "3d00a33": 283, "3d134d": 280, "3d139b": 281, "3d94844": 282, "3e548f3": 283, "3e5dd0": 281, "3e87c3b": 283, "3ec544": 280, "3f": [57, 184], "3f0ceaf": 283, "3f2e7b7": 283, "3f5cde": 280, "3ffcff4": 282, "3m": [118, 143, 225, 226, 227, 230, 248, 270, 284], "3m15": 273, "3m37": 230, "3rd": [238, 267], "4": [66, 68, 89, 90, 91, 94, 96, 97, 98, 107, 127, 144, 148, 153, 199, 216, 253, 254, 255, 260, 273, 279, 280, 281, 284], "40": [45, 51, 52, 64, 89, 225, 249, 254, 261], "400": [249, 281], "4000": 95, "401": 197, "402023z": [109, 112, 113, 114, 116], "4026": [161, 162], "403": 198, "4049c181da93": 261, "405": 253, "406bbc2": 283, "4096": [3, 97, 274], "409c723": 280, "40a2": [161, 162], "40b": 267, "40c1aa": 280, "40f1463": 282, "41": 98, "4112fd0": 283, "4125": 148, "412a0b0": 283, "4133757": 283, "4165c7d": 283, "417": 283, "419e5b": 281, "42": 162, "422b4b": 280, "4259240": 282, "425b423": 283, "42c8d5ec67e9": 261, "42cde68": 283, "4317": 9, "4318": 9, "4319660": 282, "43adcc6": 283, "43b2ae5": 283, "44000": 94, "445c9b1": 283, "45": [103, 115, 261, 263, 264], "45000": 94, "450efc": 281, "456": 35, "45768": 94, "45833": 94, "45cf553": 282, "46000": 94, "46af6f3": 282, "47": [89, 109, 112, 113, 114, 116, 260], "4712545": 282, "476a327": 283, "48": [89, 115], "48015a": 281, "484b69a": 283, "486023": 281, "488a1ca": 282, "48d4e53": 283, "49": 115, "491c2e2": 283, "4943e5f6cd80": [263, 264], "496": 283, "4969ec3aea02": 261, "497895": 281, "497ff61": 282, "4_launch_and_validate_ag": 95, "4a00": [161, 162], "4a51874": 283, "4a67d42": 282, "4a7b8f4": 282, "4b0bc26": 283, "4b5d85b": 283, "4bd7841": 283, "4c0afd": 280, "4c0f527": 283, "4c5a51": 281, "4c78f8c": 283, "4db9fb3": 283, "4df6438": 283, "4eee716": 283, "4f3be23": 282, "4f46a12": 283, "4f7fc39": 282, "4fa37e7": 282, "4fd3517": 282, "4fecd4": 280, "4k": 45, "4o": [13, 100, 191, 253, 284], "4th": [112, 113, 123, 140, 149, 161, 178, 186, 267], "4xckz": 230, "5": [2, 22, 26, 27, 30, 51, 52, 55, 56, 57, 61, 63, 66, 67, 68, 69, 80, 86, 89, 90, 91, 95, 96, 97, 99, 107, 109, 118, 121, 122, 143, 160, 186, 187, 199, 214, 215, 227, 249, 253, 255, 260, 261, 263, 264, 266, 273, 281, 282, 284], "50": [49, 94, 184, 227, 241, 249], "500": [11, 98, 223, 254], "5000": [200, 245], "501": 98, "50201424z": 260, "5025": 282, "5026": 282, "503": 223, "503a1a9": 282, "504228e": 283, "507": 98, "51": 202, "510913894z": 260, "512": [35, 64, 67, 90, 110, 161, 162, 184], "514a6d6": 283, "5159aac": 282, "516291108z": 260, "5173": [58, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 161, 172, 178, 179, 184, 186, 187, 201, 260, 261, 263, 264], "5174": [109, 112, 113, 114, 116, 123, 124, 140, 141, 149, 150, 164, 166, 167, 260, 261, 263, 264], "5175": 141, "52": [92, 259], "523": 249, "528": 282, "52a540d": 283, "53": [109, 112, 113, 114, 115, 116], "5432": [14, 70, 81], "5489d9b65d": 89, "54aa943": 283, "54b58d57cb": 230, "54c5dd5795": 230, "54cd66f": 282, "54eb7a": 281, "55": [89, 199, 223, 228], "5537b7f": 283, "555": 36, "5555": 36, "55555": [18, 19, 74, 85], "556030": 281, "558ea3b": 283, "55b457b": 282, "55d287d": 283, "56": [89, 115, 273], "560m": 216, "566cf93": 282, "568": 282, "56d7d5d": 283, "56daf95": 282, "5715": 164, "5735dd3": 282, "574847": 280, "574fecf": 283, "581687a2cc1a": 261, "584534136z": 260, "58502c5": 283, "587844d666": 230, "58e9972": 283, "59000c5": 283, "593458c": 283, "594268648z": 260, "595185": 280, "596b8f9f7d": 273, "597b3c": 280, "598484": 281, "599a58f": 283, "59c8dc5bff": 273, "59cb27": 281, "59ce505": 283, "59f756fb56": 230, "5a2b306": 283, "5a9c109": 282, "5ab27b6": 283, "5ac77f7": 282, "5b05f9": 281, "5b3053f": 283, "5ba2561": 282, "5bd8bda": 282, "5c0773": 280, "5c3a78144498": 261, "5c44f7d46": 230, "5c67204": 283, "5d0842": 281, "5d3950": 282, "5d9a855": 282, "5db065a9fdf9": 260, "5dcadf3": 282, "5deb383": 282, "5dedd04": 282, "5e232a": 281, "5f52a1": 281, "5fb4a38": 283, "5fcff459f5": 230, "5fde666": 283, "5ff67f4db7": 230, "5hr": 184, "5m": [57, 107, 110], "5m19": 273, "5m20": 273, "5th": 267, "5x": 17, "5z57n": 273, "6": [89, 91, 98, 107, 110, 121, 160, 185, 186, 187, 191, 249, 259, 261, 266, 273, 278], "60": [88, 89], "600": [17, 18], "6000": [2, 15, 21, 24, 25, 26, 27, 62, 97, 109, 111, 112, 114, 115, 116, 137, 138, 160, 161, 162, 164, 184, 207, 230, 245, 260, 261, 263, 264], "6001": [21, 62], "6005": 64, "6006": [9, 17, 109, 111, 112, 137, 161, 162, 164, 260, 264], "6007": [12, 13, 14, 16, 17, 18, 19, 97, 109, 110, 111, 112, 114, 115, 116, 137, 138, 160, 161, 162, 164, 184, 206, 230, 260, 261, 263, 264], "6009": 164, "6010": 11, "6012": [8, 60, 164], "6013": 8, "6014": 8, "6015": 164, "6016": 29, "602af5": 281, "6040": 113, "6041": 113, "6042": 113, "6043": 113, "6044": 113, "6045": 113, "6046": 113, "6047": 113, "6060": [63, 66, 69, 70, 71, 72, 74, 80, 86], "60cc0b0": 282, "60m": 90, "6151ac": 281, "615f0d": 281, "61795f": 281, "61b8fa9": 283, "61dba72": 282, "61ead4": 280, "62": [89, 94, 273], "6235a9": 281, "625899b": 282, "626d269": 283, "629033b": 282, "6296e9f": 282, "62ae64": 281, "62ca5bc": 282, "62dbb6d": 283, "63": [89, 273], "631d84": 281, "632a6634b06b": 260, "6333": [16, 71, 83, 113], "6334": [83, 113], "63406dc": 283, "6357": 35, "63650d0": 282, "6379": [12, 17, 30, 67, 72, 73, 84, 111, 115, 137, 138, 161, 162, 164, 206, 210, 212, 230, 260, 261, 263, 264], "64": [51, 52, 89, 90, 91, 104, 105, 106, 107, 114, 115, 116, 141, 150, 179, 261, 273], "640": 110, "6442127": 283, "6443": [273, 274], "64566dd669": 89, "64bfea9": 282, "64e042": 281, "64fd64475b": 89, "65536": [77, 110], "656dcc6": 282, "65a0a5b": 283, "65b04dc": 283, "65f5745579": 273, "66": [94, 273], "6600": 23, "6617e22": 283, "66445d4f71c7eff23d44f78d": 29, "665c46": 281, "6662d857a154": 260, "6674832": 282, "668620173180b591e1e0cd74": 8, "66cbbf3": 282, "6730b24": 283, "67394b8": 283, "675ea4a": 283, "676fb75667": 89, "678dc9f98c": 89, "6796ef": 281, "67df280": 282, "6839": 94, "68483c": 281, "68485cbf9c": 274, "684d3e9d204a": 261, "68a2011": 283, "68f7c5dcb9": 230, "68nnp": 273, "68tabl": [115, 260, 261, 263, 264], "69": [51, 52], "694": 283, "695934928z": [115, 261, 263, 264], "697123534z": [115, 261, 263, 264], "697148330z": [115, 261, 263, 264], "69db55dd76": 274, "69e1fb59e92c": 115, "69f9895": 282, "6a390da": 282, "6a679ba": 283, "6abbe40": 283, "6ac555c": 283, "6b": 88, "6b091c": 281, "6b617d6": 283, "6b76a9": 280, "6b7bec": 280, "6bb8a3": 280, "6bfe31": 281, "6c24078": 283, "6c36448": 283, "6ce6551": 283, "6d4b668": 283, "6d5984c657": 274, "6db408": 281, "6e2c28": 281, "6e31df": 281, "6e797f": 281, "6f3e54a": 283, "6f7a24": 283, "6fa87927d00c": 260, "7": [9, 49, 51, 52, 53, 67, 70, 72, 73, 81, 84, 89, 95, 98, 103, 118, 210, 225, 227, 255, 260, 261, 263, 264, 267, 273, 278], "7000": [66, 67, 68, 69, 70, 71, 72, 73, 74, 97, 109, 111, 112, 114, 115, 116, 137, 138, 160, 161, 162, 164, 184, 212, 230, 245, 260, 261, 263, 264], "70205e5": 282, "704ec92": 282, "7055": [75, 104, 105, 213, 217], "7066": [6, 103, 104, 105, 205, 220], "707361z": [115, 261, 263, 264], "707379z": [115, 261, 263, 264], "7073ac": 280, "707509646z": [115, 261, 263, 264], "707539740z": [115, 261, 263, 264], "7077": [86, 219], "7079049": 282, "70b": [3, 45, 50, 51, 52, 95, 99, 100, 267, 284], "70c23d": 280, "71": [89, 94], "71363a6": 282, "71394960963e": 223, "71637c0": 282, "71857f5": 283, "7185d6b": 282, "7191": 148, "7195121951219512": 122, "72": [89, 94], "72123b2": 283, "7287caa": 282, "72a2553": 282, "73": 282, "7318fb8": 283, "739788a": 282, "73b5b65": 282, "74": 32, "7406bf": 280, "74084469aa33": 115, "7474": [13, 42, 68], "74b5684cbc": 89, "75": 94, "755": 273, "758432": 280, "758914": 280, "758d236": 283, "75d6bc9": 282, "75eff6": 280, "76": 273, "7600db4": 282, "761f7e0": 282, "7664578": 283, "767a14c": 282, "768": [66, 68, 69, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 164, 173, 174, 212, 219, 260, 261, 263, 264, 282], "7686cfa": 283, "7687": [13, 42, 68], "76877c1": 282, "76c4974c85": 273, "76f75df574": 273, "7719755": 282, "7749ce3": 282, "775bd5dc49": 230, "777": 200, "7777": [130, 131, 132, 133, 204], "7778": [121, 122, 123, 124, 125, 151, 164, 203], "7779": 151, "779e526": 282, "77bb66c": 283, "77e0e7b": 282, "78": 3, "7890": 35, "78f9c748cb": [226, 270], "79": 89, "79276cf45a47": [263, 264], "795": 94, "79e947": 283, "79f54548f4": 230, "7a0fca7": 283, "7a21d09": 283, "7a67298": 282, "7aee7e4": 282, "7b": [2, 3, 30, 42, 45, 46, 47, 50, 51, 52, 53, 54, 57, 88, 90, 91, 97, 104, 105, 109, 110, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 134, 139, 140, 141, 143, 156, 160, 161, 164, 173, 174, 185, 186, 187, 191, 200, 201, 203, 204, 218, 221, 227, 230, 261, 263, 264, 267, 282, 284], "7b20273": 282, "7b2194f": 283, "7b719de": 282, "7bbbdaf": 282, "7c13f2c": 283, "7c7c648846": 230, "7c9f77b": 282, "7d2cd6b": 283, "7d3d13": 281, "7d9265f": 283, "7dabdf": 281, "7dbad0": 280, "7dd9952": 282, "7e1a2e5": 283, "7e40475": 283, "7eaab93": 283, "7ebe78": 281, "7f60cf5620c9": [11, 17, 18], "7f6c5f4796": 230, "7f7037a75f8b": 261, "7f89797": 283, "7fd4d88d85": 89, "7ff03b": 281, "7ffaf24": 282, "7gsdc": 273, "7m31": [273, 274], "7rfrk": 89, "8": [51, 52, 88, 89, 90, 91, 94, 107, 110, 118, 126, 134, 143, 161, 162, 175, 181, 184, 189, 198, 227, 230, 249, 253, 254, 255, 260, 261, 263, 264, 270, 273, 278], "80": [3, 9, 17, 26, 27, 34, 41, 42, 43, 44, 45, 50, 58, 63, 69, 70, 72, 74, 86, 89, 94, 97, 112, 113, 114, 115, 116, 123, 124, 130, 131, 132, 140, 141, 149, 150, 164, 166, 178, 179, 184, 186, 187, 214, 215, 216, 218, 223, 230, 232, 254, 260, 261, 263, 264], "8000": [2, 11, 21, 22, 61, 62, 63, 64, 77, 97, 100, 109, 111, 112, 114, 115, 116, 137, 138, 164, 184, 211, 230, 245, 255, 260, 261, 263, 264], "80000_doc": [91, 97], "8001": [67, 72, 73, 84, 115, 161, 184, 210, 260, 261, 263, 264], "8005": [114, 261], "8006": [53, 114], "8007": [114, 261], "8008": [11, 13, 16, 17, 41, 43, 44, 45, 50, 51, 52, 112, 114, 115, 116, 130, 131, 132, 137, 138, 139, 140, 141, 149, 150, 178, 179, 229, 261, 263, 264, 282], "8015": [30, 156, 157, 158, 169, 170, 171], "8028": [121, 123, 124, 164], "8060": 42, "8080": [3, 23, 42, 100, 107, 118, 143, 164, 165, 227, 230, 232, 260, 270, 274], "8082": 148, "8085": 95, "8088": [34, 261], "8090": [26, 27, 97, 114, 115, 116, 138, 261, 263], "8092": 3, "80da5a": 281, "80e3e2a": 282, "81": [94, 115, 261, 263, 264], "81060ab": 282, "812c85c": 283, "814164d": 283, "8192": [35, 253], "8206a8c": 283, "824a7e2": 283, "82c1654": 282, "83": 227, "831463": 281, "8325d5d": 283, "833": 115, "833dcec": 282, "8369fbf": 283, "83712b9": 282, "8399": [55, 161, 162, 186, 187], "83ad9c": 281, "83fc1a": 281, "84": 273, "8446744073709552e": 223, "846c89f79f": 230, "849cac9": 283, "84a781a": 283, "84a7e57": 283, "84c98dd9b7": 89, "84f02cf2a904": 261, "852437z": [115, 261, 263, 264], "852525522z": [115, 261, 263, 264], "85aef83": 282, "85fb984fb9": 89, "862641152e": 223, "86412c": 280, "8666": [69, 80], "867759z": [115, 261, 263, 264], "867833811z": [115, 261, 263, 264], "867e9d7": 282, "868103b": 282, "8696": [161, 162], "86dd739": 282, "87": [89, 103], "872e93": 283, "87617e7": 282, "876b7a": 281, "876ca5": 281, "87905ad": 282, "87e51d5": 283, "88": 89, "8808": [9, 63, 111, 112, 114, 115, 116, 137, 138, 164, 260, 261, 263, 264], "88399dbc9e43": 115, "883c8d": 281, "887ca75": 283, "88829c9": 283, "8888": [58, 94, 97, 109, 111, 112, 114, 115, 116, 117, 139, 140, 141, 142, 149, 150, 161, 162, 164, 178, 179, 180, 184, 186, 187, 188, 198, 201, 221, 245, 260, 261, 263, 264, 268], "8889": [3, 101, 137, 138, 164], "8890": 164, "8891": 89, "88b3c1": 281, "88caf0": 281, "88eeb0d": 282, "88fde62": 283, "88pkk": 273, "89": 94, "8912": 113, "89197e5": 283, "895471763z": 260, "8964": 148, "89aa5a": 280, "89c825": 281, "89ddec": 281, "8a11413": 283, "8a6079d": 282, "8a62bac": 282, "8a670": 280, "8a85364": 282, "8aa1e6": 281, "8ad7f3": 281, "8adbcc": 283, "8b": [34, 45, 49, 50, 51, 52, 149, 150, 151, 191, 208, 261, 282, 284], "8b226edcd9db": 260, "8b6094": 281, "8b6486": 280, "8b9dcdd": 282, "8ba2": [161, 162], "8bcb9d469": 228, "8bdb598": 282, "8c384e0": 282, "8c40204": 283, "8c4a25": 281, "8c7461df": [161, 162], "8c78cde9f588": 261, "8c7eb1b": 282, "8d304ac": 283, "8d4209": 281, "8d86fff": 283, "8e3f553": 283, "8eb8b6a": 282, "8edda1c": 283, "8f0f2b0": 282, "8fbh8": 230, "8fcf0a": 280, "8ffc3b": 281, "8x22b": 284, "8x7b": [97, 148, 284], "8zmhk": 274, "9": [49, 57, 89, 94, 100, 110, 115, 184, 195, 227, 230, 255, 257, 261, 278, 283], "90": 94, "9000": [2, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 57, 109, 111, 112, 114, 115, 116, 123, 124, 131, 132, 140, 141, 148, 149, 150, 164, 178, 179, 184, 209, 230, 245, 260, 261, 263, 264], "9001": 164, "900178": 280, "9002": 164, "9003": 164, "9006": [54, 88], "9007212": 283, "9009": [57, 92, 112, 164, 184, 259, 263, 264], "9075": 33, "907dc19": 283, "9080": 36, "9085": 37, "9088": [75, 217], "9090": [3, 34, 39, 92, 100, 114, 208, 259, 261], "9091": [9, 38], "9092": 32, "9095": 100, "9099": [6, 205], "90cc44f": 283, "90e367": 282, "91": 273, "9100": 225, "9107af9": 283, "911": [273, 274], "912": [273, 274], "91d825c": 282, "92": 95, "9216768e": 223, "923c1f3": 283, "923cf69": 282, "9277fe6": 282, "92c4b5": 281, "933c3d3": 283, "9367a9": 281, "9368": 40, "9369": 40, "939502d": 282, "9397522": 282, "9399": [12, 55, 56, 160, 161, 162, 186, 187], "9411": 9, "945b9e4": 282, "947936e": 283, "947cbe3": 282, "9480afc": [282, 283], "94e807": 281, "94eb60f": 283, "95": [45, 48, 50, 51, 52, 89, 94, 96, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "953e78": 280, "955159": 281, "9580298": 282, "959581881z": 115, "959583925z": 115, "959585811z": 115, "959587629z": 115, "959589733z": 115, "959591795z": 115, "959593607z": 115, "959595769z": 115, "959597800z": 115, "959599622z": 115, "959601665z": 115, "95b967c9d": 230, "95c13d": 281, "96": [89, 166], "960cf38": 280, "960f66c": 283, "961abb": 280, "963755": 281, "9657f7b": 282, "967fdd": 281, "9681": 148, "96cd929": 283, "96d5cd9": 283, "97": 38, "97da49": 281, "97fdf54": 282, "98": 94, "987870f": 283, "98c62a0": 283, "99": 94, "993688a": 283, "993695854z": 260, "994250c": 283, "995a62c": 283, "9988041": [115, 260, 261, 263, 264], "9998cd7": 282, "9999": 245, "99be1bd": 283, "99eb6a": 280, "9a1af76": 283, "9a2234359fe0": [161, 162], "9aaaafuleqvr42mp8": [55, 56, 161, 162, 186, 187], "9ab8d": 280, "9b0edf2": 282, "9b38302": 283, "9b5def": 281, "9b658f": 281, "9b8798a": 282, "9b973a": 281, "9c0d2a2553e8": [263, 264], "9c90eb": 281, "9c97fa": 281, "9cc6ca": 281, "9cf1d88": 283, "9d1465": 281, "9dbe550": 282, "9de3c7": 280, "9def61": 281, "9e15ef": 281, "9e27a0": 281, "9ecc5c": 281, "9fc5": [161, 162], "9gi": 197, "9mwvk": 230, "9rc": 195, "A": [2, 30, 42, 55, 56, 89, 92, 93, 98, 109, 121, 130, 139, 172, 190, 191, 229, 230, 232, 236, 237, 238, 241, 245, 246, 248, 249, 250, 253, 254, 259, 266, 270, 272, 273, 274, 279], "And": [51, 52, 53, 73, 95, 109, 110, 198, 199, 225, 254, 255, 270, 274], "As": [11, 13, 16, 17, 67, 70, 72, 73, 74, 89, 95, 141, 150, 232, 240, 248, 254, 255, 260, 261, 263, 264, 266, 267], "At": [96, 238, 241, 255, 266, 267], "Be": [249, 254], "Being": 237, "But": [202, 230, 245], "By": [2, 9, 32, 38, 44, 51, 52, 80, 89, 90, 95, 109, 110, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 133, 134, 139, 147, 160, 161, 162, 164, 166, 172, 178, 179, 183, 184, 185, 186, 187, 191, 196, 197, 199, 200, 214, 215, 216, 218, 239, 245, 246, 250, 254, 255, 259, 260, 261, 263, 264, 267, 273, 274, 276], "For": [2, 3, 7, 9, 10, 12, 13, 17, 18, 19, 20, 23, 25, 26, 27, 28, 30, 34, 35, 38, 45, 50, 51, 52, 53, 57, 58, 59, 64, 65, 76, 80, 88, 89, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 103, 107, 109, 110, 111, 112, 113, 114, 115, 118, 122, 123, 124, 131, 140, 149, 160, 161, 166, 168, 178, 179, 183, 185, 186, 192, 194, 222, 227, 234, 237, 238, 244, 251, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 283], "If": [1, 3, 5, 6, 11, 13, 16, 17, 29, 30, 34, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 57, 58, 63, 69, 80, 87, 90, 91, 92, 93, 96, 97, 109, 111, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 126, 130, 131, 132, 134, 139, 140, 141, 143, 149, 150, 151, 159, 160, 164, 168, 172, 175, 178, 179, 181, 184, 185, 186, 187, 189, 193, 198, 199, 200, 201, 202, 203, 214, 215, 216, 218, 223, 225, 228, 230, 232, 234, 238, 253, 254, 255, 260, 261, 263, 264, 267, 268, 273, 274], "In": [12, 25, 33, 34, 36, 37, 39, 43, 44, 45, 46, 47, 49, 50, 56, 58, 61, 63, 74, 80, 89, 92, 95, 100, 101, 109, 110, 112, 113, 114, 115, 116, 121, 123, 124, 126, 134, 139, 143, 147, 160, 166, 175, 181, 184, 189, 191, 195, 198, 202, 225, 229, 231, 232, 241, 245, 250, 254, 255, 259, 260, 261, 263, 264, 267, 268, 272, 273, 274], "It": [0, 2, 3, 7, 22, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 65, 67, 70, 72, 73, 74, 78, 88, 90, 91, 96, 97, 98, 102, 107, 109, 110, 112, 114, 115, 116, 118, 122, 143, 182, 183, 184, 190, 191, 194, 196, 198, 200, 225, 226, 227, 230, 238, 241, 245, 246, 253, 254, 255, 260, 261, 263, 264, 266, 267, 268, 270, 273, 276], "Its": 94, "NO": 115, "NOT": [115, 187, 260, 261, 263, 264], "No": [5, 9, 12, 230, 237, 254, 255, 282], "Not": [168, 250], "ON": [51, 52], "ONE": 261, "OR": 223, "Of": 198, "On": [195, 198, 243, 249, 254, 259, 273, 284], "One": [225, 266, 267], "Or": 112, "Such": [121, 253, 267], "That": [89, 99, 199, 254], "The": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 20, 23, 24, 25, 28, 29, 31, 33, 34, 35, 36, 42, 45, 50, 51, 52, 53, 58, 59, 60, 61, 63, 64, 65, 67, 70, 72, 73, 74, 76, 80, 86, 89, 90, 91, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 153, 155, 157, 158, 160, 161, 162, 164, 165, 166, 167, 170, 171, 172, 176, 177, 178, 179, 180, 183, 184, 185, 186, 187, 190, 191, 194, 195, 197, 198, 200, 201, 202, 203, 204, 208, 210, 214, 215, 216, 218, 221, 223, 225, 226, 227, 229, 230, 231, 232, 234, 236, 237, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 256, 259, 260, 261, 263, 264, 266, 267, 268, 270, 272, 274, 276, 281], "Then": [9, 11, 13, 14, 17, 23, 26, 27, 51, 52, 53, 64, 68, 95, 100, 104, 105, 111, 112, 113, 114, 116, 117, 121, 123, 124, 125, 131, 132, 133, 140, 141, 142, 149, 150, 161, 162, 173, 174, 178, 179, 180, 184, 186, 187, 188, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 255, 259, 273, 274], "There": [115, 123, 124, 184, 194, 195, 200, 225, 226, 227, 238, 248, 254, 255, 260, 261, 263, 264, 266, 267, 272, 274], "These": [9, 34, 92, 98, 107, 109, 113, 118, 136, 137, 138, 139, 140, 143, 149, 161, 178, 186, 197, 198, 200, 202, 222, 242, 249, 254, 255, 256, 259, 266, 267, 273, 276], "To": [2, 3, 6, 9, 10, 11, 12, 13, 14, 17, 34, 43, 44, 45, 46, 47, 50, 51, 52, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 77, 86, 91, 92, 94, 95, 97, 100, 102, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 130, 131, 133, 139, 140, 141, 142, 149, 150, 160, 161, 162, 164, 166, 172, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 190, 192, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 228, 229, 230, 232, 241, 249, 252, 253, 254, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 283], "Will": [178, 179], "With": [34, 198, 250, 254, 267], "_": [66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 198, 212, 219, 238, 254, 260, 261, 263, 264], "__init__": [2, 238, 245], "__main__": 245, "__name__": [199, 245], "__pack": 254, "__torch_function__": 115, "_appli": 115, "_build": 255, "_doc_guidelin": 254, "_hypervisor": 254, "_k_object": 254, "_my": 254, "_on_": 238, "_run": 91, "_static": 255, "_templat": 255, "a00e36": 280, "a072441": 282, "a09395": 283, "a0b94b": 280, "a18404": 283, "a1d6d70": 282, "a234db": 282, "a270726": 282, "a2745b2": 283, "a2dc96": 281, "a339a87": 283, "a39f23a": 282, "a3a9": [161, 162], "a3da7c1": 283, "a3fa0d6": 283, "a4398b0": [282, 283], "a456bf": 281, "a54ffd2": 282, "a56a847": 282, "a58ca4": 280, "a5eb14": 280, "a5ed223": 282, "a61e434": 282, "a6385bc": 282, "a672569": 283, "a6fd418": 283, "a76c90f": 282, "a8244c4": 283, "a851abf": 282, "a8a46bc": 283, "a924579": 283, "a98561": 281, "a9b087f": 283, "aa2730a": 282, "ab2e5eb73a29": [161, 162], "ab53e9": 281, "ab5c8d": 281, "ab8ebc4": 282, "ab98795": 282, "abc02e1": 282, "abdelhalem": [236, 240], "abid": 241, "abil": [3, 97, 115, 119, 120, 164, 167, 176, 191, 238, 241, 245, 246, 248, 263, 264, 267, 274], "abl": [3, 6, 7, 28, 59, 89, 95, 108, 112, 114, 116, 161, 162, 164, 167, 182, 198, 248, 249, 259, 260, 261, 263, 264, 267], "about": [2, 8, 29, 32, 34, 53, 55, 56, 57, 60, 89, 112, 113, 115, 123, 124, 131, 140, 149, 161, 168, 178, 185, 186, 198, 202, 214, 215, 216, 229, 237, 238, 242, 243, 244, 248, 254, 255, 256, 259, 260, 261, 263, 264, 267, 272, 275, 283], "abov": [29, 48, 50, 51, 52, 58, 60, 89, 107, 112, 118, 123, 124, 143, 164, 166, 184, 194, 197, 198, 199, 200, 225, 227, 230, 249, 254, 255, 256, 260, 261, 263, 264, 267, 270, 273, 274], "abstract": [2, 245, 246, 267, 276], "abus": [237, 253], "ac324a9": 282, "ac34860": 283, "ac3909d": 282, "ac4a777": 282, "ac52f79": 283, "ac89855": 282, "academ": 88, "acbaaf8": 282, "acc": 283, "acc_tun": 91, "acc_tuning_config": 91, "acceler": [22, 51, 52, 53, 89, 99, 107, 118, 121, 160, 172, 227, 248, 262, 266, 267], "accept": [8, 12, 29, 51, 52, 53, 55, 56, 57, 60, 64, 80, 164, 184, 190, 232, 237, 244, 253, 267], "access": [2, 9, 25, 33, 36, 37, 39, 49, 51, 52, 53, 56, 74, 89, 92, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 121, 123, 124, 125, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 147, 149, 150, 161, 164, 165, 168, 172, 178, 179, 180, 184, 185, 186, 187, 188, 191, 196, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 227, 230, 232, 243, 245, 246, 248, 250, 253, 259, 260, 261, 263, 264, 267, 268, 270, 273, 274, 282, 283], "access_token": [197, 198], "accessmod": [197, 200], "accessurl": [107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 227, 230, 270], "accompani": [1, 87, 159, 193, 241], "accord": [20, 23, 24, 45, 50, 51, 109, 111, 112, 113, 114, 116, 119, 120, 123, 124, 151, 160, 164, 167, 185, 196, 198, 241, 245, 260, 261, 263, 264, 268, 283], "accordingli": [198, 199, 226, 270, 273], "account": [45, 95, 98, 112, 113, 123, 131, 140, 149, 161, 178, 186, 237, 241, 254, 255, 260, 261, 263, 264, 267, 272], "account_id": 272, "accru": [115, 260, 261, 263, 264], "accur": [65, 67, 70, 72, 73, 74, 172, 190, 191, 249, 259], "accuraci": [61, 63, 74, 88, 97, 109, 123, 124, 168, 191, 238, 244, 246, 258, 265, 267, 281, 282, 283], "acdd712": 282, "achiev": [2, 4, 57, 74, 98, 115, 168, 202, 245, 250, 260, 261, 263, 264, 266, 267, 283], "acknowledg": 241, "aclweb": 98, "acquir": 115, "acrn": 256, "acrnprob": 256, "across": [53, 74, 95, 97, 98, 110, 121, 130, 147, 168, 177, 198, 200, 236, 245, 253, 254, 259, 266, 267, 276], "act": [2, 3, 107, 115, 118, 123, 124, 143, 190, 198, 227, 237, 245, 246, 263, 264, 267, 276], "action": [3, 195, 198, 232, 237, 238, 241, 272, 282, 283], "activ": [34, 90, 93, 110, 191, 202, 225, 267, 274, 279], "actual": [20, 23, 24, 25, 45, 50, 111, 113, 161, 162, 164, 184, 186, 199, 267], "acycl": [123, 124, 253], "ad": [2, 7, 80, 89, 92, 97, 98, 102, 117, 168, 191, 197, 199, 226, 227, 238, 245, 247, 249, 250, 253, 254, 255, 259, 270, 273, 274, 279, 280, 281, 282, 283], "ad0bb7c": 282, "ad27729caf68": 261, "ad8ca88": 282, "ada": 253, "adapt": [30, 97, 196, 199, 237, 238, 258, 280, 281, 282], "adb157f": 283, "add": [2, 3, 6, 9, 30, 32, 34, 38, 40, 42, 45, 46, 47, 48, 55, 58, 63, 75, 80, 89, 91, 92, 97, 100, 102, 110, 111, 112, 113, 114, 116, 117, 137, 138, 158, 164, 167, 171, 184, 194, 197, 198, 199, 200, 223, 225, 238, 245, 248, 249, 250, 252, 254, 255, 259, 260, 261, 263, 264, 266, 267, 273, 279, 280, 281, 282, 283], "add761b504bc": 260, "add_api_rout": 245, "add_remote_servic": 2, "add_rout": 245, "adddiiton": 259, "addit": [25, 30, 31, 33, 36, 37, 39, 49, 56, 95, 98, 100, 107, 118, 123, 124, 143, 225, 227, 231, 241, 245, 247, 250, 254, 259, 267, 281, 283], "addition": [2, 95, 191, 245, 246, 260, 261, 263, 264, 266, 267], "additional_no_proxi": 274, "addon": [194, 223, 242, 247, 255, 273, 274], "addr": [137, 138], "address": [0, 30, 35, 45, 94, 98, 111, 112, 113, 114, 123, 124, 140, 141, 149, 150, 151, 160, 161, 162, 164, 184, 186, 187, 191, 197, 198, 201, 203, 204, 221, 223, 225, 237, 245, 255, 259, 260, 261, 263, 264, 267, 273, 274, 282, 283], "adher": [9, 45, 156, 238], "adjust": [79, 91, 123, 124, 226, 238, 241, 245, 270, 281], "admin": [92, 165, 197, 198, 223, 259, 273, 274], "administr": 273, "adminpassword": 197, "adminus": 197, "adopt": [35, 109, 136, 137, 138, 168, 196, 241, 245, 249, 259, 265, 266, 267, 276, 280, 281, 283], "adp": 284, "advanc": [3, 20, 23, 24, 51, 52, 53, 86, 111, 113, 123, 124, 140, 141, 149, 150, 161, 162, 163, 164, 184, 186, 187, 237, 250, 267], "advanced_use_cas": 226, "advantag": [130, 172, 245, 256, 266], "advic": 94, "advis": [115, 122, 261, 263, 264, 267], "advisori": [240, 241], "ae71ee": 283, "aebc23f": 283, "aed70d": 280, "aeef78": 281, "af2d0f": 281, "af47b3c": 282, "af4e0f8": 283, "af9e1b6": 283, "afc3341": 283, "afcb3a": 280, "affect": [198, 230, 237, 240, 241, 283], "affin": [199, 273], "aforement": [140, 149, 178, 179], "after": [5, 11, 12, 17, 18, 19, 30, 90, 92, 94, 95, 112, 113, 114, 115, 116, 119, 120, 123, 124, 127, 131, 132, 140, 144, 149, 153, 156, 157, 158, 161, 164, 166, 167, 169, 170, 171, 174, 176, 178, 184, 186, 187, 192, 195, 198, 199, 202, 205, 206, 207, 208, 209, 211, 212, 217, 219, 228, 229, 232, 238, 250, 253, 254, 255, 261, 263, 264, 267, 272, 273, 274, 282, 283], "ag": [107, 110, 118, 143, 202, 225, 226, 227, 228, 230, 237, 254, 270, 273, 274], "again": [3, 186, 187, 232, 255], "against": [65, 67, 70, 72, 73, 74, 115, 122, 136, 137, 138, 260, 261, 263, 264, 266, 267], "agent": [4, 42, 190, 191, 238, 242, 253, 258, 265, 267, 281, 282, 283, 284], "agent_ev": 95, "agent_llm": 42, "agentqna": [95, 100, 242, 282, 283], "aggreg": [94, 95, 100, 183, 267], "aggress": [38, 237], "ago": [115, 260, 261, 263, 264], "agre": [238, 239], "agreement": [241, 267], "ai": [1, 3, 11, 17, 18, 32, 34, 35, 38, 77, 78, 87, 88, 89, 93, 99, 102, 103, 114, 119, 121, 137, 138, 159, 160, 164, 167, 172, 191, 193, 196, 200, 223, 232, 236, 239, 240, 241, 245, 246, 248, 249, 250, 259, 262, 265, 275, 276, 277, 283], "aiavatarchatbot": 244, "aicrowd": 100, "aid": [121, 241], "aieffici": [137, 138], "aim": [10, 74, 110, 241, 245, 249, 250, 260, 261, 263, 264, 267], "aio": 280, "aiohttp": 121, "aipc": [48, 265, 281], "aishwarya": 282, "aka": 267, "akin": [2, 172, 245, 246], "al": 98, "ala": 255, "alb": [20, 23, 24], "albert": 284, "album": 100, "alert": [259, 283], "alexsin368": 249, "algorithm": [20, 23, 24, 98, 115, 172, 260, 261, 263, 264, 266, 267], "align": [39, 64, 191, 200, 237, 250, 254, 256, 281, 282, 283], "aliv": [77, 137, 138], "all": [2, 3, 6, 8, 9, 11, 14, 17, 29, 30, 34, 40, 42, 46, 47, 48, 51, 52, 53, 55, 60, 75, 80, 89, 91, 95, 97, 98, 102, 106, 107, 109, 110, 115, 117, 118, 121, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 157, 158, 166, 168, 170, 171, 172, 174, 178, 179, 180, 183, 185, 188, 190, 191, 195, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 222, 225, 227, 228, 229, 230, 232, 237, 239, 240, 241, 243, 244, 245, 248, 249, 250, 251, 253, 254, 255, 256, 265, 266, 267, 270, 272, 273, 274, 276, 277, 281, 282, 283, 284], "allevi": [34, 135], "allianc": 267, "alloc": [89, 109, 121, 130, 139, 172, 184, 246, 250, 258, 282], "allocatorprior": 89, "allocatortopologybalanc": 89, "allow": [2, 20, 23, 24, 25, 32, 33, 36, 37, 38, 39, 45, 48, 49, 51, 52, 56, 69, 74, 80, 88, 89, 91, 99, 107, 109, 110, 112, 113, 115, 118, 119, 123, 131, 136, 137, 138, 140, 143, 149, 161, 164, 167, 178, 186, 190, 198, 226, 227, 232, 237, 238, 241, 245, 246, 250, 254, 259, 260, 261, 263, 264, 267, 270, 276, 277, 281, 282], "allow_code_execut": [88, 122], "allud": 267, "alma": [178, 179, 191], "alon": [254, 255], "along": [95, 161, 162, 201, 203, 204, 221, 243, 254, 256, 260, 261, 263, 264, 267], "alpaca_data": [30, 156], "alphabet": 254, "alphanumer": 35, "alreadi": [42, 45, 51, 52, 69, 80, 89, 107, 112, 113, 115, 118, 123, 126, 131, 134, 140, 143, 149, 161, 175, 178, 181, 186, 189, 198, 201, 203, 204, 214, 215, 216, 218, 221, 227, 229, 238, 255, 272, 274], "also": [0, 6, 9, 17, 69, 74, 89, 90, 92, 95, 96, 97, 102, 106, 107, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 130, 131, 132, 133, 139, 140, 141, 142, 143, 149, 150, 151, 160, 161, 162, 164, 167, 168, 172, 173, 174, 175, 176, 178, 179, 180, 184, 185, 188, 194, 195, 196, 198, 199, 200, 225, 226, 227, 230, 231, 232, 234, 237, 238, 241, 243, 248, 249, 250, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 272, 274], "alt": 254, "alter": [253, 254], "altern": [6, 75, 89, 107, 118, 125, 194, 199, 227, 238, 241, 244, 249, 250, 253, 259, 266, 272, 273], "alwai": [17, 26, 27, 63, 69, 70, 72, 74, 86, 89, 91, 98, 112, 114, 116, 123, 124, 140, 149, 150, 243, 253, 260, 261, 263, 264, 266, 283], "am": 253, "amazon": [112, 113, 140, 149, 161, 178, 186, 272], "amazonaw": 272, "amazonecr": 272, "amd": [238, 240], "amd64": [12, 92, 225, 259, 273], "amd_gpu": 238, "amend": 238, "america": 99, "among": [53, 64, 190, 226, 267, 268], "amount": [89, 115, 147, 223, 238, 260, 261, 263, 264], "amr": [236, 240], "amx": 248, "an": [2, 3, 5, 6, 9, 11, 17, 18, 22, 23, 25, 30, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 63, 65, 67, 69, 70, 72, 73, 74, 75, 80, 89, 91, 92, 94, 95, 98, 99, 101, 102, 103, 107, 109, 112, 113, 114, 115, 116, 118, 121, 122, 124, 125, 132, 140, 141, 143, 148, 149, 160, 161, 164, 165, 168, 172, 177, 178, 184, 185, 186, 187, 190, 191, 194, 196, 199, 200, 203, 225, 226, 227, 228, 231, 234, 236, 237, 238, 240, 241, 244, 245, 249, 250, 251, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 265, 266, 267, 270, 274, 280, 282], "analysi": [11, 17, 18, 88, 90, 94, 110, 267, 284], "analyz": [39, 88, 90, 259], "ani": [10, 12, 29, 32, 33, 34, 42, 65, 67, 70, 72, 73, 74, 80, 89, 90, 92, 98, 99, 112, 115, 194, 196, 198, 201, 225, 228, 232, 234, 237, 238, 239, 240, 241, 245, 248, 253, 254, 259, 260, 261, 263, 264, 266, 267, 273, 274], "annot": [89, 199, 230, 231, 232], "announc": 35, "anomali": 259, "anonym": 77, "anoth": [3, 95, 98, 115, 117, 118, 121, 125, 130, 133, 142, 165, 180, 188, 190, 191, 196, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 227, 230, 238, 241, 254, 255, 259, 273], "ansibl": 250, "ansible_connect": 274, "ansible_env": 274, "ansible_host": 274, "answer": [3, 4, 5, 6, 29, 42, 50, 51, 55, 56, 75, 96, 99, 102, 103, 115, 123, 124, 160, 172, 189, 190, 191, 200, 202, 237, 249, 259, 260, 261, 263, 264, 265, 266, 267], "answer_correct": 95, "answer_relev": [96, 97, 148], "anthologi": 98, "anti": 248, "anticip": 36, "antiquewhit": 256, "anyon": [241, 243, 266], "anyscal": [236, 266], "anyth": 199, "anywher": 254, "apach": [1, 77, 78, 87, 159, 193, 196, 197, 241], "apart": 259, "api": [2, 5, 7, 8, 20, 22, 23, 24, 25, 29, 33, 35, 36, 37, 39, 45, 49, 50, 51, 52, 53, 56, 60, 63, 78, 95, 100, 111, 112, 113, 114, 121, 122, 123, 124, 125, 164, 173, 174, 175, 184, 191, 196, 197, 198, 199, 203, 208, 209, 216, 218, 226, 228, 234, 238, 245, 246, 248, 249, 250, 257, 260, 267, 270, 273, 274, 276, 282], "api_kei": 22, "api_protocol": 282, "api_serv": 261, "api_server_openai": 45, "api_token": 3, "apic": 260, "apiserv": [225, 273, 274], "apiseven": 197, "apisix": [252, 283], "apivers": [89, 197, 200, 232, 273], "apoc": [13, 42, 68], "apolog": [3, 237], "apologi": 237, "app": [3, 69, 77, 80, 88, 107, 110, 118, 122, 126, 134, 143, 175, 181, 189, 190, 198, 199, 202, 223, 227, 230, 238, 245, 250, 270, 272, 273, 281], "app_backend_service_endpoint": [112, 114, 116, 260, 261, 263, 264], "app_code_gen_url": [123, 124], "app_data_prep_service_url": [112, 114, 116, 260, 261, 263, 264], "app_namespac": [126, 134, 175, 181, 189], "appear": [237, 249, 253, 254, 255, 256], "append": [111, 113, 123, 161, 162, 164, 184, 186, 201, 267], "appl": [23, 161, 162, 254], "appli": [32, 34, 38, 42, 89, 91, 98, 106, 107, 110, 117, 118, 125, 126, 127, 133, 134, 142, 143, 144, 151, 153, 166, 175, 180, 181, 188, 189, 195, 197, 198, 199, 200, 203, 223, 225, 226, 227, 230, 237, 241, 245, 254, 267, 270, 273], "applic": [2, 3, 6, 7, 8, 11, 12, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 86, 89, 90, 95, 97, 100, 101, 104, 105, 106, 107, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 122, 123, 124, 125, 131, 132, 133, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 167, 168, 169, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 190, 191, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 229, 230, 238, 241, 245, 246, 247, 249, 253, 259, 260, 261, 263, 264, 267, 268, 270, 276, 277, 279, 282, 283], "applicaiton": 250, "applyto": 232, "appoint": [237, 240, 241], "approach": [2, 46, 47, 65, 67, 70, 72, 73, 74, 94, 98, 168, 172, 198, 223, 241, 245, 246, 267, 276], "appropri": [2, 3, 112, 113, 123, 131, 140, 149, 161, 172, 178, 186, 190, 194, 199, 234, 237, 245, 246, 254, 255, 259, 267, 276], "approv": [238, 240, 241, 267], "approxim": 94, "april": [241, 267], "apt": [10, 11, 13, 16, 17, 18, 19, 198, 200, 255, 273, 274], "aq": [57, 64], "ar": [2, 3, 5, 9, 12, 20, 23, 24, 29, 33, 34, 35, 42, 45, 48, 50, 51, 53, 64, 69, 75, 78, 80, 82, 88, 89, 90, 91, 97, 98, 100, 104, 105, 106, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 155, 160, 161, 162, 164, 166, 168, 172, 176, 178, 179, 180, 183, 184, 185, 186, 188, 190, 191, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 225, 226, 227, 228, 229, 230, 232, 234, 236, 237, 238, 239, 241, 242, 244, 245, 246, 248, 249, 250, 253, 254, 255, 256, 259, 260, 261, 262, 263, 264, 265, 267, 268, 271, 272, 273, 274, 276, 277, 278, 279, 280, 281], "arab": 267, "arc": 88, "archiev": [244, 251], "architect": [236, 240], "architectur": [2, 3, 94, 100, 121, 130, 136, 137, 138, 139, 160, 172, 177, 183, 185, 190, 198, 236, 238, 240, 241, 245, 246, 248, 275, 279, 281], "archiv": [241, 244, 278], "area": [123, 124, 242, 254, 255, 267], "aren": 36, "arg": [6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 40, 42, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 88, 93, 100, 103, 104, 105, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 260, 261, 263, 264, 281], "arg_nam": 3, "args_schema": 3, "argument": [3, 80, 97, 117, 151, 200, 281], "aris": 241, "around": [98, 236, 237, 243, 254, 276], "arrai": 253, "arrang": [61, 63, 115, 260, 261, 263, 264], "arriv": 90, "arrow": [254, 256], "art": [3, 51, 52, 53, 225, 236, 267, 276], "articl": [131, 132, 139, 141, 163, 259], "articul": 267, "artifact": [194, 241, 246, 252, 272, 283], "artifactori": 223, "artifici": [260, 261, 266], "asc": 273, "ashahba": 242, "asid": 198, "ask": [121, 123, 124, 147, 163, 185, 190, 191, 198, 199, 249, 260, 261, 263, 264, 267, 281], "asmo": 249, "aspect": [100, 241, 267], "asr": [2, 88, 90, 107, 190, 191, 220, 238, 242, 249, 252, 279, 280, 281, 282, 283, 284], "asr_endpoint": [6, 104, 105, 205], "asr_model_path": 220, "asr_result": 6, "asr_service_host_ip": [104, 105], "asr_service_port": [104, 105], "assembl": [2, 245, 246, 250, 259, 267, 276, 277], "assembli": 250, "assess": [110, 236, 266, 276], "asset": [115, 196, 238, 260, 261, 263, 264, 266], "assign": [30, 42, 51, 52, 53, 89, 165, 197, 198, 231, 241], "assigne": 238, "assist": [3, 29, 34, 45, 50, 51, 119, 121, 161, 162, 164, 167, 202, 238, 241, 253, 267, 282], "associ": [7, 45, 74, 115, 239, 253, 260, 261, 263, 264, 267], "assum": [57, 89, 254, 255, 267, 273, 274], "assumpt": [115, 267], "assur": 267, "asterisk": 254, "async": [9, 78, 245], "asyncio": 78, "attach": 198, "attack": [37, 237], "attain": 98, "attempt": [98, 255, 267], "attend": 241, "attent": [98, 237, 274], "attest": 267, "attornei": 99, "attribut": [241, 256, 267], "aud": 198, "audienc": 198, "audio": [2, 6, 12, 75, 102, 103, 104, 105, 106, 160, 190, 191, 205, 217, 220, 249, 253, 282, 284], "audio2fac": 249, "audiochat": 250, "audioqa": 107, "audioqna": [88, 90, 168, 190, 195, 242, 249, 280, 281, 282, 283], "audioqna_gaudi": 107, "audioqna_xeon": 107, "audiourl": 253, "audit": 267, "auditori": 160, "aug": [98, 234], "augment": [2, 97, 109, 163, 183, 190, 191, 236, 245, 246, 249, 258, 259, 276], "austin": 3, "australia": [161, 162, 186, 187, 188, 189], "auth": [197, 198, 284], "authen": 282, "authent": [194, 225, 246, 272, 281, 282, 283], "authn": [194, 198, 242, 281, 282, 283], "author": [1, 87, 97, 98, 159, 193, 194, 234, 238, 241, 244, 253, 256, 281, 282], "authorized_kei": 274, "authorship": 241, "authz": [194, 198, 242, 281, 282, 283], "auto": [95, 225, 253, 254, 258, 267, 280, 281, 285], "autodepend": [205, 206, 207, 208, 209, 211, 212, 217, 219], "autogen": 284, "autom": [98, 199, 222, 250, 254, 284], "automat": [34, 42, 43, 44, 45, 46, 47, 48, 50, 63, 80, 89, 96, 98, 102, 103, 108, 109, 112, 114, 116, 117, 120, 123, 124, 145, 146, 147, 155, 164, 167, 176, 178, 179, 190, 191, 239, 242, 244, 250, 251, 254, 255, 267, 268, 280, 281, 282], "autonumb": 254, "autorag": [258, 280], "autosc": [53, 199, 200, 201, 214, 215, 216, 252], "autoscal": [199, 274, 284], "avail": [3, 12, 23, 31, 35, 48, 49, 56, 58, 64, 88, 91, 96, 107, 115, 118, 122, 123, 143, 166, 184, 190, 199, 200, 202, 223, 230, 237, 238, 241, 245, 250, 253, 254, 259, 266, 267], "avataranim": 249, "averag": [94, 98, 110, 267], "avg": [94, 273], "avoid": [11, 57, 91, 184, 232, 237, 254, 281, 283], "avx": 248, "avx2": [51, 52], "avx512": 248, "aw": [252, 267, 271, 274, 281, 283, 284], "awai": [2, 94, 255], "await": [78, 279], "awar": [45, 119, 121, 164, 167, 254, 267], "awk": [3, 6, 12, 19, 23, 40, 45, 55, 57, 64, 67, 75, 95, 101, 104, 105, 111, 160, 173, 260, 261, 263, 264], "ax": 267, "azur": [198, 267, 284], "b": [51, 82, 115, 127, 144, 153, 166, 195, 198, 238, 242, 250, 254, 256, 260, 261, 263, 264, 274], "b07cd12": 282, "b1182c4": 282, "b16b14a": 282, "b18531": 281, "b205dc7": 283, "b224b65": 283, "b22fc52": 283, "b2328b8": 283, "b24bff": 280, "b25c0b": 281, "b271739": 282, "b2771ad": 282, "b2e2b1a": 282, "b2e64d2": 283, "b373": [161, 162], "b3cbde": 281, "b3e1388fa2ca": [263, 264], "b4012f": 281, "b46ae8": 281, "b47ec0c": 282, "b4a7f26": 283, "b4b28e": 281, "b4d8e1": 280, "b51675": 280, "b541fd8": 283, "b56116": 281, "b5c14cd": 282, "b61f61b": 282, "b64_img_str": [161, 162], "b6c0785": 283, "b6wcb": 230, "b70b914": 283, "b7975e": 281, "b7ztj": 230, "b80ae50": 283, "b84c989": 283, "b873cf8": 283, "b98fa07a4f5c": 264, "b994bc": 280, "b9bc034": 283, "ba17031": 283, "ba1d11": 280, "ba6541": 281, "ba78b4c": 282, "ba94e01": 283, "baai": [2, 17, 26, 27, 30, 63, 69, 70, 72, 74, 80, 86, 91, 97, 99, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 164, 169, 173, 174, 191, 214, 215, 260, 261, 263, 264, 282, 283], "back": [3, 5, 32, 35, 38, 95, 99, 102, 119, 164, 167, 190, 191, 241, 249, 254, 282], "backend": [7, 28, 51, 52, 58, 59, 65, 67, 70, 72, 73, 74, 90, 100, 113, 114, 115, 116, 118, 123, 124, 140, 141, 149, 150, 166, 184, 186, 191, 198, 249, 250, 253, 256, 260, 261, 263, 264, 267, 282, 283], "backend_base_url": 176, "backend_health_check_endpoint": 184, "backend_service_endpoint": [111, 112, 113, 114, 116, 123, 124, 137, 138, 140, 141, 149, 150, 161, 162, 173, 184, 186, 187, 198, 260, 261, 263, 264, 283], "backend_service_endpoint_chatqna": 164, "backend_service_endpoint_codegen": 164, "backend_service_endpoint_docsum": 164, "backend_service_endpoint_faqgen": 164, "backend_service_ip": 58, "backend_service_nam": 58, "backend_service_port": 58, "background": 243, "backslash": 254, "backtick": 254, "backup": 199, "bad": 89, "badcommit": 283, "bak": 199, "balanc": [89, 110, 115, 232, 260, 261, 263, 264, 273], "balloon": 89, "balloonspolici": 89, "balloontyp": 89, "baltocdn": 273, "bamboogl": 267, "ban": 253, "bandit": 238, "bandwidth": [252, 283], "bar": [98, 123, 124, 154, 164, 167, 256, 259], "barak": 99, "bare": [234, 267], "base": [2, 3, 5, 12, 17, 23, 26, 27, 28, 30, 31, 34, 35, 45, 51, 52, 55, 57, 59, 61, 63, 64, 65, 67, 69, 70, 72, 73, 74, 80, 82, 86, 88, 89, 90, 91, 94, 96, 97, 98, 99, 100, 102, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 120, 127, 128, 129, 136, 137, 138, 139, 140, 141, 143, 144, 149, 150, 153, 156, 161, 162, 163, 164, 166, 167, 168, 169, 173, 174, 183, 184, 185, 186, 190, 191, 194, 198, 199, 200, 201, 202, 214, 215, 216, 226, 227, 231, 232, 234, 238, 240, 241, 245, 246, 249, 250, 252, 253, 254, 255, 259, 260, 261, 263, 264, 265, 267, 268, 270, 273, 276, 280, 282, 283, 284], "base64": [198, 253], "base_url": [22, 54, 88, 135, 182], "baseag": 3, "baselin": [110, 267], "bash": [18, 32, 38, 45, 51, 52, 53, 95, 100, 101, 110, 148, 198, 254, 259, 260, 261, 263, 264, 273, 274], "bash_complet": 273, "bashrc": 255, "basi": [115, 241, 260, 261, 263, 264, 267], "basic": [9, 248, 250, 259, 267, 268], "basic_url": [129, 155], "bat": 239, "batch": [9, 51, 52, 53], "batch_siz": [54, 88, 122], "bazel": 231, "bb4230": 281, "bbaai": 2, "bbdc1f0": 282, "bc4bbfa": 283, "bc81770": 283, "bc9aba": 280, "bceacdc": 283, "bd385b": 280, "bd46dfd": 282, "bd811bd": 283, "bdc93be9ce0c": 260, "bdd31cf498d13782cc7497cba5896996ce429f91": [115, 261, 263, 264], "be4833f": 282, "be6cd2d0ea38": 261, "be8e1d681eb045f082a7b26d5dba42ff": 261, "be8e283": 283, "bea9bb0": 283, "bearer": 197, "becam": 254, "becaus": [89, 98, 196, 228, 254, 273, 281, 283], "becom": [109, 161, 162, 199, 241, 253, 259, 261, 266, 267, 274], "beda609": 283, "bedrock": 284, "bee1132464cd": 115, "been": [5, 35, 89, 98, 118, 141, 150, 199, 201, 203, 204, 221, 225, 227, 229, 230, 232, 238, 241, 253, 255, 259, 261, 267, 273], "befor": [10, 13, 30, 33, 35, 51, 52, 57, 90, 93, 96, 104, 105, 106, 109, 110, 111, 112, 113, 117, 123, 124, 125, 127, 133, 142, 144, 151, 153, 161, 162, 164, 166, 173, 174, 180, 184, 186, 192, 198, 199, 200, 201, 205, 212, 214, 215, 216, 217, 219, 225, 226, 228, 231, 232, 234, 238, 250, 253, 254, 259, 260, 261, 263, 264, 268, 272, 280, 282], "begin": [94, 112, 113, 140, 149, 161, 166, 178, 186, 254, 259], "behalf": 241, "behavior": [34, 51, 52, 90, 172, 190, 237, 238, 253], "behind": [48, 98, 143, 200, 255, 260, 261, 263, 264], "being": [2, 3, 33, 34, 38, 39, 51, 52, 53, 89, 112, 168, 184, 195, 199, 223, 255, 259, 267], "beir": 267, "believ": 32, "belong": [89, 198, 225, 238], "below": [2, 3, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 30, 32, 35, 38, 40, 41, 51, 52, 53, 57, 58, 69, 89, 90, 91, 95, 97, 100, 101, 104, 105, 107, 109, 110, 111, 112, 113, 114, 116, 118, 121, 123, 124, 125, 126, 130, 131, 132, 133, 134, 139, 140, 141, 143, 149, 150, 154, 156, 157, 158, 160, 161, 162, 164, 165, 167, 169, 170, 171, 173, 174, 175, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 191, 194, 197, 226, 227, 229, 230, 238, 245, 248, 253, 254, 256, 259, 260, 261, 263, 264, 267, 273, 274], "bench": 283, "benchmark": [35, 51, 52, 93, 94, 97, 238, 242, 246, 258, 265, 267, 281, 282, 283, 285], "benchmark_output": [90, 110], "benchmark_throughput": [51, 52], "benefit": [100, 109, 110, 241, 250, 259, 267, 275], "berkelei": 267, "bert": [11, 17, 18, 35, 267], "besid": [51, 52, 53], "best": [48, 51, 52, 91, 110, 183, 236, 237, 248, 250, 253, 254, 255, 259, 267, 275, 276], "beta": [42, 253], "better": [51, 52, 89, 98, 110, 123, 124, 191, 192, 199, 225, 281, 282, 283], "between": [2, 3, 33, 42, 74, 89, 98, 109, 119, 120, 156, 164, 167, 172, 191, 198, 226, 238, 241, 245, 246, 248, 253, 254, 256, 259, 260, 261, 263, 264, 267, 276, 280], "beyond": 45, "bf10bdd": 283, "bf16": [51, 52, 283], "bfcl": 267, "bfloat16": 117, "bg": 254, "bgcolor": 256, "bge": [2, 17, 22, 26, 27, 30, 61, 63, 69, 70, 72, 74, 80, 86, 91, 97, 99, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 164, 169, 173, 174, 191, 214, 215, 260, 261, 263, 264, 267, 282, 283, 284], "bhandaru": [236, 240, 242], "bi": [267, 280], "bia": [31, 253, 266, 277, 281, 283], "bias": [31, 32, 267], "bias_detect": 32, "bibtex": [1, 87, 159, 193], "bidi": 281, "big": [5, 11, 74], "bigcod": [35, 122, 279, 283, 284], "bigcode_evaluation_har": [88, 122], "bigcodeevalpars": 88, "bigger": 35, "biggest": 266, "bigscienc": 216, "bilingu": 98, "billion": [35, 115, 202, 260, 261, 263, 264], "bin": [12, 45, 92, 93, 110, 225, 231, 232, 255, 259, 261, 273, 274], "binari": [80, 231, 238, 244, 267], "bind": [225, 241], "bio": 89, "bit": 117, "bithuman": 249, "bitnamichart": 197, "bkc": [110, 280], "black": [86, 267], "blank": [115, 254, 260, 263, 264], "bleu": [97, 258, 267], "blob": [23, 161, 162, 225, 254], "block": [2, 25, 33, 36, 37, 39, 49, 56, 200, 232, 236, 238, 245, 246, 249, 253, 254, 256, 259, 261, 267, 275, 276, 283], "block_siz": [51, 52], "blocksiz": 273, "blog": 236, "bloom": [43, 44, 50, 216], "blue": [30, 33, 48, 267], "blueprint": [236, 267, 276], "bob": [165, 198], "bodi": [227, 237, 253, 254, 267], "boi": 30, "boldfac": 254, "bom": 282, "booktitl": 98, "bool": [214, 215, 216, 253], "boolean": [35, 36, 98], "boost": [163, 191, 280], "boot": 256, "bop": 201, "bot": [6, 75, 172, 238, 259], "both": [9, 20, 23, 25, 26, 27, 32, 35, 38, 69, 88, 89, 91, 97, 100, 108, 119, 120, 122, 128, 129, 135, 143, 145, 146, 154, 155, 160, 165, 176, 182, 184, 195, 196, 198, 199, 232, 248, 249, 250, 253, 254, 255, 259, 266, 267, 273, 274, 280, 281, 282], "bottleneck": [88, 90, 259], "bottom": [108, 120, 145, 146, 155, 164, 167, 176, 190, 256], "boundari": [2, 168], "bowl": 267, "box": [0, 119, 120, 145, 146, 154, 155, 164, 167, 176, 248, 254, 256, 266, 267], "br": 254, "br_netfilt": 273, "brace": 256, "brain": 261, "branch": [238, 252, 255, 283], "brand": [238, 241], "breach": 196, "break": [2, 238, 245, 246, 254, 276], "breakthrough": [115, 249, 263, 264], "breviti": 98, "brevity_penalti": 98, "bridg": [109, 136, 137, 138, 156, 172, 191, 254, 259, 273], "bridgetow": [12, 23, 25, 160, 267], "brief": 168, "bring": [2, 23, 26, 27, 168, 184, 226, 238, 266], "broad": [5, 266, 267], "broadcom": [236, 266], "broaden": [281, 282], "broader": 266, "broken": 283, "brows": [243, 275, 276], "browser": [58, 92, 109, 111, 112, 113, 114, 116, 121, 123, 124, 127, 130, 131, 132, 139, 140, 141, 144, 149, 150, 153, 164, 166, 167, 172, 178, 179, 184, 186, 187, 190, 198, 201, 203, 204, 221, 223, 254, 255, 259, 260, 261, 263, 264], "bsi": 31, "bucket": [161, 162], "buffer": [107, 118, 126, 143, 175, 181, 227], "bug": [2, 168, 238, 243, 267, 281, 282, 283], "bug_fix": 283, "bugfix": 283, "bui": [34, 114, 208, 261], "build": [2, 20, 42, 69, 88, 95, 100, 103, 107, 109, 110, 115, 118, 121, 126, 130, 134, 139, 143, 160, 163, 166, 168, 172, 175, 181, 185, 189, 190, 195, 196, 200, 202, 227, 232, 236, 238, 244, 245, 246, 249, 252, 253, 254, 255, 258, 259, 265, 266, 267, 268, 270, 272, 273, 275, 276, 277, 279, 280, 281, 282, 283], "build_docker_microservic": [51, 52, 53], "build_docker_vllm": [45, 51, 52], "build_docker_vllm_openvino": [51, 52], "build_docker_vllmrai": [45, 53], "build_imag": 95, "build_with_contain": 231, "buildkit": 273, "buildkit_v": 273, "buildkitd": 273, "built": [2, 3, 6, 9, 20, 23, 24, 48, 53, 75, 88, 90, 114, 121, 130, 139, 172, 183, 195, 253, 254, 266, 267, 282], "bulk": 267, "bullet": 254, "bulli": 38, "bump": 283, "bundl": [48, 267], "buri": 147, "burn": 267, "burst": 89, "busi": [2, 31, 35, 137, 138, 241, 245, 246, 250, 266, 267, 275, 276], "business_safety_logistic_regression_classifi": 35, "button": [92, 112, 114, 121, 238, 249, 259], "buzzword": [115, 261, 263, 264], "bye": 78, "byte": [223, 273], "byte_str": [6, 104, 105, 107, 205], "bz2": 95, "c": [12, 30, 45, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 86, 111, 112, 113, 114, 115, 116, 123, 124, 161, 162, 164, 166, 173, 174, 184, 202, 212, 219, 241, 250, 254, 255, 260, 261, 263, 264, 273], "c016d82": 282, "c04": 98, "c06bcea": 282, "c0d2ba6": 282, "c0f5e2f": 282, "c10bca1": 283, "c1887ed": 282, "c1a5883": 282, "c1cff5": 281, "c1fd27f": 282, "c25063f": 282, "c26d0f6": 282, "c297155": 282, "c2a13d1": 282, "c327972": 282, "c37d9c": 281, "c3a1c1": 281, "c3f6b2": 281, "c412aa3": 282, "c45f8f0": 282, "c461b60": 282, "c5075b": 280, "c541d1d": 282, "c565909": 282, "c59178629901": 261, "c5a0344": 282, "c5f309": 280, "c6d811a": 283, "c718602": 283, "c71bc68": 282, "c73e4e0": 282, "c74564": 281, "c7i": [123, 131], "c84ac4c": 283, "c86cf85": 282, "c88817": 280, "c9548d": 281, "c9f9aca": 282, "ca": [273, 274], "ca94c60": 283, "cab7a88": [282, 283], "cach": [41, 48, 51, 52, 57, 64, 89, 104, 105, 111, 112, 113, 114, 116, 117, 123, 124, 125, 132, 133, 137, 138, 142, 149, 150, 161, 162, 164, 173, 174, 180, 186, 187, 188, 200, 201, 203, 208, 214, 215, 216, 218, 255, 260, 261, 263, 264, 267, 282, 283], "cad2fc3": [282, 283], "cadenc": 267, "cafcf1b": 282, "calcul": [9, 98], "calico": [202, 225, 273, 274], "calico_rr": 274, "calico_v": 273, "caliconetwork": 273, "call": [3, 5, 9, 12, 82, 89, 95, 107, 115, 118, 122, 123, 124, 143, 165, 198, 227, 248, 253, 254, 255, 259, 266, 267, 273], "callable_api": 3, "caller": 272, "came": 254, "can": [2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 26, 27, 30, 32, 33, 34, 35, 38, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 58, 61, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 80, 82, 86, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100, 102, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 153, 156, 157, 158, 160, 161, 164, 166, 167, 168, 169, 170, 171, 172, 174, 176, 177, 178, 180, 183, 184, 185, 186, 187, 188, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 214, 215, 216, 218, 221, 223, 225, 226, 227, 228, 229, 230, 231, 232, 238, 241, 243, 245, 246, 248, 249, 250, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 275, 276, 279], "cancel": [30, 156, 169, 282], "cancer": 267, "candid": [61, 63, 98, 250], "cannot": [11, 89, 121, 198, 199, 218, 241, 253], "cap": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 97, 114, 158, 171], "cap_add": [115, 261], "capabl": [2, 3, 5, 35, 95, 109, 121, 135, 163, 169, 172, 191, 196, 198, 200, 245, 246, 247, 249, 250, 254, 259, 279], "capac": [197, 200, 267], "caption": [12, 160, 161, 162, 191, 254, 256], "captur": [20, 23, 24, 190, 198, 259, 261, 267], "car": 261, "carcinogen": 267, "card": [35, 51, 52, 89, 91, 97, 114, 187, 203, 258, 283], "care": [202, 238, 244, 245, 267], "carri": 267, "cartwright": [236, 240], "case": [2, 12, 20, 23, 24, 64, 74, 88, 89, 93, 109, 110, 112, 114, 115, 116, 121, 130, 136, 137, 138, 139, 147, 160, 168, 177, 184, 185, 191, 194, 195, 198, 200, 225, 226, 228, 230, 238, 241, 250, 252, 254, 259, 266, 267, 268, 270, 273, 276, 282, 283, 284], "cash": [115, 260, 261, 263, 264], "cast": 237, "cat": [89, 200, 273, 274], "catalog": [238, 267, 283], "categori": [9, 32, 34, 36, 267], "cater": 168, "caught": 38, "caus": [37, 88, 89, 90, 255, 281], "causal": 122, "cb31d05": 282, "cc45ff032e8c": 261, "cc84847": 283, "cc8cd70": 282, "ccdd2d0": 283, "cd": [2, 3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 88, 92, 93, 95, 97, 100, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 135, 137, 138, 139, 140, 141, 142, 144, 145, 146, 149, 150, 151, 153, 154, 155, 157, 158, 160, 161, 162, 164, 166, 167, 170, 171, 172, 173, 174, 176, 178, 179, 180, 182, 184, 185, 186, 187, 188, 195, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 225, 238, 242, 243, 255, 259, 260, 261, 263, 264, 268, 270, 274, 282, 283], "cd83854": 282, "cd91cf": 280, "cdw": [236, 240], "ce": [11, 14, 17, 18], "ce4e7802a371": 261, "ce9190": 280, "cef6ea": 280, "cell": 254, "center": [254, 256, 276], "central": [98, 198, 243, 259], "cert": [202, 225, 273], "certain": [89, 113, 120, 161, 186, 248], "certif": [238, 241, 267, 273], "certifi": 267, "cf021ee": 282, "cf15b91": 282, "cf28da4": 282, "cf8bd83": 283, "cfaf5f0": 282, "cfcac3f": 282, "cff0a36": 283, "cff0a4d": 283, "cgroup": 89, "cgroupn": 225, "chain": [194, 226, 253, 267, 270], "chair": [236, 240, 241], "challeng": [38, 95, 100, 147, 245, 266], "chang": [58, 80, 87, 89, 90, 92, 95, 103, 109, 111, 112, 113, 114, 116, 117, 118, 121, 125, 130, 131, 132, 133, 134, 139, 140, 141, 142, 143, 149, 150, 151, 161, 162, 164, 172, 178, 179, 180, 184, 186, 188, 191, 192, 197, 199, 200, 201, 227, 229, 230, 232, 238, 241, 244, 245, 253, 254, 255, 256, 259, 273, 274, 280, 281, 282, 283], "change_img": 225, "channel": [25, 33, 36, 37, 39, 49, 56, 237, 260, 261, 263, 264], "chao": [161, 162], "chaqna": [112, 113, 114, 116, 118, 184, 260, 261, 263, 264, 282], "char": 254, "charact": 280, "character": 267, "characterist": [185, 237, 267], "charactertextsplitt": 80, "charg": 253, "chart": [160, 168, 183, 192, 196, 197, 198, 199, 202, 223, 238, 242, 262, 266, 279, 280, 281, 282, 283, 284], "chart_mount": 281, "chart_test": 281, "charter": [240, 243], "chartnam": 200, "chat": [2, 3, 29, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 88, 90, 91, 100, 104, 105, 108, 110, 111, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 131, 132, 139, 140, 141, 143, 156, 166, 173, 174, 178, 179, 190, 191, 200, 201, 209, 218, 221, 227, 230, 245, 250, 259, 260, 261, 263, 264, 265, 277, 279, 280, 281, 282], "chat_base_url": 120, "chat_data": 29, "chat_history_create_endpoint": 164, "chat_history_delete_endpoint": 164, "chat_history_get_endpoint": 164, "chat_id": 29, "chat_processor": 45, "chat_qna": 245, "chat_templ": [50, 51, 161, 162, 260, 261, 263, 264], "chat_url": 108, "chatbot": [109, 172, 190, 191, 200, 253, 259, 267], "chatcmpl": 253, "chatcompletionrequest": 245, "chatcompletionrespons": 245, "chatgpt": 253, "chathistori": [8, 164, 238, 242], "chathistory_mongo": 29, "chatmodelllama": 45, "chatopenai": [53, 114], "chatqa": [118, 198, 227, 229, 230, 232, 234, 238, 270], "chatqna": [2, 9, 58, 88, 89, 90, 92, 97, 115, 121, 166, 168, 190, 194, 195, 197, 198, 199, 200, 203, 204, 221, 226, 232, 238, 242, 244, 247, 249, 252, 258, 267, 279, 280, 281, 282, 283, 284], "chatqna_authn_fakejwt": 198, "chatqna_authn_keycloak": 198, "chatqna_authn_oauth": 198, "chatqna_authz_fakejwt": 198, "chatqna_authz_keycloak": 198, "chatqna_authz_oauth": 198, "chatqna_bf16": 117, "chatqna_config_map": 91, "chatqna_dataprep_gaudi": [227, 230], "chatqna_dataprep_xeon": [198, 227, 230], "chatqna_gaudi": [118, 227, 238], "chatqna_istio_external_auth": 198, "chatqna_mega_servic": 91, "chatqna_megaservice_grafana": 92, "chatqna_nv": 230, "chatqna_router_gatewai": 198, "chatqna_router_gateway_oauth": 198, "chatqna_switch_gaudi": 227, "chatqna_switch_xeon": 227, "chatqna_ui_gatewai": 198, "chatqna_use_cas": 226, "chatqna_without_rerank": [112, 114], "chatqna_xeon": [118, 227, 238, 270], "chatqnagatewai": [2, 245], "chatqnaservic": 245, "check": [0, 2, 3, 9, 17, 25, 36, 37, 49, 52, 53, 56, 57, 69, 92, 97, 107, 110, 112, 113, 114, 116, 118, 121, 125, 126, 130, 134, 137, 138, 139, 143, 164, 168, 172, 175, 181, 183, 184, 189, 194, 197, 198, 199, 200, 202, 225, 226, 227, 230, 234, 236, 248, 253, 254, 255, 265, 267, 268, 270, 272, 273, 274, 277, 282, 283], "check_asr_serv": 6, "check_llava_serv": 55, "check_lvm": [55, 57], "check_refer": 122, "check_whisper_serv": 6, "checkeck": 53, "checkout": [2, 195, 238, 255, 260, 261, 263, 264, 274, 277, 281], "checkpoint": [30, 156, 169, 283], "chen": 242, "chendi": 242, "chensuyu": [238, 242], "chief": [236, 240, 267], "children": 274, "chin": 98, "china": [112, 114, 283], "chines": [178, 179, 180, 181, 267, 280, 281, 283], "chinyixiang": 250, "chip": 99, "chmod": 200, "choic": [45, 48, 119, 120, 164, 167, 198, 248, 253, 261, 267], "choos": [42, 43, 44, 45, 46, 47, 50, 58, 63, 67, 70, 72, 73, 74, 89, 107, 109, 110, 112, 114, 118, 121, 160, 168, 178, 179, 185, 194, 198, 227, 232, 241, 259, 266, 268, 274], "chosen": [30, 112, 113, 123, 131, 140, 149, 161, 178, 186], "chown": [200, 273, 274], "chroma": [86, 172, 173, 174, 190, 191, 219, 277, 279, 284], "chroma_server_nofil": 77, "chromadb": [77, 267], "chun_siz": 11, "chunk": [11, 51, 52, 64, 80, 249, 260, 261, 263, 264, 267, 282], "chunk_dur": [57, 64, 184], "chunk_overlap": [11, 13, 16, 17, 18, 91, 97], "chunk_siz": [11, 13, 16, 17, 18, 91, 97, 110], "chunk_start": [57, 64, 184], "chunker": 267, "ci": [195, 238, 242, 243, 280, 281, 282, 283], "cicd": 284, "cid": [57, 64], "cidr": 273, "circl": [254, 256], "circumst": 241, "cite": 267, "claim": [98, 125, 198], "clang": [231, 254], "clangd": 231, "clarifi": [237, 267], "clariti": [237, 238, 254, 267], "class": [2, 3, 89, 99, 225, 237, 238, 245, 254], "class_metr": 225, "classic": 279, "classif": [32, 38, 43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 267], "classifi": [35, 115, 260, 261, 263, 264], "classifil": 35, "claud": 284, "clean": [143, 225, 226, 254, 255, 267, 274, 282], "clear": [5, 12, 110, 119, 120, 164, 167, 176, 238, 247, 254, 266, 267, 283], "clearli": 254, "cli": [210, 232, 272], "click": [92, 112, 114, 120, 121, 123, 124, 145, 146, 154, 155, 164, 167, 176, 190, 198, 249, 254, 259], "client": [95, 107, 112, 118, 126, 134, 143, 165, 175, 181, 189, 196, 197, 198, 227, 230, 245, 256, 260, 270, 283], "client_except": 121, "client_id": [197, 198], "client_pod": [107, 118, 126, 134, 143, 175, 181, 189, 198, 227, 230, 270], "client_secret": [197, 198], "clientconnectorerror": 121, "clip": [183, 184, 191, 277, 283], "clone": [2, 54, 61, 77, 88, 91, 93, 95, 97, 100, 103, 104, 105, 108, 110, 111, 112, 113, 114, 116, 119, 120, 122, 123, 124, 128, 129, 131, 132, 135, 137, 138, 140, 141, 145, 146, 149, 150, 154, 155, 157, 158, 161, 162, 164, 167, 170, 171, 173, 174, 176, 178, 179, 182, 184, 186, 187, 195, 223, 225, 238, 255, 260, 261, 263, 264, 268, 270, 274], "close": [137, 138, 267, 284], "closer": [33, 39, 98], "closur": 241, "cloud": [2, 74, 77, 80, 107, 112, 118, 143, 168, 194, 226, 227, 234, 236, 238, 240, 246, 248, 250, 252, 259, 261, 267, 268, 270, 276, 277, 281, 284], "cloudera": [236, 266], "cloudform": 272, "cluster": [89, 92, 93, 127, 144, 153, 165, 166, 168, 195, 198, 199, 200, 216, 218, 222, 228, 230, 232, 250, 252, 259, 265, 270, 271, 281, 284, 285], "cluster_ip": 110, "clusterip": [110, 166, 199, 202], "cm": 199, "cmd": [239, 282], "cmpl": 261, "cncf": 267, "cni": 273, "cni_ver": 273, "co": [40, 121, 162, 201, 203, 204, 214, 215, 216, 218, 221], "coc": 241, "code": [1, 2, 3, 11, 17, 18, 32, 35, 38, 58, 87, 88, 94, 122, 126, 131, 132, 134, 159, 164, 167, 168, 175, 181, 190, 191, 193, 194, 197, 198, 223, 231, 240, 241, 243, 244, 246, 250, 253, 255, 265, 266, 267, 274, 275, 279, 281, 282, 283, 284, 285], "code_of_conduct": 237, "codebas": 121, "codeblock": [254, 281, 282], "codecov": 280, "codegen": [88, 90, 166, 168, 190, 195, 200, 238, 242, 250, 252, 279, 280, 281, 282, 283, 284], "codegen_endpoint": 122, "codegen_gaudi": 126, "codegen_url": 122, "codegen_xeon": 126, "codellama": [121, 123, 124, 125, 164, 191, 203, 227], "codeown": [242, 282, 283], "codeparrot": 88, "codeql": 238, "codeqwen1": [121, 122], "coder": 121, "codetran": [88, 90, 168, 190, 195, 200, 242, 250, 252, 279, 280, 281, 282, 283, 284], "codetrans_gaudi": 134, "codetrans_xeon": 134, "cogen": 283, "cognit": 267, "coher": [119, 164, 167, 267], "cohes": 241, "colbert": 267, "cole": 98, "collabor": [238, 241, 266], "collater": [115, 260, 261, 263, 264], "collect": [11, 32, 61, 63, 74, 88, 90, 93, 109, 160, 172, 191, 199, 223, 225, 241, 246, 254, 255, 259, 267, 268, 276, 282, 283], "collect_service_metr": 90, "collecter_interv": 225, "collection_nam": [8, 11, 16, 18, 29, 60, 66, 74, 164], "collector": 225, "collector_zipkin_host_port": 9, "colon": 254, "color": [237, 256, 267], "column": [148, 256], "columns2": 254, "columns3": 254, "com": [1, 2, 11, 12, 13, 16, 17, 18, 23, 30, 45, 54, 57, 61, 77, 87, 88, 91, 92, 93, 95, 97, 100, 103, 104, 105, 109, 110, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 159, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 193, 195, 197, 198, 199, 202, 223, 225, 227, 232, 234, 236, 238, 242, 243, 250, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 281, 282, 283], "combin": [42, 109, 185, 232, 255, 259, 260, 261, 263, 264, 267], "combined_model": 232, "combo": 282, "comcast": [236, 240], "come": [95, 100, 110, 160, 198, 266, 267], "comma": 225, "command": [6, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 35, 40, 41, 45, 48, 51, 52, 58, 67, 68, 70, 72, 73, 74, 90, 91, 93, 94, 95, 97, 100, 101, 102, 103, 104, 105, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 131, 132, 133, 135, 139, 140, 141, 142, 143, 145, 146, 149, 150, 154, 155, 156, 157, 158, 160, 161, 162, 164, 166, 167, 169, 170, 171, 172, 173, 174, 176, 178, 179, 180, 182, 184, 185, 186, 187, 188, 192, 198, 199, 200, 202, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 227, 228, 230, 231, 232, 238, 255, 256, 260, 261, 263, 264, 268, 270, 272, 273, 274, 282, 283], "comment": [29, 38, 121, 123, 124, 237, 238, 243, 254, 283], "commerc": 185, "commerci": 102, "commit": [88, 115, 196, 237, 238, 241, 255, 261, 263, 264, 282, 283], "committ": [241, 266], "committe": [243, 267], "common": [17, 130, 198, 200, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 237, 238, 241, 254, 267, 281, 282, 283], "commondatastorag": [161, 162], "commonli": [97, 254], "commun": [2, 3, 45, 78, 89, 110, 168, 177, 198, 199, 223, 226, 237, 240, 244, 245, 246, 248, 251, 254, 266, 267, 268, 273, 275, 276, 284], "comp": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 100, 103, 104, 105, 109, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 202, 238, 242, 245, 247, 260, 261, 263, 264, 281, 282, 283], "compani": [115, 240, 241, 255, 260, 261, 263, 264, 267], "compar": [33, 89, 98, 100, 168, 227, 245, 255, 267], "comparison": [95, 172, 259, 267], "compat": [3, 22, 53, 168, 231, 238, 244, 253, 265, 272, 281, 283], "compet": 267, "competit": [196, 241, 267], "compil": 231, "compl": 42, "complaint": 237, "complement": 267, "complementari": 267, "complet": [2, 3, 4, 5, 45, 46, 47, 48, 49, 50, 51, 52, 53, 77, 88, 90, 100, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 122, 123, 124, 127, 131, 132, 144, 153, 164, 173, 174, 178, 179, 184, 198, 209, 218, 230, 238, 245, 253, 254, 259, 260, 261, 263, 264, 267, 272, 273, 282], "completion_token": [253, 261], "completioncheck": 4, "completli": 238, "complex": [2, 74, 95, 97, 100, 147, 191, 198, 238, 245, 246, 250, 253, 267, 276], "compli": [93, 241, 253], "complianc": [147, 196, 198, 248, 266, 267], "compon": [1, 9, 12, 77, 87, 91, 95, 107, 109, 115, 118, 126, 134, 143, 159, 160, 166, 168, 175, 181, 189, 193, 201, 202, 222, 226, 227, 228, 230, 231, 232, 245, 246, 248, 250, 252, 254, 255, 259, 260, 261, 263, 264, 270, 276, 277, 280, 281, 282, 283, 284], "compos": [2, 57, 64, 77, 79, 97, 100, 102, 104, 105, 110, 111, 113, 115, 121, 123, 124, 130, 131, 132, 137, 138, 139, 140, 141, 149, 150, 160, 161, 162, 163, 164, 168, 172, 173, 174, 178, 179, 183, 184, 185, 186, 187, 195, 226, 236, 238, 245, 246, 252, 259, 260, 261, 263, 264, 267, 268, 276, 277, 279, 280, 281, 282, 283, 284], "compose_guardrail": [114, 261], "compose_qdr": 113, "compose_vllm": [112, 114, 261, 264], "compose_vllm_rai": 114, "compose_without_rerank": [112, 114], "composit": [241, 267, 276, 283], "comprehend": [147, 191, 267], "comprehens": [2, 13, 95, 97, 100, 110, 121, 147, 160, 163, 165, 172, 190, 191, 245, 246, 267], "compress": [51, 52], "compris": [101, 194, 245, 249, 253, 260, 261, 263, 264, 267], "comput": [23, 74, 89, 98, 113, 121, 140, 149, 161, 178, 186, 249, 250, 255, 267], "con": [238, 244, 245, 267], "concept": [121, 250, 273], "concern": [34, 241, 261, 267], "concis": 147, "concret": 35, "concurr": [88, 90, 94, 110, 172, 280, 281, 282, 283], "concurrent_level": 90, "conda": 101, "condens": [145, 146, 154, 155, 164, 167, 190], "condit": [1, 35, 40, 42, 87, 159, 193, 194, 200, 226, 229, 230, 238, 239, 270, 272, 280, 281], "conduct": [2, 65, 67, 70, 72, 73, 74, 88, 168, 194, 241, 243], "conf": [58, 94, 225, 255, 273, 274], "confer": [95, 98], "confid": 267, "confidenti": [267, 284], "config": [77, 89, 92, 96, 110, 112, 114, 116, 118, 121, 122, 123, 124, 140, 141, 149, 150, 197, 198, 199, 203, 204, 221, 225, 226, 227, 228, 229, 230, 232, 246, 255, 259, 260, 261, 263, 264, 270, 273, 280, 281, 282, 283], "config_fil": 225, "config_max_thread_byt": 254, "config_onli": 91, "configmap": [199, 226, 230, 232, 270, 281], "configpatch": 232, "configur": [20, 23, 24, 25, 33, 36, 37, 39, 45, 48, 49, 51, 52, 56, 57, 64, 88, 92, 100, 109, 112, 113, 115, 123, 127, 131, 140, 144, 149, 153, 160, 161, 163, 164, 168, 178, 186, 194, 196, 197, 198, 199, 200, 225, 229, 234, 238, 245, 255, 259, 260, 261, 263, 264, 265, 268, 272, 281, 283, 284], "configvalid": 232, "confirm": [112, 143], "conflict": [32, 218, 283], "conform": [199, 241], "confus": 254, "congratul": [115, 274], "conjunct": [109, 110, 253], "conjur": 261, "conncurr": 94, "connect": [28, 59, 69, 78, 80, 88, 89, 90, 92, 107, 109, 112, 113, 114, 115, 116, 118, 121, 123, 131, 140, 143, 149, 161, 178, 186, 196, 197, 198, 225, 226, 227, 238, 250, 256, 261, 263, 264, 267, 270, 281, 282], "connect_model": 232, "connector": [80, 107, 118, 143, 190, 198, 227, 238, 242, 247, 259, 280, 281, 282, 283, 284], "consecut": [123, 124, 255], "consensu": [240, 241], "consequ": 237, "conserv": [90, 184], "consid": [89, 95, 98, 237, 238, 244, 253, 255, 259, 267], "consider": 267, "consist": [25, 33, 36, 37, 39, 45, 49, 56, 156, 166, 190, 191, 232, 241, 247, 248, 253, 254, 259, 266, 267, 282], "consol": [112, 113, 123, 131, 140, 149, 161, 165, 178, 186, 198, 254, 259], "consolid": [115, 260, 261, 263, 264], "constant": 90, "constraint": 199, "construct": [2, 17, 18, 45, 104, 105, 111, 112, 113, 114, 116, 123, 124, 140, 141, 149, 150, 161, 162, 168, 173, 174, 178, 179, 184, 186, 187, 237, 246, 250, 253, 259, 266, 276], "construct_data_servic": 245, "construct_rag_servic": 245, "consum": [95, 97, 111, 113, 115, 123, 124, 133, 140, 141, 149, 150, 161, 162, 164, 166, 184, 186, 187, 260, 261, 263, 264, 267, 277], "consumpt": 91, "contact": [236, 241, 242, 267], "contain": [2, 8, 10, 12, 17, 18, 19, 29, 30, 34, 35, 42, 43, 44, 45, 46, 47, 50, 51, 52, 57, 58, 60, 63, 64, 67, 69, 70, 72, 73, 74, 88, 91, 92, 95, 97, 100, 103, 110, 118, 121, 130, 139, 147, 148, 157, 158, 170, 171, 172, 190, 194, 197, 198, 199, 200, 208, 214, 215, 216, 218, 222, 225, 226, 227, 230, 231, 234, 238, 241, 245, 246, 247, 248, 249, 250, 253, 254, 255, 256, 259, 262, 267, 268, 272, 273, 274, 276, 281, 282, 283, 284], "container": [2, 168, 194, 246, 252, 266, 267, 276, 277], "container_id": [112, 113, 114, 116], "container_metr": 225, "container_nam": [112, 114, 115, 116, 123, 124, 140, 141, 149, 150, 260, 261, 263, 264], "containerd": [89, 110, 194, 273, 274], "containerd_v": 273, "containernetwork": 273, "containerport": 201, "contani": 115, "content": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 95, 100, 101, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 151, 154, 155, 156, 160, 161, 162, 164, 167, 169, 172, 173, 174, 175, 176, 178, 179, 180, 181, 184, 186, 187, 188, 189, 190, 191, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 227, 229, 230, 232, 242, 252, 256, 258, 259, 260, 261, 263, 264, 265, 267, 268, 270, 277, 283], "contentu": [65, 67, 70, 72, 73, 74], "context": [3, 5, 35, 45, 50, 51, 65, 67, 70, 72, 73, 74, 86, 97, 99, 100, 115, 119, 120, 121, 148, 160, 161, 162, 164, 167, 176, 183, 199, 225, 232, 238, 253, 254, 260, 261, 263, 264, 267, 282, 284], "context_precis": 96, "context_recal": 96, "context_util": 148, "contextu": [121, 172, 183, 259, 267], "conting": [115, 260, 261, 263, 264], "continu": [51, 52, 53, 190, 237, 238, 241, 254, 266, 267, 282], "contol": 228, "contract": [115, 147, 260, 261, 263, 264], "contrast": [198, 245], "contribut": [25, 88, 130, 160, 177, 185, 192, 194, 237, 240, 241, 244, 245, 246, 251, 255, 268, 275, 281, 282, 283], "contributor": [241, 243, 244, 283], "contritbutng": 238, "control": [2, 34, 51, 52, 107, 110, 118, 143, 190, 196, 197, 198, 199, 226, 227, 229, 245, 246, 253, 267, 270, 273, 274, 276], "conveni": [76, 163, 254, 255, 260, 261, 263, 264], "convent": [5, 92, 100, 199, 238, 244, 251, 254, 259], "convers": [6, 7, 8, 20, 23, 24, 38, 57, 75, 108, 109, 120, 123, 124, 130, 163, 164, 167, 176, 190, 198, 238, 249, 253, 265, 267, 279, 280, 281, 282], "convert": [6, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 75, 102, 115, 130, 135, 183, 190, 191, 199, 232, 249, 267, 282], "convert_token": 232, "cooki": 198, "cookie_secret": 198, "cooper": 117, "coordin": [2, 240, 241, 245, 246, 276], "copi": [110, 119, 120, 123, 124, 164, 167, 254, 255, 270, 274], "copilot": [121, 191, 200], "copyright": [1, 87, 159, 193, 241, 254], "cor": 283, "core": [77, 89, 109, 115, 136, 137, 138, 232, 238, 242, 245, 254, 259, 267, 273, 280, 281, 282, 283], "core_id": 89, "coredn": [273, 274], "cores_per_socket": 91, "cormack": [236, 240], "corner": [238, 282], "cornerston": [115, 263, 264], "corpu": [95, 97, 98, 259], "correct": [11, 12, 17, 18, 19, 95, 98, 100, 111, 112, 113, 197, 198, 229, 254, 267, 273, 282], "correctli": [9, 12, 110, 115, 200, 261, 263, 264, 273], "correl": 98, "correspond": [12, 58, 79, 92, 98, 108, 109, 119, 120, 121, 123, 124, 128, 129, 130, 135, 139, 145, 146, 154, 155, 160, 163, 164, 167, 172, 176, 182, 183, 185, 190, 199, 238, 242, 244, 260, 261, 263, 264, 273, 282], "correspondingli": 89, "cost": [137, 138, 253, 267, 275, 276], "could": [64, 67, 70, 72, 73, 74, 89, 107, 109, 112, 114, 116, 118, 126, 134, 175, 181, 184, 189, 196, 198, 223, 227, 237, 238, 245, 254, 259, 267, 273], "count": [42, 64, 91, 94, 110, 198, 199, 253], "counter": 9, "counteract": 98, "coupl": [125, 245], "cours": 198, "coven": 243, "cover": [95, 223, 260, 261, 263, 264, 267], "coverag": [238, 280, 285], "cp": [12, 41, 91, 97, 226, 270, 273, 274], "cpu": [2, 6, 17, 23, 26, 27, 45, 53, 55, 57, 63, 69, 70, 72, 74, 75, 86, 91, 100, 104, 106, 109, 110, 111, 112, 113, 115, 117, 118, 121, 123, 125, 127, 130, 131, 133, 137, 138, 139, 140, 142, 143, 144, 149, 151, 153, 160, 161, 164, 166, 172, 173, 180, 183, 184, 185, 186, 188, 191, 199, 214, 215, 225, 227, 238, 250, 260, 261, 263, 264, 267, 268, 270, 282, 283, 284], "cpu3": 89, "cpus_allowed_list": 89, "cpuset": 89, "cr": [107, 118, 143, 226, 227, 228, 252, 280, 283], "craft": 250, "crag": [100, 258, 283], "crag_doc": 95, "crag_docs_mus": 95, "crag_ev": 95, "crag_task_3_dev_v4": 95, "crash": 283, "crashlog": 256, "crd": [190, 197, 226, 228, 270], "creat": [2, 3, 8, 22, 29, 45, 48, 60, 80, 88, 89, 91, 92, 93, 95, 101, 107, 110, 112, 113, 115, 117, 118, 121, 125, 126, 133, 134, 139, 140, 142, 143, 149, 150, 161, 163, 164, 165, 167, 168, 175, 178, 180, 181, 184, 186, 188, 189, 192, 197, 198, 199, 200, 223, 225, 226, 227, 228, 230, 232, 236, 240, 241, 244, 249, 250, 253, 254, 255, 256, 259, 260, 261, 263, 264, 266, 267, 270, 276, 280, 282, 283], "create_t": 78, "create_test_db": 78, "created_at": 260, "creation": [2, 111, 112, 113, 114, 116, 121, 123, 124, 131, 132, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 178, 179, 184, 186, 187, 190, 236, 241, 245, 246, 250, 267, 276], "creativ": 241, "creativecommon": 241, "credenti": [92, 197, 198, 259], "credit": [115, 253, 260, 261, 263, 264], "crewai": 284, "cri": [89, 273], "crimin": 34, "criteria": [241, 247, 267], "critic": [89, 147, 196, 230], "cross": [199, 267, 285], "crucial": [65, 67, 70, 72, 73, 74, 147, 259], "crud": [91, 281, 282], "crud_rag": [91, 97], "crud_split": [91, 97], "cse": [173, 174, 175, 228, 234], "csi": 273, "csp": 284, "css": [254, 255], "csv": [93, 110], "ct": [126, 134, 175, 181], "ctao456": 249, "ctld7": 274, "cto": [236, 240], "ctr_img": 270, "ctrl": [77, 255], "cuda": [234, 263, 264], "cue": 160, "cumul": 267, "cup": 100, "curat": 266, "curl": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 199, 202, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 223, 225, 227, 229, 230, 232, 238, 260, 261, 263, 264, 268, 270, 273, 281, 283], "curli": 256, "current": [3, 5, 9, 18, 19, 22, 23, 26, 27, 30, 35, 42, 45, 91, 93, 96, 100, 102, 108, 109, 110, 115, 119, 120, 121, 122, 128, 129, 130, 135, 136, 137, 138, 139, 145, 146, 154, 155, 160, 164, 167, 172, 176, 177, 182, 183, 185, 190, 198, 199, 223, 225, 229, 243, 249, 253, 254, 259, 260, 261, 263, 264, 266, 267, 272, 274, 278, 283], "current_vers": 255, "custom": [2, 9, 11, 17, 18, 20, 23, 24, 50, 51, 52, 53, 79, 89, 91, 106, 107, 108, 109, 117, 118, 119, 125, 127, 133, 139, 142, 143, 144, 147, 151, 153, 164, 166, 167, 180, 185, 188, 190, 191, 194, 196, 198, 199, 200, 226, 227, 230, 246, 249, 250, 252, 253, 255, 259, 260, 261, 263, 264, 265, 266, 267, 270, 274, 275, 284], "custom_tool": 3, "customiz": [20, 23, 24, 30, 245], "customresourcedefinit": 226, "cut": [147, 191, 198, 199], "cwd": 30, "cxzvf": 225, "cycl": [3, 121, 266], "cypherchain": 42, "d": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 79, 81, 85, 86, 88, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 157, 160, 161, 162, 164, 169, 170, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 188, 189, 197, 198, 199, 201, 202, 203, 204, 205, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 227, 229, 230, 232, 254, 255, 260, 261, 263, 264, 268, 270, 273], "d0b028": 281, "d11aeb": 281, "d204a7": 280, "d25d2c": 281, "d2bab99": 283, "d332c2": 280, "d39b315": 282, "d39fee9": 282, "d3b37f3d1faa": [263, 264], "d3eefea": 282, "d3fc939": 282, "d41dd2": 281, "d422929": 283, "d487093": 283, "d55a33d": 283, "d55ded4": 283, "d57b94": 281, "d5b8cdf": 282, "d5dbbf0": 283, "d609071": 283, "d645305": 282, "d68be05": 282, "d6b540a423ac": 260, "d73129c": 283, "d754a84": 282, "d75d8f": 281, "d76751a": 283, "d7a5b7": 281, "d7cdab": 281, "d85ec09": 283, "d8cd3a1": 283, "d8fc410e908b": [11, 17, 18], "d97882e": 283, "d982681": 283, "d99461": 281, "d9a0271": 282, "d9b62a": 280, "da19c5d": 282, "da2689": 280, "da4f091": 282, "daec680": 282, "daemon": [48, 110, 260, 273, 274], "daemonset": [89, 273], "daf2a4f": 283, "dag": [123, 124, 253, 281], "dagwc": 272, "dai": [195, 241, 250, 254, 260], "daisi": 242, "damo": [57, 183, 184, 191], "danger": 37, "darkorang": 254, "dash": 199, "dashboard": [9, 250], "data": [3, 7, 8, 9, 11, 13, 16, 17, 18, 20, 23, 24, 26, 27, 28, 29, 30, 32, 34, 35, 36, 38, 41, 42, 43, 44, 45, 48, 50, 59, 63, 64, 67, 68, 70, 72, 73, 79, 86, 88, 89, 90, 91, 92, 93, 95, 97, 109, 111, 112, 113, 114, 115, 116, 117, 121, 136, 137, 138, 147, 148, 156, 160, 161, 162, 169, 172, 184, 191, 196, 197, 198, 199, 200, 201, 202, 208, 214, 215, 216, 218, 223, 229, 230, 236, 241, 245, 250, 252, 253, 254, 259, 260, 261, 263, 264, 266, 267, 273, 276, 277, 279, 281, 282, 283, 284], "data_gatewai": 245, "data_port": 245, "data_prep": 91, "data_servic": 245, "data_sourc": 80, "data_typ": 253, "data_visu": 90, "databas": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 28, 29, 42, 59, 60, 64, 65, 67, 68, 70, 72, 73, 74, 76, 77, 78, 95, 97, 100, 109, 136, 137, 138, 160, 164, 183, 184, 190, 191, 231, 245, 249, 250, 259, 260, 261, 263, 264, 267], "database_endpoint": 97, "databrick": 267, "datacent": 267, "dataprep": [2, 58, 64, 67, 73, 91, 95, 97, 101, 109, 110, 115, 137, 138, 160, 166, 190, 198, 202, 206, 227, 230, 238, 242, 245, 249, 279, 280, 281, 282, 283], "dataprep_delete_file_endpoint": [164, 260, 261, 263, 264], "dataprep_delete_video_endpoint": [161, 162], "dataprep_gen_caption_service_endpoint": [161, 162], "dataprep_gen_transcript_service_endpoint": [161, 162], "dataprep_get_file_endpoint": [164, 184, 260, 261, 263, 264], "dataprep_get_video_endpoint": [161, 162], "dataprep_get_video_list_endpoint": 184, "dataprep_redi": 280, "dataprep_service_endpoint": [58, 111, 112, 113, 114, 116, 137, 138, 164, 184, 198, 260, 261, 263, 264], "dataprep_service_ip": 58, "dataprep_service_port": 58, "dataprepgatewai": 245, "dataset": [30, 35, 38, 40, 42, 51, 52, 65, 67, 70, 72, 73, 74, 96, 98, 99, 121, 156, 162, 169, 190, 191, 239, 260, 261, 263, 264, 267, 280, 282], "dataset_path": 97, "datastax": [236, 266], "date": [109, 191, 238, 259, 267], "daughter": 99, "david": [242, 255], "daysx": [137, 138], "db": [11, 19, 67, 69, 72, 73, 74, 78, 89, 113, 115, 118, 137, 138, 161, 172, 184, 201, 206, 212, 227, 230, 238, 252, 260, 261, 263, 264, 267, 277, 279, 281, 282], "db2d2bd": 282, "db3b4f": 280, "db8c893": 282, "db_name": [8, 29, 60, 164], "dba908a": 283, "dc90a5": 281, "dc94026": 283, "dcf68a0": 282, "dco": 238, "dd": [198, 244, 251], "dd657bbf6": 89, "dd939c": 281, "ddfd698ff": 273, "de27e6b": 282, "dearmor": 273, "deb": 273, "debian": 273, "debug": [3, 35, 77, 89, 121, 199, 225, 229, 267, 273, 282], "debugg": 267, "decad": 267, "deccbb89b507": [161, 162], "deci": 267, "decid": [5, 115, 248, 267], "decis": [90, 147, 237, 241, 267], "decod": [248, 259], "decompos": 100, "decompress": 95, "decor": [2, 9], "decreas": [91, 253, 260, 261, 263, 264], "dedic": [22, 89, 172, 198, 245], "deem": 237, "deep": [17, 26, 27, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 58, 61, 62, 63, 69, 70, 72, 74, 95, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 139, 140, 141, 148, 149, 150, 160, 164, 172, 173, 174, 178, 179, 209, 211, 214, 215, 216, 218, 260, 261, 263, 264], "deepbrain": 249, "deeper": [11, 13, 16, 17, 89, 254], "deepseek": 121, "def": [2, 3, 9, 78, 126, 164, 245], "def19b4": 283, "default": [9, 11, 13, 16, 17, 18, 19, 34, 36, 43, 44, 48, 51, 52, 53, 58, 63, 64, 74, 79, 80, 89, 90, 91, 92, 93, 95, 97, 98, 102, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 133, 134, 139, 140, 141, 149, 150, 151, 160, 161, 162, 164, 165, 166, 168, 172, 178, 179, 183, 184, 185, 186, 187, 191, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 231, 232, 253, 254, 255, 256, 259, 260, 261, 263, 264, 273, 274, 280, 281, 282, 283], "default_model": 22, "defaultrevis": 232, "defeult": 90, "defici": 267, "defin": [3, 32, 38, 48, 88, 89, 90, 91, 94, 100, 107, 109, 118, 143, 190, 198, 226, 227, 228, 229, 234, 238, 240, 241, 242, 245, 247, 253, 254, 255, 256, 260, 261, 263, 264, 266, 267, 270, 280, 283, 284], "define_a_password": 42, "define_default_rout": 245, "definit": [2, 30, 74, 91, 194, 238, 245, 246, 247, 248, 253, 254, 267, 276, 282, 283], "deg": 254, "degrad": 267, "degre": [64, 254], "delawar": 241, "deleg": 191, "delet": [7, 8, 11, 12, 14, 17, 28, 29, 59, 60, 110, 112, 114, 116, 120, 161, 162, 164, 184, 197, 199, 228, 238, 250, 254, 255, 273, 281, 282], "delete_fil": [112, 114, 116, 120, 164, 260, 261, 263, 264], "delete_video": [161, 162], "delimit": 254, "deliv": [2, 45, 51, 52, 53, 163, 172, 191, 231, 245, 246, 266, 276], "deliveri": 267, "delta": 253, "demand": [58, 86, 112, 113, 140, 149, 161, 178, 186, 245, 249], "demo": [35, 252, 267, 274, 280, 284], "democrat": [34, 250], "demograph": [31, 32], "demonstr": [100, 102, 103, 130, 191, 237, 245, 246, 250, 259, 267, 270, 272], "deni": [109, 121, 130, 139, 172, 198, 232], "dens": [61, 63, 147], "dep": 282, "depend": [3, 6, 11, 21, 40, 45, 51, 52, 53, 55, 57, 62, 75, 88, 91, 92, 96, 98, 103, 104, 105, 108, 112, 114, 115, 119, 120, 128, 129, 135, 145, 146, 154, 155, 161, 167, 176, 182, 184, 198, 199, 200, 201, 203, 204, 221, 229, 238, 241, 245, 249, 255, 259, 260, 261, 262, 263, 264, 274, 281, 282, 283], "dependabot": 238, "depends_on": [112, 114, 116, 123, 124, 140, 141, 149, 150, 260, 261, 263, 264], "depict": 267, "deploi": [2, 34, 43, 44, 48, 50, 53, 58, 77, 91, 97, 112, 114, 116, 122, 140, 141, 149, 150, 163, 164, 184, 190, 195, 196, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 228, 229, 230, 231, 232, 238, 245, 246, 248, 250, 259, 265, 267, 270, 273, 275, 276, 279, 280, 281, 282], "deploy": [2, 32, 38, 42, 53, 58, 89, 91, 93, 104, 105, 107, 109, 110, 111, 112, 113, 114, 116, 118, 121, 123, 124, 126, 127, 131, 132, 134, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 161, 162, 164, 166, 170, 171, 173, 174, 175, 178, 179, 181, 183, 184, 186, 187, 189, 194, 196, 198, 199, 200, 201, 214, 215, 216, 227, 230, 234, 238, 241, 245, 246, 249, 265, 267, 270, 273, 274, 275, 276, 277, 279, 280, 281, 282, 283], "deploy_gmc": 282, "deploy_method": 198, "deployemnt": 238, "deployment_typ": [90, 110], "deployt": [205, 206, 207, 208, 209, 211, 217, 219], "deprec": [241, 253, 254, 282], "depth": 254, "deriv": [98, 115, 160, 232, 260, 261, 263, 264, 267], "derogatori": 237, "descend": 64, "describ": [2, 12, 73, 89, 91, 109, 112, 114, 121, 139, 160, 161, 195, 238, 241, 254, 267, 276], "descript": [2, 3, 31, 42, 51, 110, 121, 163, 190, 191, 195, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 238, 244, 253, 254, 267], "descriptor": [88, 90], "design": [2, 3, 5, 7, 20, 23, 24, 25, 28, 31, 34, 42, 45, 54, 59, 65, 67, 70, 72, 73, 74, 86, 88, 91, 94, 121, 122, 163, 168, 190, 191, 194, 200, 231, 232, 238, 241, 244, 259, 265, 267, 276], "desir": [45, 107, 118, 126, 127, 134, 135, 144, 153, 166, 175, 181, 189, 227, 230, 272], "desktop": [112, 113, 123, 131, 140, 149, 161, 178, 186, 273], "destin": 232, "destini": 266, "detail": [2, 7, 9, 10, 20, 28, 59, 65, 76, 82, 88, 90, 91, 92, 93, 95, 97, 100, 103, 107, 110, 111, 112, 113, 114, 118, 121, 123, 124, 131, 140, 143, 149, 156, 160, 161, 164, 166, 168, 169, 172, 178, 186, 190, 194, 198, 200, 203, 204, 221, 226, 227, 230, 234, 238, 240, 241, 244, 253, 254, 255, 256, 267, 268, 270, 273, 274, 276], "detaild": 222, "detect": [31, 34, 121, 190, 229, 232, 238, 248, 253, 259, 266, 267, 277, 280, 281, 282, 283], "determin": [34, 45, 50, 112, 113, 114, 115, 116, 164, 184, 198, 232, 237, 241, 253, 260, 261, 263, 264, 266, 267], "determinist": 253, "dev": [11, 13, 16, 17, 18, 19, 108, 111, 112, 113, 114, 116, 119, 120, 128, 129, 135, 137, 138, 145, 146, 154, 155, 164, 167, 176, 182, 198, 236, 238, 243, 260, 261, 263, 264, 266, 267, 283], "devault": 253, "develop": [2, 3, 77, 94, 95, 109, 121, 130, 135, 168, 191, 196, 200, 236, 238, 240, 241, 243, 244, 245, 246, 250, 252, 253, 254, 255, 259, 261, 265, 266, 267, 268, 276, 283], "developercertif": 241, "devic": [6, 54, 55, 75, 88, 89, 91, 115, 145, 146, 164, 167, 194, 201, 204, 221, 222, 230, 234, 238, 283], "device_0": 91, "devop": 250, "df0c11": 280, "df58fe5": 283, "df5f6f3": 282, "dfaf479": 282, "dfc2c1e": 282, "dfdd08": 280, "diagnosi": 267, "diagram": [3, 7, 100, 123, 124, 238, 267], "dialog": [119, 120, 164, 167, 176], "dialogu": [57, 119, 120, 164, 167, 176], "dice": [260, 261, 263, 264], "dicscript": 282, "didn": 198, "differ": [3, 12, 20, 23, 24, 74, 86, 90, 92, 98, 100, 109, 110, 112, 113, 114, 116, 123, 124, 125, 127, 137, 138, 144, 153, 161, 162, 164, 166, 168, 184, 185, 186, 187, 194, 196, 198, 199, 200, 226, 227, 229, 232, 237, 238, 250, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 274, 281, 283], "differenti": 267, "difficulti": 248, "diffus": [40, 284], "digit": 249, "digraph": 256, "dimens": [82, 112, 113, 114, 115, 116, 164, 184, 253, 260, 261, 263, 264, 267], "dimension": 267, "ding": [193, 236, 240, 242, 267], "dir": [78, 283], "direct": [37, 88, 110, 123, 124, 240, 241, 253, 254, 255, 267, 274], "directli": [42, 46, 47, 48, 95, 112, 114, 123, 124, 172, 178, 179, 191, 196, 200, 244, 250, 251, 254, 255, 267, 272], "director": 240, "directori": [80, 88, 90, 91, 95, 100, 117, 125, 133, 142, 180, 188, 194, 200, 201, 203, 204, 208, 214, 215, 216, 218, 221, 225, 228, 234, 254, 259, 268, 282, 283], "dirnam": 270, "disabl": [44, 89, 225, 237, 273, 281, 283], "disable_connect": 225, "disablewatch": 225, "disclaim": [35, 239, 267], "discord": [25, 33, 36, 37, 39, 49, 56], "discount": 267, "discourag": 254, "discoveri": [222, 225, 273], "discrep": 98, "discriminatori": 241, "discuss": [31, 98, 240, 241, 243, 246, 267], "disk": [78, 184, 267, 270], "disparag": 237, "dispatch": [5, 100, 283], "displai": [92, 110, 145, 146, 154, 155, 164, 167, 249, 254, 256, 259, 276, 283], "disrespect": [31, 38], "disrupt": 245, "dist": 115, "distanc": 74, "distance_strategi": 18, "distance_threshold": [66, 67, 68, 72, 74], "distilledbert": [32, 38], "distribut": [78, 93, 97, 234, 245, 267], "diverg": 267, "divers": [58, 86, 163, 172, 191, 237, 241, 267], "divid": [9, 256], "dkr": 272, "dl": [92, 249, 259, 276], "dn": 274, "do": [29, 34, 35, 57, 64, 89, 93, 102, 110, 111, 112, 113, 114, 123, 124, 140, 141, 149, 150, 161, 162, 164, 184, 186, 187, 192, 197, 198, 199, 200, 208, 238, 248, 249, 253, 254, 255, 259, 260, 261, 263, 264, 267], "do_sampl": [41, 44, 45, 50, 104, 105, 107, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 164, 173, 174, 178, 179, 197, 198, 202, 216, 227, 230, 261, 263, 264, 270], "doc": [3, 5, 9, 11, 49, 64, 77, 78, 80, 82, 95, 103, 137, 138, 184, 192, 197, 198, 199, 225, 229, 238, 241, 250, 253, 254, 255, 265, 266, 272, 273, 280, 281, 282, 283], "doc_base_url": [119, 141, 146], "doc_guidelin": 254, "doc_tag": 255, "docarrai": [23, 161, 162, 253, 283], "docgrad": 100, "docindexretriev": [137, 138, 242, 282, 283], "docker": [9, 77, 79, 80, 81, 83, 84, 85, 88, 90, 95, 97, 100, 103, 107, 118, 126, 134, 136, 143, 160, 163, 168, 172, 175, 181, 183, 185, 189, 194, 195, 197, 227, 231, 232, 236, 238, 240, 247, 249, 265, 268, 270, 272, 273, 274, 277, 279, 280, 281, 282, 283], "docker_build_imag": 238, "docker_compos": [57, 58, 100, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 164, 172, 173, 174, 184, 185, 186, 187, 238, 247, 260, 261, 263, 264, 268, 280, 282], "docker_compose_bridgetower_embedding_endpoint": 23, "docker_compose_embed": [24, 26, 27], "docker_compose_guardrail": 34, "docker_compose_int": 41, "docker_compose_llm": [43, 44, 45, 46, 47, 50], "docker_compose_multimodal_embed": 23, "docker_compose_rerank": [63, 64], "docker_compose_retriev": [67, 69, 70, 72, 73, 74], "docker_image_build": 238, "docker_image_list": 282, "docker_volume_directori": 79, "dockercompos": 250, "dockerfil": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 86, 88, 100, 103, 104, 105, 111, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 238, 239, 247, 260, 261, 263, 264, 281, 282, 283], "dockerfile_hpu": 249, "dockerfli": 283, "dockerhub": [268, 281, 282], "docretriev": [191, 265], "docs_blob": 254, "docs_path": 97, "docs_raw": 254, "docs_titl": 255, "docsum": [44, 140, 141, 166, 168, 190, 194, 195, 200, 242, 252, 268, 279, 280, 281, 282, 283, 284], "docsum_gaudi": 143, "docsum_xeon": 143, "docsumgaudi": 281, "document": [0, 2, 5, 12, 19, 40, 45, 53, 61, 63, 65, 67, 70, 72, 73, 74, 78, 80, 86, 89, 91, 94, 97, 101, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 131, 132, 134, 136, 137, 138, 143, 147, 149, 150, 157, 158, 161, 162, 165, 166, 168, 170, 171, 172, 173, 174, 175, 178, 179, 181, 184, 186, 187, 189, 190, 191, 195, 196, 200, 202, 227, 234, 241, 242, 243, 244, 245, 249, 252, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 270, 272, 274, 276, 277, 279, 280, 282, 283, 284], "document_load": 78, "documentgrad": 5, "docutil": [254, 255], "docx": 283, "doe": [12, 36, 89, 115, 126, 134, 175, 181, 189, 198, 199, 225, 229, 260, 261, 263, 264, 282], "doesn": [228, 238, 254, 255], "doesnt": 254, "dog": [30, 38, 185], "dolpher": 242, "domain": [94, 95, 109, 241, 249, 250, 259, 267], "domino": [236, 266], "don": [112, 113, 123, 131, 140, 149, 161, 178, 186, 200, 201, 202, 203, 228, 254, 266, 270, 273, 274], "done": [3, 30, 57, 64, 89, 107, 115, 118, 126, 134, 143, 175, 181, 189, 198, 199, 227, 243, 253, 255, 260, 261, 263, 264, 267, 274], "dot": 256, "doubl": [198, 254], "down": [2, 69, 94, 115, 184, 199, 238, 245, 246, 249, 254, 260, 261, 263, 264, 267, 273, 276], "download": [19, 30, 48, 57, 92, 93, 95, 99, 109, 111, 112, 113, 114, 116, 127, 144, 148, 153, 156, 161, 162, 166, 169, 178, 179, 184, 198, 201, 203, 208, 214, 215, 216, 218, 225, 239, 259, 267, 268, 270, 273, 280], "downstream": [64, 160, 282], "downtim": 245, "dpanic": 229, "draft": 276, "drag": 250, "drain": 273, "draw": [243, 257], "drive": [261, 266], "driven": [147, 249, 250], "driver": [109, 121, 130, 139, 160, 172, 185, 222, 234, 261, 273, 281], "drop": [11, 250], "dtype": [115, 117], "du": 242, "duckduckgo": [100, 191], "due": [96, 98, 172, 218, 234, 248, 249, 254], "dump": [3, 11, 17, 18, 35, 281], "duplic": [229, 281, 283], "durat": [57, 64, 94, 184], "dure": [30, 51, 52, 64, 88, 115, 160, 194, 208, 231, 234, 237, 238, 250, 254, 267, 274], "dynam": [30, 95, 107, 109, 118, 136, 137, 138, 143, 160, 191, 196, 226, 227, 230, 238, 246, 259, 270, 281, 284], "e": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 21, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 81, 86, 88, 90, 97, 98, 103, 111, 112, 114, 115, 122, 157, 158, 161, 162, 170, 171, 185, 194, 198, 199, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 225, 234, 237, 238, 239, 249, 250, 254, 255, 260, 261, 263, 264, 266, 267, 272, 273, 274, 283], "e0b3b57": 283, "e0bc5f2": 283, "e102291": 283, "e10dd14497a8": [263, 264], "e12baca": 282, "e156101": 282, "e1b8ce0": 283, "e1cd50": 281, "e1dad1": 280, "e1eb0e44f56059fc01aa0334b1dac313": [115, 260, 261, 263, 264], "e1fc81b1d542": 260, "e2": [88, 90, 238, 260, 261, 263, 264, 267, 280, 281, 282, 283, 284, 285], "e20acc": 280, "e22d413": 282, "e23745": 280, "e25a1f": 281, "e29865": 283, "e2a74f7": 283, "e32a51": 280, "e38041": 280, "e38ed6d": 283, "e3f29c3": 282, "e4201f4": [112, 118, 143, 186, 227, 263, 264, 283], "e48532": 283, "e4d3ff": 281, "e5": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 284], "e5affb9": 283, "e5ec38c": 283, "e6b4fff": 282, "e6f5d13": 283, "e71aba0": 282, "e80e56": 280, "e81e0e5": 282, "e85033": 280, "e878dc": 281, "e8c85e588a235a4bc4747a23b3a71d8f": 115, "e8ebd9": 280, "e93146b": 282, "e948a7": 280, "e983c32": 282, "ea3986c3cf82": [263, 264], "each": [2, 7, 9, 12, 35, 57, 64, 74, 89, 90, 91, 95, 97, 98, 109, 160, 161, 162, 172, 197, 199, 200, 202, 238, 241, 243, 244, 245, 246, 248, 251, 253, 254, 259, 260, 261, 263, 264, 267, 273, 276, 280, 283], "eager": [53, 88, 261], "ealso": 254, "earli": [5, 115, 248, 259, 260, 261, 263, 264, 266, 267], "earlier": [119, 164, 167], "earn": 241, "eas": [20, 23, 24, 168, 222, 238, 250, 267], "easi": [45, 51, 52, 53, 110, 136, 168, 190, 200, 246, 250, 254, 255, 265, 267], "easier": [2, 119, 120, 164, 167, 176, 245, 246, 254, 276], "easiest": 168, "easili": [48, 80, 88, 109, 168, 184, 200, 241, 246, 250, 254, 259, 267], "east": 273, "easydata": 250, "eb51018": 282, "eb5cc8a": 282, "ebc165a": 282, "ebe6b47": 283, "ebee50c": 282, "ec2": [112, 113, 123, 131, 140, 149, 161, 178, 186], "ec32bf": 281, "ec3b2": 281, "ec4143": 282, "ecf333": 281, "echo": [89, 110, 198, 200, 201, 202, 203, 204, 221, 273], "econom": 237, "ecosystem": [130, 177, 185, 236, 241, 266, 267, 276, 283], "ecr": 272, "ed44b44": 283, "ed48371": 282, "ed776ac": 282, "ed99d47": 282, "edcc50f": 283, "edcd1e8": 282, "edf0d1": 281, "edg": [147, 191, 196, 267], "edit": [9, 89, 93, 102, 103, 110, 118, 227, 237, 255, 256, 259, 260, 274], "editor": [123, 124], "educ": [185, 237, 249], "ee0dcb": 281, "ee5b0f6": 282, "ee907d6": 283, "eec845": 280, "ef47f9": 281, "ef90fbb": 283, "ef97c2": 281, "effect": [89, 110, 137, 138, 196, 241, 250, 253, 255, 267, 268, 275, 276], "effici": [2, 7, 20, 23, 24, 25, 28, 42, 59, 65, 67, 70, 72, 73, 74, 86, 91, 109, 121, 136, 137, 138, 168, 172, 191, 196, 199, 225, 241, 245, 250, 259, 265, 267, 275, 276, 283], "effort": [163, 198, 200, 253, 267], "effortlessli": [109, 121, 130, 139, 160, 163, 172, 177, 183, 185, 250], "efi": 256, "egress": 248, "egressgatewai": 232, "eight": 95, "either": [9, 10, 12, 17, 18, 34, 36, 45, 61, 63, 102, 112, 114, 121, 130, 139, 147, 160, 172, 177, 185, 196, 198, 244, 249, 251, 253, 254, 255, 260, 261, 263, 264, 267, 273, 274], "ek": [252, 271], "eksctl": 272, "elabor": [238, 244, 267], "elast": 272, "elasticsearch": 267, "elect": 241, "electron": 241, "element": [121, 160, 249, 254, 268], "eleutherai": 88, "elig": 230, "elimin": [232, 241, 254], "els": [115, 198, 267], "elsewher": [107, 118, 143, 227, 267], "email": [35, 198, 237, 238, 255], "emb": [17, 22, 25, 26, 27, 35, 69, 70, 72, 74, 109, 111, 112, 113, 114, 115, 116, 160, 164, 172, 173, 174, 202, 214, 253, 260, 261, 263, 264], "embad": 109, "embed": [2, 9, 10, 12, 13, 14, 15, 16, 18, 19, 33, 35, 36, 37, 39, 42, 43, 44, 49, 56, 61, 63, 65, 69, 73, 78, 80, 82, 86, 89, 90, 91, 97, 99, 107, 109, 110, 118, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 160, 168, 183, 190, 191, 201, 212, 214, 215, 219, 221, 223, 227, 229, 230, 238, 242, 245, 248, 249, 252, 259, 266, 267, 268, 279, 280, 281, 282, 283, 284], "embed_dimens": 71, "embed_model": [61, 80], "embed_queri": 2, "embed_vector": 2, "embedd": [101, 107, 118, 143, 227, 259], "embedder_port": [23, 161, 162], "embedding123": 229, "embedding_endpoint": 97, "embedding_model_id": [12, 17, 97, 110, 111, 112, 113, 114, 115, 116, 137, 138, 161, 162, 164, 173, 174, 214, 260, 261, 263, 264], "embedding_replicas_granular": 91, "embedding_replicas_max": 91, "embedding_replicas_min": 91, "embedding_service_host_ip": [2, 111, 113, 137, 138, 164, 173, 174, 184, 260, 261, 263, 264], "embedding_service_port": [2, 173, 174], "embedding_t": [115, 260, 261, 263, 264], "embedding_tei": [26, 27, 238], "embedding_tgi_gaudi": 2, "embeddings_langchain": 282, "embeddoc": 2, "ember": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221], "emebd": 97, "emerg": [249, 267], "empathi": 237, "emphasi": 254, "emploi": [23, 61, 63, 161, 162, 172, 241], "employ": 241, "empow": [2, 55, 56, 121, 250], "empti": [29, 89, 161, 162, 195, 214, 215, 216, 218, 253, 281, 282], "emptydir": 273, "en": [2, 17, 26, 27, 30, 61, 69, 70, 72, 74, 80, 86, 91, 99, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 164, 173, 174, 214, 254, 260, 261, 263, 264], "enabl": [2, 7, 13, 25, 28, 43, 44, 45, 50, 51, 52, 59, 74, 77, 89, 90, 109, 110, 112, 113, 114, 121, 123, 124, 135, 136, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 163, 164, 168, 172, 191, 197, 200, 201, 205, 206, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 219, 221, 232, 236, 241, 245, 246, 250, 252, 254, 259, 260, 261, 263, 264, 266, 267, 273, 276, 279, 280, 281, 282, 283, 284], "enable_hpu_graph": [114, 115], "encapsul": [2, 34, 190, 245, 246, 273, 276], "encod": [23, 35, 160, 161, 162, 248, 253, 267, 280], "encoding_format": 253, "encompass": [121, 266], "encount": [201, 229, 230, 267], "encourag": [238, 267], "encrypt": 267, "end": [2, 4, 5, 94, 96, 97, 110, 120, 176, 185, 201, 225, 232, 236, 238, 240, 241, 245, 246, 249, 250, 253, 254, 259, 260, 261, 263, 264, 273, 276, 279, 281, 282, 283], "endoftext": 122, "endpoint": [2, 3, 7, 8, 9, 11, 23, 26, 27, 29, 38, 42, 45, 48, 58, 60, 86, 88, 90, 92, 95, 100, 101, 107, 109, 118, 123, 124, 127, 136, 143, 144, 148, 153, 160, 165, 166, 184, 197, 198, 199, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 227, 229, 230, 245, 253, 259, 260, 261, 263, 264, 277, 281, 282, 283, 284], "enforc": [34, 53, 261, 267], "enforce_eag": 53, "engag": [3, 163, 241, 249, 266], "engin": [74, 86, 121, 172, 191, 194, 236, 238, 240, 244, 250, 266, 267, 273, 276, 283], "english": [98, 178, 179, 180, 181, 281], "enhanc": [31, 42, 61, 63, 65, 67, 70, 72, 73, 74, 97, 121, 123, 124, 172, 185, 190, 191, 194, 196, 231, 238, 245, 248, 249, 250, 267, 281, 282, 283, 285], "enhenc": 282, "enlarg": 281, "enorm": 266, "enough": [89, 184, 226], "ensur": [9, 13, 20, 23, 24, 31, 33, 34, 36, 58, 68, 88, 89, 90, 91, 109, 110, 121, 122, 127, 136, 137, 138, 144, 153, 163, 166, 168, 172, 191, 196, 198, 226, 238, 245, 250, 255, 259, 265, 266, 267, 268, 270], "ent": 264, "enter": [123, 124], "enterpris": [2, 3, 137, 138, 163, 168, 191, 194, 196, 198, 236, 238, 245, 246, 249, 252, 259, 275, 276, 277], "enterprisepii": 35, "entertain": 249, "entir": [2, 11, 182, 241, 245, 246, 260, 261, 263, 264, 266, 267], "entiti": [13, 35, 42, 95, 254], "entitl": 198, "entri": [1, 2, 87, 123, 124, 159, 168, 190, 193, 197, 245, 246, 253, 260, 264, 265, 267, 276], "entrypoint": [70, 81, 115, 238, 260, 261, 263, 264, 281, 282], "env": [3, 30, 42, 69, 80, 86, 93, 100, 101, 108, 109, 118, 119, 120, 128, 129, 135, 145, 146, 154, 155, 160, 167, 176, 182, 185, 198, 227, 230, 238, 246, 280, 281, 282, 283], "environ": [3, 9, 10, 30, 32, 35, 38, 48, 54, 57, 64, 69, 80, 91, 95, 100, 108, 110, 119, 120, 128, 129, 135, 143, 145, 146, 151, 154, 155, 168, 176, 182, 192, 194, 195, 198, 200, 218, 223, 225, 232, 234, 237, 246, 248, 250, 255, 259, 260, 261, 262, 263, 264, 267, 270, 274, 283], "envoi": [231, 232, 248], "envoyfilt": 232, "envsubst": [110, 198], "eo": 122, "eof": [197, 200, 273], "eot_id": 3, "ep": 223, "epistemolog": [31, 32], "epoch": 223, "equal": [89, 112, 113, 114, 115, 116, 164, 184, 198, 254, 260, 261, 263, 264], "equival": [98, 177, 190, 191], "era": 267, "erod": 32, "erron": 283, "error": [3, 11, 12, 17, 18, 32, 35, 38, 90, 94, 103, 109, 115, 121, 125, 130, 139, 172, 186, 187, 197, 198, 225, 229, 253, 255, 261, 263, 264, 267, 281, 282, 283], "escal": 267, "escap": 256, "especi": [39, 42, 98, 199], "essenc": [20, 23, 24], "essenti": [58, 110, 136, 137, 138, 172, 190, 194, 198, 223, 267], "establish": [28, 59, 110, 240, 241, 266, 267], "esteem": 241, "estim": 98, "et": 98, "etc": [5, 32, 38, 42, 45, 48, 51, 52, 90, 91, 100, 102, 110, 139, 168, 194, 198, 199, 200, 222, 225, 226, 238, 249, 250, 256, 259, 260, 261, 266, 267, 270, 273, 274, 279, 280, 282], "etcd": [273, 274], "ethic": 241, "ethnic": [237, 267], "eu": 267, "euclidean": 74, "eval": [88, 93, 95, 97, 110, 122, 242, 254, 267, 277, 281, 283, 284], "eval_crud": 97, "eval_multihop": 97, "evalu": [3, 87, 91, 95, 98, 198, 232, 242, 246, 265, 266, 276, 279, 280, 282, 283, 284], "evaluation_result": 122, "evangel": 266, "even": [20, 23, 24, 59, 89, 182, 239, 248, 254, 259, 267, 274], "event": [115, 195, 237, 240, 241, 253, 260, 261, 263, 264, 280, 282], "ever": 228, "everi": [9, 12, 30, 89, 110, 226, 230, 267], "everyon": [2, 168, 237, 281], "everyth": 91, "everywher": 282, "evid": 97, "eviorn": 34, "evolut": 266, "evolv": [2, 245, 246, 266, 267, 276], "ex": 282, "exact": [253, 270], "exactli": [92, 259], "examep": 228, "exampl": [2, 3, 9, 12, 23, 30, 32, 34, 35, 38, 42, 45, 51, 52, 53, 54, 57, 58, 67, 69, 70, 72, 73, 74, 78, 80, 88, 89, 90, 91, 92, 95, 97, 99, 100, 101, 102, 103, 109, 112, 113, 114, 116, 118, 121, 122, 123, 124, 126, 130, 131, 132, 134, 139, 141, 143, 147, 159, 160, 161, 162, 164, 165, 166, 169, 172, 175, 177, 178, 179, 181, 184, 185, 186, 189, 193, 194, 195, 197, 198, 199, 214, 215, 216, 218, 226, 227, 230, 237, 240, 241, 244, 246, 251, 252, 253, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 273, 274, 276, 277, 279, 280, 281, 282, 283, 284], "example_data": 78, "exampleservic": 2, "exce": [94, 253, 267], "excel": [172, 267], "except": [3, 11, 12, 17, 18, 32, 35, 38, 50, 112, 114, 121, 122, 123, 124, 125, 203, 241, 254, 267], "exception": 267, "exchang": [119, 164, 167, 267], "excit": [2, 35, 168], "exclud": [225, 241, 273, 274, 283], "exclus": [253, 267], "exec": [89, 107, 110, 118, 126, 134, 143, 175, 181, 189, 198, 200, 226, 227, 228, 230, 270, 273], "execut": [3, 37, 45, 53, 89, 90, 107, 108, 111, 112, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 128, 129, 131, 132, 135, 140, 141, 143, 145, 146, 149, 150, 154, 155, 161, 162, 164, 167, 172, 176, 178, 179, 182, 184, 186, 187, 191, 192, 195, 227, 239, 240, 241, 246, 253, 267, 274, 277], "executor": [4, 229], "exempt": 241, "exhaust": 253, "exhibit": 185, "exist": [7, 12, 20, 23, 24, 80, 92, 115, 117, 125, 126, 133, 134, 142, 175, 180, 181, 188, 189, 198, 199, 201, 203, 225, 229, 238, 241, 244, 245, 249, 250, 253, 255, 267, 268, 274], "exit": [90, 93, 94, 115, 282], "exm_embed": 69, "expand": [94, 121, 130, 160, 177, 185, 267, 281, 283], "expans": 266, "expect": [3, 69, 115, 137, 138, 190, 238, 241, 260, 261, 263, 264, 267], "expedit": [34, 121, 255], "expens": [11, 13, 16, 17, 95, 115, 260, 261, 263, 264], "experi": [2, 51, 52, 112, 113, 114, 123, 124, 163, 185, 198, 237, 245, 246, 249, 254, 255, 260, 261, 263, 264, 267, 276, 283], "experiment": [91, 250, 267, 281, 282, 283], "expert": 100, "expir": [11, 198], "expirt": 197, "explain": [137, 138, 192, 283], "explan": [237, 254], "explicit": 237, "exploit": 267, "explor": 250, "expor": 261, "export": [3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 79, 80, 81, 86, 92, 94, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 148, 149, 150, 151, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 189, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 227, 228, 230, 232, 234, 238, 250, 252, 259, 260, 261, 263, 264, 268, 270, 273, 283], "expos": [8, 9, 29, 32, 58, 60, 92, 95, 100, 117, 125, 133, 142, 165, 180, 188, 190, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 225, 245, 253, 259, 281, 283], "exposur": 267, "express": [35, 185, 237], "extend": [30, 196, 245, 254, 266, 267], "extens": [12, 30, 35, 48, 231, 232, 239, 245, 246, 254, 255, 256], "extern": [97, 100, 104, 105, 107, 109, 111, 113, 118, 123, 124, 133, 136, 137, 138, 140, 141, 143, 149, 150, 161, 162, 164, 173, 174, 184, 186, 187, 191, 198, 201, 203, 204, 221, 226, 227, 230, 237, 238, 254, 259, 260, 261, 263, 264, 267, 270, 273, 281, 282], "external_public_ip": [109, 110, 111, 112, 113, 114, 116, 121, 123, 130, 131, 132, 139, 160, 161, 162, 164, 172, 178, 179, 184, 185, 186, 268], "externalservic": 229, "externaltrafficpolici": 197, "extra": [30, 136, 227, 248, 254, 255, 267, 274, 281], "extract": [11, 13, 16, 17, 22, 43, 44, 64, 93, 95, 121, 139, 140, 141, 142, 143, 147, 148, 149, 150, 151, 160, 164, 172, 221, 259, 260, 261, 263, 264, 267, 280], "extrem": 89, "f": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 78, 80, 86, 88, 91, 100, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 156, 157, 158, 160, 161, 162, 164, 166, 169, 170, 171, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 198, 199, 200, 201, 202, 203, 206, 223, 225, 226, 227, 228, 230, 232, 242, 260, 261, 263, 264, 270, 273], "f04f061": 283, "f080f0": 256, "f08d411": 282, "f1": [198, 256], "f164f0": 281, "f1f866f": 283, "f2": [199, 256], "f23694": 281, "f2497c5": 282, "f2995a": 281, "f2a943": 280, "f3": 198, "f36629a": 282, "f37ce2": 280, "f3a8935": 282, "f3ffcd5": 282, "f416f84": 283, "f45e4c6": 282, "f45f50": 281, "f46f1f3": 282, "f4b029": 281, "f4b4ac": 281, "f4d123c": 283, "f4f3ea": 281, "f4f4da2": 283, "f510b69": 283, "f5a548": 281, "f5c7fa": 281, "f5dd58487": 89, "f5f1e32": 283, "f6354b": 281, "f6ae4fa": 283, "f6dd87": 281, "f73267": 281, "f7443f": 280, "f76685": 280, "f78aa9": 282, "f7a08f9867f9": [115, 260, 261, 263, 264], "f810f3b4d329": 115, "f84d91a": 283, "f892k": 89, "f8a295": 281, "f8d45e5": 282, "f8f8854": 283, "f9204f0": 283, "f9312b": 281, "f96b0e": 281, "f990f79": 283, "fa12083": 283, "fa80772de92c": 261, "fa8ef35": 282, "fa9788d": 283, "faa976b": 282, "fab1fbd": 282, "face": [51, 52, 98, 121, 147, 172, 208, 209, 214, 215, 216, 218, 236, 238, 249, 261, 267, 283], "facebook": 218, "facetoken": [226, 228, 234], "facil": [226, 250], "facilit": [2, 20, 23, 24, 28, 44, 59, 139, 147, 165, 190, 191, 194, 245, 246, 250, 259, 267, 276], "fact": [95, 160, 261], "factor": [245, 267], "factual": [25, 36, 37, 39, 49, 56, 109, 136, 137, 138, 191, 248, 259, 267, 277], "fail": [94, 109, 112, 114, 115, 116, 125, 200, 225, 234, 253, 255, 261, 263, 264, 268, 273, 274, 280, 281, 282, 283], "failur": [94, 115, 267, 282], "faint": 255, "fair": [29, 115, 237, 260, 261, 263, 264], "fairli": 237, "faiss": 267, "faissflat": [18, 74], "faissivfflat": 74, "faith": [96, 97, 148, 267], "fake": [22, 36, 273, 274, 281], "falcon": [43, 44, 50, 267], "fall": [121, 130, 172], "fals": [3, 35, 36, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 57, 89, 90, 98, 104, 105, 107, 112, 114, 122, 184, 195, 199, 200, 201, 202, 214, 215, 216, 225, 229, 232, 260, 273, 274, 281], "familar": 254, "famili": 102, "familiar": 268, "faq": [43, 154, 190, 191, 237, 265, 267, 281, 282], "faq_endpoint": 148, "faqgen": [88, 90, 149, 150, 166, 168, 190, 195, 238, 242, 277, 281, 282, 283, 284], "far": 253, "fashion": 156, "fast": [11, 13, 16, 17, 51, 52, 53, 65, 67, 70, 72, 73, 74, 267], "fastapi": 9, "faster": [23, 26, 27, 74, 89, 136, 267, 283], "fastrag": [267, 281], "fault": [2, 245, 246], "favor": 282, "fb0ea3d": 282, "fb4b8d2": 283, "fbaa024": 283, "fbaa6a": 281, "fbb81b6": 282, "fbdb1d": 281, "fe3d22": 281, "fe5f39": 280, "fe8ef3": 282, "feasibl": 250, "featur": [20, 22, 23, 24, 32, 51, 52, 53, 115, 168, 178, 179, 183, 191, 194, 195, 196, 198, 222, 225, 227, 232, 236, 244, 247, 249, 250, 253, 254, 259, 260, 261, 263, 264, 265, 275, 276, 281, 282, 283], "fecf4ac": 282, "fedramp": 267, "fee": 267, "feed": 160, "feedback": [237, 238, 267, 277, 282, 283, 284], "feedback_data": 29, "feedback_id": 29, "feedback_manag": [29, 238, 283], "feedbackmanag": 29, "feel": 238, "fenc": 254, "feng": [242, 253], "fetch": [7, 28, 48, 59, 109, 136, 137, 138, 160, 191, 197, 198, 223, 259, 283], "fetch_k": [66, 67, 68, 72, 74, 90, 91, 96, 97], "few": [48, 98, 99, 186, 187, 200, 254, 255, 261, 263, 264, 267, 268, 281], "fewer": [89, 254], "ff6f841": 283, "ff9v": 273, "ffmpeg": [12, 282], "fi": [57, 64, 198], "fidel": [236, 240], "field": [20, 23, 24, 29, 115, 165, 169, 191, 229, 232, 260, 263, 264, 267, 280], "fifti": 241, "figur": [35, 254, 267], "file": [1, 3, 9, 11, 12, 13, 14, 16, 17, 18, 19, 34, 35, 43, 44, 45, 46, 47, 48, 50, 63, 80, 87, 88, 89, 90, 92, 93, 95, 99, 100, 101, 102, 107, 108, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 133, 134, 137, 138, 140, 141, 142, 143, 144, 145, 146, 149, 150, 153, 154, 159, 161, 162, 164, 166, 167, 175, 180, 181, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 198, 199, 200, 206, 225, 226, 227, 230, 232, 238, 239, 241, 242, 244, 250, 251, 255, 256, 259, 267, 268, 270, 273, 274, 279, 280, 281, 282, 283], "file1": [11, 13, 16, 17, 18, 19, 184], "file2": [11, 17, 18, 19, 184], "file3": [11, 17, 18, 19, 184], "file_count": 80, "file_path": [11, 14, 17, 112, 114, 116, 164, 260, 261, 263, 264], "filecheck": 283, "filedir": 95, "filenam": [19, 95, 254], "filesystem": 200, "fill": [127, 144, 153, 166, 249, 256], "filter": [25, 33, 36, 37, 39, 49, 56, 57, 64, 202, 225, 229, 232, 248, 267, 283], "filterchain": 232, "fim": [88, 122], "final": [3, 4, 5, 61, 63, 89, 250, 259, 267], "financ": 249, "financi": [35, 115, 260, 261, 263, 264, 267], "find": [3, 11, 65, 67, 70, 72, 73, 74, 89, 109, 110, 114, 121, 130, 139, 160, 172, 183, 185, 198, 200, 201, 203, 204, 221, 226, 228, 238, 243, 255, 260, 261, 263, 264, 273, 276], "findstr": 111, "fine": [2, 11, 17, 18, 32, 38, 91, 199, 245, 246, 250, 254, 266, 267, 276, 277, 282, 283, 284], "fine_tun": [30, 156, 169], "fine_tuning_job_id": [30, 156, 169], "finetun": [156, 157, 158, 191, 238, 242, 250, 265, 282, 283], "finetune_config": 30, "finetuning_servic": 30, "fingerprint": 253, "finish": [80, 89, 95, 112, 113, 114, 115, 116, 166, 184, 274], "finish_reason": [253, 261], "fintun": 283, "firectli": 96, "firewal": [112, 260, 261, 263, 264], "first": [3, 6, 10, 11, 13, 16, 17, 23, 25, 26, 27, 33, 34, 36, 37, 39, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 57, 58, 61, 63, 67, 68, 69, 70, 72, 73, 74, 88, 94, 97, 98, 100, 107, 109, 110, 111, 112, 113, 114, 116, 118, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 148, 149, 150, 157, 158, 162, 164, 170, 171, 172, 174, 184, 186, 187, 198, 199, 203, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 227, 232, 238, 245, 255, 259, 260, 261, 263, 264, 267, 268, 273, 274, 282], "firstli": [96, 184], "firstnam": 254, "fiscal": [115, 202, 260, 261, 263, 264], "fit": [199, 241, 259], "five": [95, 98], "fix": [2, 90, 121, 168, 238, 243, 249, 254, 255, 267, 280, 281, 282, 283], "flag": [90, 254, 255], "flagembed": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221], "flash_attention_recomput": [114, 115], "flavor": [238, 254], "flex": [112, 113, 123, 131, 140, 149, 161, 178, 186], "flexibl": [2, 23, 26, 27, 58, 88, 90, 168, 196, 245, 246, 259, 265, 266, 267], "flinng": 74, "float": [33, 39, 98, 253], "flore": 267, "flow": [7, 45, 50, 109, 115, 123, 124, 160, 183, 238, 246, 250, 255, 256, 259, 260, 261, 263, 264, 281, 282, 283], "flow_to": [2, 245], "flowchart": [249, 281], "flowchat": 283, "flowis": 250, "flowiseai": 250, "fly": [226, 238, 270], "fmt": [130, 131, 132, 133, 134, 204], "fn": 115, "focu": [2, 11, 13, 16, 17, 245, 246, 250, 267, 276], "focus": [46, 47, 77, 91, 237, 253, 267], "folder": [3, 17, 18, 32, 35, 38, 45, 51, 52, 53, 69, 80, 92, 93, 108, 110, 111, 112, 113, 119, 120, 128, 129, 135, 145, 146, 154, 155, 161, 162, 164, 166, 167, 176, 182, 184, 186, 198, 238, 244, 247, 251, 254, 259, 260, 261, 263, 264, 282, 283], "follow": [1, 3, 6, 8, 9, 11, 12, 13, 14, 16, 17, 18, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 56, 57, 58, 60, 67, 68, 69, 70, 72, 73, 74, 77, 80, 82, 87, 88, 89, 91, 92, 96, 97, 98, 99, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 156, 159, 160, 161, 162, 164, 166, 167, 168, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 227, 228, 229, 231, 232, 234, 237, 238, 239, 241, 244, 245, 249, 250, 251, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 272, 273, 274, 282], "fontcolor": 256, "fontsiz": 256, "foo": [78, 98], "foobar": 98, "footprint": 74, "forc": [214, 215, 216, 218, 253, 254, 273], "forgiv": 254, "fork": [238, 255], "form": [5, 11, 12, 13, 16, 17, 18, 19, 30, 32, 58, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 156, 161, 162, 164, 169, 178, 179, 183, 184, 191, 197, 198, 202, 206, 227, 241, 245, 249, 254, 255, 260, 261, 263, 264, 267, 268, 282], "format": [9, 12, 30, 45, 46, 47, 50, 75, 80, 93, 96, 135, 147, 225, 232, 238, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 279, 281, 282, 283, 285], "format_video_nam": 283, "former": 99, "formula": 267, "forrest": 248, "forth": 241, "fortifi": [34, 114], "forum": 243, "forward": [117, 125, 133, 142, 166, 180, 188, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 241, 267, 268, 273, 277, 282], "forwarded_port": 166, "found": [3, 12, 33, 67, 97, 110, 198, 199, 230, 236, 238, 240, 242, 243, 245, 254, 255, 270], "foundat": [236, 239, 241, 250, 267, 276], "four": [96, 114, 140, 179, 194, 236, 245, 267, 276], "four_gaudi": 110, "fp": 249, "fp16": [51, 52], "fp32": 122, "fp_44709d6fcb": 253, "fragment": 254, "frame": [12, 31, 32, 64, 160, 191, 249, 267], "framework": [2, 3, 17, 18, 19, 38, 46, 47, 48, 90, 91, 110, 149, 150, 160, 172, 183, 190, 191, 238, 241, 246, 248, 250, 276, 283, 284], "franz": 98, "free": [6, 89, 136, 137, 138, 191, 232, 237, 238, 267], "freeli": 267, "freez": [195, 281, 282, 283], "french": [98, 267], "frequenc": 253, "frequency_penalti": [50, 51, 53, 112, 114, 253, 283], "frequent": [147, 190, 191, 281], "fri": 249, "friendli": [2, 74, 94, 245, 246, 249, 250, 276], "from": [2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 19, 22, 23, 26, 27, 28, 29, 30, 32, 33, 34, 37, 38, 39, 42, 43, 51, 52, 59, 60, 61, 63, 64, 67, 74, 86, 88, 89, 91, 92, 93, 94, 95, 96, 97, 99, 100, 107, 109, 110, 112, 113, 114, 115, 116, 118, 121, 127, 130, 131, 136, 137, 138, 139, 140, 143, 144, 145, 146, 147, 149, 150, 153, 154, 155, 160, 161, 163, 164, 165, 166, 167, 168, 172, 176, 177, 178, 179, 181, 183, 185, 186, 187, 190, 191, 195, 197, 198, 199, 201, 202, 203, 204, 213, 214, 215, 216, 218, 220, 221, 226, 227, 228, 230, 232, 237, 238, 241, 243, 245, 248, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 273, 274, 275, 277, 280, 281, 282, 283, 284], "from_docu": 78, "from_list": 99, "from_text": 78, "front": [255, 276], "frontend": [58, 109, 111, 112, 113, 114, 116, 121, 130, 131, 132, 139, 140, 141, 149, 150, 161, 162, 164, 172, 173, 178, 179, 184, 186, 187, 260, 261, 263, 264, 281], "frontend_service_ip": 58, "frontend_service_port": 58, "fssl": [260, 273], "fstab": 273, "ftian1": [245, 246, 247], "fuel": [32, 61, 63], "fulfil": [2, 198, 245, 246, 276], "full": [1, 35, 87, 112, 113, 122, 123, 131, 140, 149, 159, 161, 172, 178, 183, 186, 193, 198, 254, 267, 283], "fulli": [5, 168, 254, 265, 266, 267, 279], "func": 115, "function": [2, 3, 9, 25, 33, 36, 37, 39, 49, 56, 58, 64, 74, 78, 98, 102, 121, 122, 130, 163, 191, 196, 199, 226, 230, 238, 245, 246, 250, 253, 259, 261, 266, 270, 276, 279, 281, 282, 283], "function_cal": 3, "fund": 241, "fundament": [2, 245, 246, 259, 260, 261, 263, 264], "further": [9, 34, 61, 63, 100, 115, 123, 124, 126, 134, 143, 156, 169, 175, 181, 189, 191, 199, 200, 250, 253, 259, 260, 261, 263, 264, 283], "furthermor": [89, 239, 267], "futur": [2, 3, 102, 168, 184, 190, 225, 238, 245, 260, 261, 263, 264, 267], "fxr6v": 274, "g": [17, 32, 38, 51, 52, 90, 98, 106, 110, 111, 117, 125, 126, 127, 133, 134, 142, 144, 151, 153, 161, 162, 166, 175, 180, 181, 194, 198, 199, 200, 202, 223, 225, 226, 228, 238, 239, 250, 254, 255, 256, 266, 267, 272, 273, 274, 283], "ga": 256, "gadi": 267, "gain": [90, 97, 100, 163, 267], "gap": [109, 136, 137, 138, 156, 172, 191, 249, 259], "gaspump": 256, "gate": [51, 52, 53, 121, 139, 140, 141, 149, 150, 151, 273], "gatewai": [123, 124, 137, 138, 190, 196, 197, 198, 238, 244, 246, 249, 259, 260, 261, 263, 264, 280, 281, 282, 283, 284], "gather": [100, 191], "gaudi": [2, 3, 6, 30, 32, 38, 40, 42, 45, 75, 88, 89, 91, 97, 100, 112, 113, 115, 126, 134, 136, 137, 138, 143, 148, 161, 168, 175, 181, 186, 189, 190, 191, 195, 200, 201, 203, 204, 216, 218, 221, 227, 230, 238, 247, 249, 252, 259, 262, 265, 266, 267, 268, 279, 280, 281, 282, 283, 284, 285], "gaudi2": [2, 6, 23, 38, 44, 53, 55, 75, 97, 102, 109, 121, 124, 130, 139, 147, 172, 177, 185, 190, 191, 249], "gaudi_default": 261, "gaug": [9, 223], "gb": [51, 52, 260], "gcng6": 273, "gcp": [267, 274, 284], "gdpr": 267, "gelsing": 6, "gemini": 267, "gemma": [267, 284], "gen": [198, 265, 267, 281], "gen6": 267, "genai": [2, 54, 88, 102, 103, 107, 118, 143, 168, 190, 191, 196, 227, 236, 241, 246, 253, 259, 275, 276, 279, 280, 281, 282, 283, 284], "genaicomp": [1, 3, 11, 13, 14, 16, 17, 29, 32, 35, 38, 48, 57, 58, 60, 64, 88, 100, 101, 103, 107, 109, 111, 112, 113, 114, 118, 123, 124, 126, 131, 132, 134, 137, 138, 140, 141, 143, 149, 150, 157, 158, 160, 161, 162, 164, 166, 168, 170, 171, 173, 174, 175, 178, 179, 181, 183, 184, 186, 187, 189, 190, 194, 195, 200, 202, 226, 227, 230, 238, 243, 246, 247, 249, 250, 255, 260, 261, 263, 264, 268, 270, 277, 281, 282, 283, 284, 285], "genaicompo": 247, "genaicompon": 194, "genaiev": [54, 87, 93, 95, 97, 110, 122, 168, 246, 250, 255, 258, 281, 282, 283, 285], "genaiexampl": [2, 95, 100, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 144, 149, 150, 151, 153, 159, 160, 161, 162, 164, 166, 168, 172, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 190, 191, 195, 200, 238, 244, 246, 247, 249, 251, 255, 260, 261, 263, 264, 265, 268, 281, 282, 283, 284, 285], "genaiinfra": [168, 190, 192, 193, 195, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 216, 217, 218, 219, 221, 223, 227, 246, 247, 250, 252, 255, 270, 281, 282, 283, 285], "genaiinfro_repo": [210, 214, 215], "genaistudio": 244, "gender": [32, 237], "gener": [1, 3, 5, 6, 12, 20, 22, 23, 24, 29, 30, 34, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 57, 58, 66, 67, 68, 70, 71, 72, 73, 74, 75, 86, 87, 88, 89, 91, 95, 96, 97, 98, 100, 102, 103, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 126, 128, 129, 130, 131, 132, 136, 137, 138, 139, 140, 141, 143, 145, 146, 154, 159, 160, 161, 162, 169, 172, 173, 174, 175, 178, 179, 181, 183, 184, 185, 186, 190, 191, 193, 199, 202, 214, 215, 216, 230, 231, 236, 238, 243, 245, 246, 247, 248, 249, 250, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 267, 274, 275, 276, 277, 279, 280, 281, 282, 283, 284], "generate_capt": [160, 161, 162], "generate_faq": 148, "generate_stream": 95, "generate_transcript": [160, 161, 162], "generated_text": [115, 202, 261, 263, 264], "generation_onli": 122, "geneva": 98, "genom": 267, "geometr": 98, "german": [98, 267], "get": [3, 5, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 24, 25, 26, 27, 29, 30, 33, 34, 36, 37, 39, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 60, 61, 63, 66, 68, 69, 70, 71, 72, 73, 74, 89, 94, 97, 99, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 130, 131, 133, 134, 139, 142, 143, 148, 151, 156, 161, 162, 164, 166, 169, 172, 175, 180, 181, 184, 188, 189, 190, 192, 195, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 225, 227, 228, 229, 230, 232, 234, 238, 243, 245, 253, 254, 255, 256, 260, 261, 263, 264, 267, 270, 272, 273, 274, 275, 276, 280, 281, 282, 283], "get_context": 148, "get_fil": [19, 112, 114, 116, 120, 164, 184, 260, 261, 263, 264, 282], "get_top_doc": 64, "get_video": [19, 161, 162, 184], "getenv": 2, "gettext": 198, "gfpgan": 249, "gghcr": 118, "gha": 238, "ghcr": [3, 17, 26, 27, 34, 41, 42, 43, 44, 45, 50, 63, 69, 70, 72, 74, 86, 91, 97, 107, 112, 114, 115, 118, 141, 143, 150, 162, 186, 187, 214, 215, 216, 227, 260, 261, 263, 264, 282, 283], "gif": 254, "gigabyt": 89, "girl": 30, "git": [2, 12, 45, 54, 61, 77, 88, 91, 93, 95, 97, 100, 103, 104, 105, 110, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 195, 223, 225, 238, 255, 260, 261, 263, 264, 268, 270, 274], "github": [1, 2, 11, 13, 16, 17, 23, 45, 54, 57, 61, 77, 87, 88, 89, 91, 92, 93, 95, 97, 100, 103, 104, 105, 110, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 159, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 193, 195, 198, 199, 200, 223, 225, 236, 238, 241, 242, 243, 252, 254, 255, 258, 259, 260, 261, 263, 264, 265, 266, 268, 270, 273, 274, 275, 277, 282, 283], "githubusercont": [109, 112, 198, 202, 227, 273], "gitignor": 282, "give": [168, 172, 173, 174, 175, 184, 225, 237, 265, 267, 274, 283], "given": [3, 89, 117, 199, 225, 247, 248, 249, 253, 254, 267], "global": [200, 201, 203, 204, 208, 209, 213, 214, 215, 216, 218, 220, 221, 232, 255, 281], "glue": 250, "gm": 283, "gmc": [107, 118, 126, 134, 143, 168, 175, 181, 189, 190, 196, 198, 238, 250, 252, 259, 262, 280, 281, 282, 283, 284, 285], "gmc_codegen": 126, "gmc_codetran": 134, "gmc_searchqa": 175, "gmc_translat": 181, "gmc_visualqna": 189, "gmcconnector": 229, "gmcmanag": [190, 226, 270], "gmconnecto": 229, "gmconnector": [107, 118, 143, 227, 228, 230, 270], "gmcontrol": 229, "gmcrouter": [190, 226, 270, 282], "gmctarget": 229, "gmcyaml": [226, 270], "gnr": 267, "go": [2, 5, 12, 51, 52, 53, 93, 95, 110, 168, 178, 198, 225, 243, 254, 255, 259, 260, 261, 263, 264, 274], "go_": 225, "goal": [4, 238, 244, 250, 266, 267], "goe": 254, "golang": [130, 131, 132, 133, 134, 204, 280], "golden": 95, "gomaxproc": 225, "good": [35, 98, 250, 254, 255], "goodwil": 241, "googl": [172, 173, 174, 175, 198, 228, 234, 282], "google_api_kei": [86, 172, 173, 174, 175, 219, 228], "google_cse_id": [86, 172, 173, 174, 175, 219, 228], "googleapi": [161, 162, 232], "got": 98, "gotcha": 200, "goto": [4, 203], "govern": [241, 267], "gpg": 273, "gpqa": 250, "gpt": [13, 43, 44, 50, 88, 100, 191, 253, 267], "gpt3": 284, "gpu": [11, 17, 18, 51, 52, 53, 168, 191, 201, 230, 238, 252, 259, 262, 265, 268, 280, 282, 283, 284], "gracefulli": 237, "grade": [2, 137, 138, 236, 266, 275, 276], "gradio": 249, "grafana": [9, 250, 258, 282], "gragh": 42, "grain": [2, 225, 245, 246, 276], "gram": 98, "grammar": 267, "grammat": 98, "grant_typ": [197, 198], "granular": [91, 267], "graph": [5, 74, 95, 100, 123, 124, 190, 191, 253, 254, 263, 264, 266, 267, 277, 280, 283, 284], "graphic": [249, 267], "graphrag": [283, 284], "graphviz": [243, 254, 255, 257], "grasp": 163, "great": [97, 259], "greater": 253, "greatli": 98, "green": [33, 195, 254], "grei": 256, "grep": [57, 64, 89, 109, 112, 113, 114, 116, 166, 197, 199, 202], "grid": 254, "grok": [130, 131, 132, 133, 134, 191, 204, 282, 284], "ground": [250, 267], "ground_truth": [96, 99], "ground_truth_fil": 96, "grounded": 267, "groundtruth": 96, "groundwork": 225, "group": [96, 112, 113, 123, 131, 140, 149, 161, 178, 186, 198, 240, 241, 254, 274, 276], "group1": 198, "group2": 198, "group_var": 274, "groupnam": 198, "grow": [115, 200, 263, 264, 267], "grubb": [236, 240], "gsm8k": 88, "gte": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221], "gtv": [161, 162], "guarante": [89, 253, 267], "guard": [31, 32, 34, 208, 248, 261, 267, 277, 281, 282, 283, 284], "guardrail": [31, 32, 33, 35, 36, 37, 38, 39, 190, 201, 226, 231, 238, 242, 244, 252, 266, 267, 270, 279, 281, 282, 283, 284], "guardrail_service_host_ip": 261, "guardrails_tgi": 34, "guarente": 253, "guess": 254, "gui": [94, 250, 267], "guid": [2, 8, 29, 51, 52, 53, 60, 82, 97, 102, 109, 110, 112, 121, 122, 127, 130, 139, 144, 147, 153, 156, 160, 165, 169, 172, 177, 183, 185, 194, 197, 198, 218, 223, 228, 238, 250, 254, 265, 267, 272, 274, 276, 280, 282], "guidanc": 110, "guidelin": [2, 45, 168, 239, 241, 243, 257, 267], "gun": 34, "guo": 242, "guradrails_model_id": 261, "gv7b9": 230, "gz": [92, 225, 259, 273], "h": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 227, 229, 230, 232, 260, 261, 263, 264, 268, 270], "h1": [254, 255, 282], "h100": 234, "h2": 254, "h3": [254, 255], "h4": [254, 255], "h5": 254, "h6": [254, 255], "h7": 254, "ha": [3, 5, 11, 12, 22, 35, 53, 82, 91, 95, 97, 98, 110, 111, 112, 113, 118, 122, 141, 150, 161, 162, 164, 184, 186, 195, 198, 199, 201, 203, 204, 221, 227, 229, 230, 232, 238, 241, 248, 254, 255, 260, 261, 263, 264, 266, 267, 270, 273, 274, 280], "habana": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 88, 91, 97, 109, 114, 115, 121, 130, 139, 158, 160, 171, 172, 185, 222, 223, 261, 280, 282], "habana_framework": 115, "habana_metric_url": 223, "habana_visible_devic": [3, 6, 30, 34, 40, 42, 46, 47, 55, 75, 97, 114, 115, 158, 171, 261], "habanalab": 190, "hack": 267, "had": 261, "hadolint": 238, "hafner": [236, 240], "haihao": [1, 87, 159, 253], "half": [241, 254], "hallucin": [33, 88, 109, 232, 246, 248, 258, 259, 267, 281], "halt": 34, "halucin": 250, "halv": 117, "han": 242, "hand": [89, 254], "handl": [20, 23, 24, 42, 65, 67, 70, 72, 73, 74, 80, 88, 90, 182, 183, 190, 196, 198, 226, 238, 245, 254, 267, 281, 283], "handle_request": 245, "handler": [9, 245], "hang": 259, "haoranxu": [178, 179, 191], "happen": [89, 115], "happi": 77, "har": [3, 122, 147, 172, 191, 236, 246, 258, 266, 267, 276, 279, 284], "harass": 237, "hard": [199, 254], "hardcod": 200, "hardwar": [46, 47, 51, 52, 91, 109, 130, 160, 168, 177, 185, 191, 195, 249, 259, 261, 262, 265, 266, 267, 268, 283], "hardware_info": 91, "hardware_info_gaudi": 91, "harm": [34, 38, 237], "hash": 273, "hasn": 261, "hasten": 34, "hat": [236, 240, 259, 262, 266, 282, 283], "hate": [34, 38, 39], "have": [1, 2, 3, 12, 13, 17, 34, 35, 39, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 63, 67, 68, 70, 72, 73, 74, 87, 88, 89, 91, 92, 93, 95, 98, 99, 104, 105, 107, 110, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 131, 132, 133, 134, 139, 140, 141, 142, 143, 144, 149, 150, 153, 156, 159, 161, 162, 163, 166, 168, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 191, 193, 194, 195, 198, 199, 200, 225, 226, 227, 228, 230, 231, 232, 234, 237, 238, 241, 244, 246, 248, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 282], "haven": 255, "haystack": [71, 113, 267, 284], "hbchr": 230, "hbq78": 274, "hdr4k": 89, "head": [30, 45, 94, 95, 112, 113, 140, 149, 161, 178, 186, 202, 236, 238, 240, 244, 255, 282, 283], "head_node_ip": 30, "header": [9, 77, 197, 254, 255, 282], "headless": [94, 223], "health": [69, 70, 72, 74], "health_check": [24, 26, 27, 34, 43, 44, 45, 46, 47, 50, 51, 61, 63, 66, 68, 69, 70, 71, 72, 73, 74, 184], "healthi": 237, "heard": [115, 263, 264], "heart": [238, 244, 255], "heavi": [20, 23, 24, 89, 254], "height": 256, "hellaswag": 88, "hello": [21, 22, 25, 26, 27, 78, 98, 111, 112, 113, 114, 116, 130, 131, 132, 133, 134, 161, 162, 164, 173, 174, 204, 207, 259, 260, 261, 263, 264], "helm": [89, 97, 168, 192, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 238, 242, 262, 273, 279, 280, 281, 282, 283, 284], "helmchart": [250, 280, 281, 282, 283], "help": [6, 9, 29, 33, 45, 50, 51, 75, 88, 93, 96, 97, 110, 115, 168, 198, 199, 200, 202, 223, 225, 232, 238, 243, 250, 253, 259, 261, 263, 264, 267, 268], "here": [2, 5, 9, 11, 12, 14, 17, 29, 30, 42, 48, 58, 67, 69, 80, 89, 92, 95, 100, 103, 106, 108, 109, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 125, 127, 128, 129, 131, 132, 133, 135, 141, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 164, 166, 167, 168, 169, 172, 175, 176, 180, 182, 184, 196, 198, 200, 201, 203, 204, 208, 209, 214, 215, 216, 218, 221, 222, 226, 228, 231, 232, 234, 236, 243, 244, 251, 254, 255, 256, 259, 260, 261, 262, 263, 264, 266, 267, 268, 271, 274, 278, 281], "herebi": 249, "herein": 241, "herm": 49, "hf": [30, 42, 45, 50, 51, 52, 53, 54, 57, 63, 88, 95, 99, 104, 105, 112, 114, 118, 121, 123, 124, 125, 156, 160, 161, 162, 164, 173, 174, 185, 186, 187, 191, 203, 227, 230, 267, 282], "hf_cach": 95, "hf_cache_dir": 95, "hf_chat_processor": 45, "hf_endpoint": [112, 114, 282], "hf_home": 95, "hf_hub_disable_progress_bar": [261, 263, 264], "hf_hub_enable_hf_transf": [261, 263, 264], "hf_llm_model": 45, "hf_token": [3, 30, 32, 34, 35, 38, 43, 44, 45, 50, 63, 97, 110, 112, 114, 157, 158, 170, 171, 261, 263, 264], "hftoken": [201, 203, 204, 208, 209, 216, 218, 221, 281], "hi": [29, 249], "hidehyperthread": 89, "hierarch": [5, 100, 191], "hierarchi": [115, 254, 260, 261, 263, 264], "high": [2, 20, 23, 24, 43, 44, 50, 88, 89, 90, 98, 100, 109, 113, 121, 122, 123, 124, 125, 139, 140, 141, 142, 143, 149, 150, 151, 161, 164, 178, 186, 196, 203, 221, 245, 249, 267, 276, 281, 282, 283], "higher": [2, 3, 37, 98, 190, 225, 245, 246, 253, 259, 267, 276], "highest": [65, 67, 70, 72, 73, 74, 86, 260, 261, 263, 264, 267], "highli": [65, 67, 70, 72, 73, 74, 238, 250], "highlight": [90, 123, 124, 267, 282, 283], "hint": 283, "hipaa": 267, "histogram": 9, "histor": [119, 120, 164, 167, 176, 185], "histori": [29, 119, 120, 163, 166, 167, 176, 190, 267, 277, 280, 281, 282], "hit": [89, 97, 267], "hl": 172, "hlist": 254, "hnoeiwdiqkl4kact9go0u4bxoaaaaaelftksuqmcc": [55, 56, 161, 162, 186, 187], "hnswlib": 267, "hold": [241, 255, 270], "holder": 241, "holidai": [173, 174], "home": [3, 11, 22, 35, 90, 92, 93, 110, 115, 255, 259, 260, 263, 264, 273, 274, 276, 282], "hometown": 101, "honest": [50, 51, 202], "hood": 254, "hook": 225, "hoong": 242, "hop": [248, 267], "horizont": [199, 254, 256], "horizontalpodautoscal": [200, 201, 214, 215, 216, 252, 283], "host": [2, 3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 58, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 88, 89, 94, 97, 103, 111, 112, 113, 114, 115, 116, 121, 123, 124, 140, 149, 150, 157, 158, 164, 170, 171, 184, 186, 187, 198, 208, 214, 215, 216, 218, 225, 226, 228, 232, 234, 238, 245, 248, 260, 261, 263, 264, 274], "host_ip": [8, 16, 18, 19, 29, 60, 95, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 133, 137, 138, 139, 140, 141, 149, 150, 151, 160, 161, 162, 164, 165, 172, 173, 174, 178, 179, 184, 185, 186, 187, 198, 259, 260, 261, 263, 264, 268, 282], "hostnam": [3, 6, 12, 19, 23, 40, 45, 55, 57, 64, 67, 75, 95, 101, 104, 105, 111, 160, 173, 260, 261, 263, 264, 273, 274], "hostpath": [197, 226], "hotpotqa": 267, "hour": [57, 263, 264], "hous": 256, "how": [2, 3, 30, 34, 38, 42, 51, 52, 53, 89, 92, 102, 111, 112, 113, 114, 121, 127, 144, 153, 156, 165, 168, 169, 172, 185, 191, 192, 195, 200, 202, 208, 232, 238, 243, 245, 246, 250, 252, 253, 254, 256, 260, 261, 263, 264, 265, 267, 268, 273, 276, 277, 283], "how_to_validate_servic": 238, "howev": [61, 63, 98, 110, 199, 200, 238, 241, 245, 248, 254, 260, 261, 263, 264, 267], "howpublish": [1, 87, 159, 193], "hp_token": [32, 35, 38], "hpa": [200, 201, 214, 215, 216, 252, 282, 283], "hpu": [6, 23, 51, 52, 53, 55, 75, 88, 91, 105, 106, 109, 110, 114, 115, 117, 121, 124, 125, 130, 132, 133, 138, 139, 141, 142, 150, 151, 160, 162, 172, 174, 180, 185, 187, 188, 190, 238, 261, 268, 280, 282, 283], "hq": [11, 13, 16, 17], "hshen14": [245, 246, 247], "html": [94, 237, 254, 255, 256, 272, 280, 282, 283], "html_context": 255, "http": [1, 2, 3, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 100, 101, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 157, 158, 159, 161, 162, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 178, 179, 180, 184, 186, 187, 188, 189, 190, 193, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 227, 229, 230, 232, 236, 237, 238, 241, 243, 245, 248, 250, 254, 255, 259, 260, 261, 263, 264, 268, 270, 272, 273, 274, 276, 281, 282, 283], "http2": 232, "http_code": [161, 162, 197, 198], "http_connection_manag": 232, "http_filter": 232, "http_proxi": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 100, 103, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 127, 130, 131, 132, 137, 138, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 178, 179, 184, 185, 186, 187, 200, 260, 261, 263, 264, 268, 273, 274], "http_request_size_byt": 9, "http_request_size_bytes_count": 9, "http_request_size_bytes_sum": 9, "http_requests_tot": 9, "http_statu": 281, "httpendpoint": 89, "https_proxi": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 100, 103, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 127, 130, 131, 132, 137, 138, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 178, 179, 184, 185, 186, 187, 200, 260, 261, 263, 264, 268, 273, 274], "httpstatu": [161, 162], "huailong": 242, "hub": [35, 51, 52, 107, 109, 112, 113, 114, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 139, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 170, 171, 172, 174, 175, 178, 179, 181, 184, 186, 187, 189, 190, 226, 227, 231, 232, 238, 260, 261, 263, 264, 267, 268, 272, 281, 282, 283], "hug": [51, 52, 98, 121, 208, 209, 214, 215, 216, 218, 226, 228, 234, 236, 266, 267, 283], "huge": 238, "hugging_face_hub_token": [42, 51, 52, 114, 115, 148], "huggingfac": [3, 17, 26, 27, 34, 35, 40, 41, 42, 43, 44, 45, 50, 51, 52, 53, 63, 69, 70, 72, 74, 86, 91, 95, 97, 106, 107, 110, 111, 112, 113, 114, 115, 117, 118, 121, 125, 127, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 162, 164, 166, 180, 184, 186, 187, 190, 200, 201, 203, 204, 208, 209, 214, 215, 216, 218, 221, 226, 227, 228, 232, 234, 260, 261, 263, 264, 266, 282, 283], "huggingface_token": 110, "huggingfacebgeembed": 99, "huggingfaceembed": 282, "huggingfaceh4": [42, 130, 131, 132, 133, 134, 191, 204], "huggingfacehub_api_token": [3, 12, 17, 32, 34, 35, 38, 41, 42, 43, 51, 52, 53, 72, 95, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 164, 166, 172, 173, 174, 178, 179, 180, 184, 200, 201, 203, 204, 208, 209, 216, 218, 221, 260, 261, 263, 264, 268], "huggingfacehubembed": 2, "huggingfaceinferenceapiembed": 282, "human": [98, 115, 156, 172, 191, 249, 259, 260, 261, 263, 264, 267], "humanev": [88, 122], "hundr": 88, "hungri": 89, "hurt": [89, 254], "hw": [2, 109, 160, 191, 199, 223, 267], "hw_mode": [51, 52], "hybrid": 267, "hyper": 91, "hyperlink": [254, 283], "hyperscal": 274, "hyperthread": 89, "hypervisor": [254, 256, 267], "hyphen": 254, "i": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 82, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 153, 156, 159, 160, 161, 162, 164, 165, 166, 168, 169, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 219, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 273, 274, 275, 276, 279, 281, 283], "iaar": [91, 97], "iam": 272, "icmp_seq": 273, "icon": [120, 123, 124, 176], "id": [3, 6, 8, 11, 14, 17, 26, 27, 28, 29, 34, 41, 42, 43, 44, 45, 50, 59, 63, 64, 69, 70, 72, 74, 78, 86, 89, 97, 112, 114, 115, 121, 137, 138, 151, 161, 162, 164, 173, 174, 175, 197, 198, 200, 201, 203, 204, 208, 214, 215, 216, 218, 221, 227, 228, 234, 253, 260, 261, 263, 264, 272, 273, 274, 282, 283], "id_rsa": 274, "id_token": 198, "idc": [260, 263, 264, 284], "idea": [98, 238, 243, 275], "ideal": [20, 23, 24, 25], "ident": [12, 98, 198, 237, 252, 272], "identifi": [7, 31, 35, 36, 64, 172, 191, 198, 226, 229, 232, 238, 241, 253, 254, 259], "idl": 89, "idx": 225, "ignor": [9, 37, 114, 116, 124, 131, 132, 141, 149, 150, 157, 158, 170, 171, 174, 187, 198, 273], "ilankelman": [161, 162, 186, 187, 188, 189], "illeg": 34, "illustr": [126, 134, 139, 175, 181, 189, 259, 267, 268], "imag": [69, 91, 95, 100, 109, 110, 115, 121, 126, 130, 134, 139, 143, 160, 163, 166, 168, 172, 175, 181, 183, 185, 188, 189, 191, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 230, 231, 238, 249, 250, 255, 256, 265, 268, 270, 273, 277, 280, 281, 282, 283, 284, 285], "image2video": 40, "image8": 267, "image_path": 40, "image_tag": 110, "image_url": [161, 162, 186, 187, 188, 189], "imagenet": 250, "imageprompt": 283, "imageri": 237, "images_path": 40, "img_b64_str": [161, 162], "immedi": [241, 250, 254], "immens": [61, 63], "impact": [2, 91, 95, 168, 237, 238, 244, 245, 246, 253, 266, 267, 285], "impair": 185, "imparti": 267, "imped": 266, "implement": [3, 23, 25, 26, 27, 44, 88, 89, 98, 109, 110, 121, 122, 123, 124, 125, 137, 138, 139, 147, 160, 183, 191, 198, 203, 238, 240, 241, 244, 247, 250, 254, 267, 268, 275, 276, 282], "implic": 238, "import": [2, 5, 9, 11, 12, 17, 18, 30, 32, 35, 36, 38, 66, 67, 68, 69, 70, 71, 72, 73, 74, 78, 80, 86, 88, 89, 94, 98, 99, 109, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 200, 212, 219, 232, 245, 250, 259, 260, 261, 263, 264, 267, 268, 282], "improv": [2, 3, 5, 17, 30, 89, 100, 110, 121, 130, 168, 169, 191, 198, 238, 243, 245, 249, 267, 280, 281, 282, 283], "inabl": 34, "inappropri": [32, 237], "inbound": [241, 254], "inc": [115, 202, 260, 261, 263, 264], "incept": 241, "incid": 237, "includ": [1, 5, 12, 20, 23, 24, 29, 38, 42, 43, 44, 48, 50, 87, 89, 90, 91, 93, 95, 100, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 142, 143, 149, 150, 151, 157, 158, 159, 161, 162, 164, 168, 170, 171, 178, 179, 184, 185, 186, 187, 193, 194, 198, 199, 201, 221, 222, 223, 225, 226, 229, 236, 237, 238, 239, 240, 241, 243, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 256, 259, 268, 272, 273, 276, 279, 283], "inclus": [237, 254], "incom": [2, 9, 69, 232, 245, 246, 259, 276], "incompat": [238, 244, 245], "incomplet": 253, "inconsist": 241, "incorpor": [202, 254], "incorrect": 283, "incorrectli": [109, 160, 185], "incorrefin": 283, "increas": [88, 90, 91, 98, 112, 241, 245, 253, 255, 267, 282], "increasingli": 249, "incub": [3, 241], "indent": [282, 283], "independ": [2, 241, 245, 246, 267, 276], "index": [20, 30, 61, 63, 65, 67, 70, 72, 73, 74, 80, 95, 115, 137, 138, 161, 162, 172, 225, 244, 251, 253, 254, 255, 260, 261, 263, 264, 266, 267, 277, 280, 282, 283], "index_data": 95, "index_nam": [12, 14, 17, 19, 67, 70, 71, 72, 73, 74, 111, 113, 137, 138, 161, 162, 164, 184, 260, 261, 263, 264], "indexretrivel": 282, "indic": [33, 37, 39, 98, 115, 241, 254, 255, 260, 261, 263, 264, 267], "individu": [2, 5, 89, 90, 98, 123, 124, 182, 185, 237, 241, 245, 246, 254, 259, 276], "industri": [109, 147, 249, 259, 261, 266, 267], "inexpens": 98, "infer": [17, 26, 27, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 63, 69, 70, 72, 74, 86, 89, 91, 107, 109, 110, 112, 115, 117, 118, 121, 130, 139, 140, 141, 142, 143, 147, 149, 150, 151, 160, 164, 177, 183, 186, 190, 191, 214, 215, 216, 218, 221, 227, 249, 250, 260, 261, 263, 264, 267, 281, 282, 283], "inferec": 248, "inferenc": 199, "inferencecli": [50, 112, 114], "inferi": 267, "infin": [107, 118, 126, 134, 143, 175, 181, 189, 198, 227, 230, 270, 273], "infinit": 94, "info": [5, 28, 77, 94, 109, 112, 113, 114, 115, 116, 225, 229, 236, 238, 261, 263, 264, 266, 267, 280], "inform": [2, 3, 7, 8, 12, 20, 23, 24, 29, 31, 34, 35, 36, 38, 53, 60, 65, 67, 70, 72, 73, 74, 77, 80, 88, 89, 91, 93, 97, 100, 109, 112, 113, 115, 121, 123, 124, 130, 131, 136, 137, 138, 139, 140, 147, 149, 160, 161, 163, 168, 172, 178, 186, 191, 194, 196, 198, 200, 202, 205, 206, 207, 208, 209, 211, 212, 217, 219, 222, 223, 230, 232, 237, 238, 241, 243, 244, 252, 254, 255, 258, 259, 260, 261, 263, 264, 265, 267, 270, 272, 273, 274, 277, 281], "informant": 42, "infrastructur": [2, 3, 51, 58, 193, 194, 234, 245, 246, 250, 266, 267, 276, 282, 285], "ingest": [12, 70, 72, 73, 74, 80, 95, 97, 101, 160, 184, 266, 267, 281], "ingest_doc": 97, "ingest_video": 19, "ingredi": 267, "ingress": [197, 198, 248], "ingress_host": [198, 232], "ingress_port": [198, 232], "ingressgatewai": [198, 232], "inher": 267, "inherit": 3, "ini": 274, "init": [70, 81, 273, 281], "initdb": [70, 81], "initi": [2, 3, 34, 45, 46, 47, 108, 114, 119, 120, 164, 167, 176, 230, 241, 245, 250, 260, 261, 263, 264, 267, 272, 273, 274, 280, 281, 282, 283], "initial_queri": [50, 51, 61, 62, 63, 64, 111, 112, 113, 114, 115, 116, 137, 138, 161, 162, 164, 173, 174, 184, 202, 211, 253, 260, 261, 263, 264], "inject": [25, 33, 36, 39, 49, 56, 198, 231, 277], "injest": 42, "inlin": [123, 124, 254], "inner": 74, "innov": [3, 236, 250, 266, 267, 276], "inproceed": 98, "input": [2, 3, 6, 17, 20, 22, 23, 24, 26, 27, 31, 32, 34, 38, 39, 41, 42, 43, 44, 45, 50, 55, 56, 61, 63, 65, 67, 69, 70, 72, 73, 74, 95, 97, 99, 102, 104, 105, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 120, 121, 122, 123, 124, 125, 128, 129, 130, 131, 132, 137, 138, 139, 140, 141, 148, 149, 150, 160, 162, 164, 167, 172, 173, 174, 176, 178, 179, 185, 190, 191, 195, 203, 214, 216, 248, 249, 253, 259, 260, 261, 263, 264, 267, 281, 282, 283], "input_datatyp": [2, 245], "input_str": 22, "inquiri": [147, 190], "insecur": [190, 274], "insert": [88, 106, 117, 122, 123, 124, 125, 127, 133, 142, 144, 151, 153, 165, 166, 175, 180, 184, 200, 201, 203, 204, 208, 209, 216, 218, 221, 226, 228, 232, 254], "insert_befor": 232, "insert_your_ip_her": 151, "insid": [80, 92, 95, 198, 230, 259], "insight": [88, 90, 110, 121, 147, 160, 163, 210, 238, 250, 267], "inspir": [110, 237, 261], "instal": [11, 48, 51, 52, 54, 75, 78, 92, 94, 97, 103, 107, 108, 109, 111, 112, 113, 117, 118, 119, 120, 121, 122, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 139, 140, 142, 143, 144, 145, 146, 149, 153, 154, 155, 161, 162, 164, 166, 167, 168, 175, 176, 178, 180, 181, 182, 184, 186, 188, 189, 192, 194, 198, 200, 222, 225, 226, 227, 231, 232, 238, 239, 254, 259, 260, 267, 280, 281, 282, 283], "installt": [226, 228], "instanc": [38, 48, 79, 89, 112, 113, 118, 140, 149, 161, 178, 186, 199, 223, 226, 227, 228, 237, 245, 249, 260, 261, 263, 264, 267], "instancenam": 223, "instanti": 267, "instead": [89, 98, 114, 199, 222, 223, 225, 231, 245, 253, 254, 261, 267, 281, 283], "instruct": [3, 45, 46, 47, 48, 50, 51, 52, 67, 80, 95, 97, 99, 100, 102, 109, 110, 111, 112, 113, 114, 121, 130, 139, 147, 148, 149, 150, 151, 160, 163, 168, 172, 177, 178, 179, 183, 185, 186, 187, 191, 197, 198, 223, 228, 232, 248, 250, 255, 259, 260, 261, 263, 264, 265, 267, 268, 280, 281, 282, 283, 284], "instructhumanev": [88, 122], "instruction_token": 122, "instructiontun": 283, "instrument": [9, 89, 109, 115, 136, 137, 138, 259, 260, 261, 263, 264, 267], "insuffici": 90, "insult": 237, "int": [3, 98], "int8": 61, "integ": 253, "integr": [2, 3, 7, 20, 23, 24, 25, 28, 33, 36, 37, 39, 42, 45, 49, 56, 59, 91, 102, 103, 111, 112, 113, 114, 116, 121, 123, 124, 137, 138, 140, 141, 149, 150, 161, 162, 164, 172, 178, 179, 184, 186, 187, 191, 196, 198, 230, 238, 241, 245, 246, 248, 249, 250, 254, 267, 275, 276, 280, 283], "intel": [2, 3, 30, 32, 35, 38, 44, 45, 50, 51, 52, 53, 54, 57, 61, 88, 90, 91, 100, 102, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 147, 150, 151, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 191, 200, 201, 218, 221, 225, 227, 234, 236, 238, 240, 242, 245, 246, 247, 248, 249, 252, 253, 260, 261, 263, 264, 265, 267, 268, 279, 282, 283, 284], "intel_hpu": [6, 23, 30, 40, 55, 75, 105, 114, 158, 171, 261], "intellab": [19, 61, 74, 85], "intellectu": 196, "intellig": [45, 98, 163, 261, 266], "intend": [35, 238, 241, 254, 266, 267], "intens": 91, "intent": [37, 249, 277, 283], "intent_detect": [41, 238, 242], "inter": [248, 267, 273, 283], "interact": [2, 31, 34, 43, 48, 51, 52, 95, 139, 147, 185, 190, 191, 198, 237, 245, 246, 249, 250, 267, 274, 276], "interdepend": 245, "interest": [123, 124, 238, 241, 260, 261, 263, 264, 268], "interfac": [2, 89, 100, 123, 124, 127, 144, 153, 166, 190, 225, 238, 244, 245, 246, 248, 250, 253, 254, 259, 267, 272, 276, 279, 283, 284], "interfer": 199, "interim": [240, 267], "intermedi": 267, "intern": [98, 109, 111, 112, 113, 114, 116, 121, 123, 124, 130, 139, 143, 164, 172, 184, 186, 187, 226, 241, 259, 260, 261, 263, 264, 267], "internalservic": [118, 227, 229, 230], "internet": [110, 227, 267, 273, 274], "interoper": [121, 267], "interpret": 254, "interv": 225, "interven": 254, "intric": 267, "intro": 35, "introduc": [3, 34, 92, 95, 98, 123, 124, 191, 232, 238, 245, 249, 267, 270, 272, 281, 283], "introduct": [9, 254, 277], "introductori": 254, "intuit": [20, 23, 24], "inur": 241, "invalid": [121, 122, 123, 124, 125, 198, 203, 229, 283], "invalu": [2, 168], "invest": 266, "investig": 237, "invis": [237, 253], "invit": [130, 160, 177, 185], "invok": [3, 11, 12, 14, 17, 18, 19, 35, 41, 123, 124, 197, 249], "involv": [30, 97, 107, 118, 121, 143, 227, 237, 238, 241, 245, 260, 261, 263, 264, 267, 276], "io": [3, 17, 26, 27, 34, 41, 42, 43, 44, 45, 50, 63, 69, 70, 72, 74, 80, 86, 89, 91, 97, 100, 107, 112, 114, 115, 118, 141, 143, 150, 162, 186, 187, 197, 198, 199, 200, 202, 214, 215, 216, 223, 225, 227, 228, 230, 231, 232, 243, 254, 255, 260, 261, 263, 264, 270, 273, 282, 283], "io_gmconnector": [226, 270], "ip": [35, 45, 58, 74, 91, 104, 105, 110, 111, 112, 113, 114, 123, 124, 133, 137, 138, 140, 141, 149, 150, 151, 161, 162, 164, 173, 174, 184, 186, 187, 198, 201, 203, 204, 221, 223, 232, 260, 261, 263, 264, 273, 274], "ip6tabl": 273, "ip_address": [3, 6, 23, 40, 55, 57, 64, 75, 100, 101, 148, 151], "ip_forward": 273, "ipaddr": 274, "ipc": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 21, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 54, 55, 61, 62, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 86, 88, 97, 103, 112, 114, 115, 116, 123, 124, 140, 149, 150, 157, 158, 170, 171, 260, 261, 263, 264], "ipconfig": 111, "ippool": 273, "iptabl": 273, "ipv": 273, "ipv4": [111, 113, 161, 162, 164, 184, 186, 260, 273], "ir": 232, "iri": 242, "is_complex": 115, "is_floating_point": 115, "is_releas": 255, "is_thumbs_up": 29, "isdownstreamservic": [229, 230], "isn": 254, "iso27001": 267, "isol": [2, 88, 89, 199, 245, 246], "issu": [2, 89, 92, 94, 96, 98, 99, 109, 198, 199, 201, 226, 229, 230, 234, 237, 240, 241, 243, 244, 245, 246, 251, 255, 259, 267, 273, 274, 280, 281, 282, 283], "issuer": 198, "istio": [194, 226, 231, 232, 250, 252], "istio_tag": 231, "istioctl": [231, 232], "istiod": 198, "istionamespac": 232, "istiooper": 232, "isv": 267, "ital": 254, "italian": 267, "itc": [12, 161, 162], "itd": 22, "itdc": 261, "item": [107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 202, 225, 227, 230, 254, 255, 270, 281], "iter": [3, 100, 172], "itm": [12, 160, 161, 162], "its": [7, 12, 30, 34, 94, 97, 117, 125, 160, 169, 191, 194, 196, 198, 199, 226, 232, 238, 241, 243, 245, 249, 254, 255, 259, 266, 267, 270, 276, 283], "itself": [92, 200, 225, 254, 256, 259, 282], "ivborw0kggoaaaansuheugaaaaoaaaakcayaaacnm": [55, 56, 161, 162, 186, 187], "j": [88, 239], "j4ltr": 230, "jacob": 282, "jaeger": [9, 282], "jaegertrac": 9, "jailbreak": 248, "japanes": 267, "java": 130, "javascript": [130, 255], "jbd6r": 273, "jfrog": [236, 240], "jianfeng": 193, "jigsaw": 38, "jinaai": 267, "jing": 98, "job": [11, 17, 18, 92, 259, 280, 282, 283], "job_nam": [92, 259], "john": [32, 35, 36, 254], "johnvansickl": 12, "join": [25, 33, 36, 37, 39, 49, 56, 243, 273, 275], "joint": [23, 241, 267], "jointli": [25, 266, 267], "joke": 49, "josef": 98, "journei": [2, 34, 168], "jpeg": 254, "jpg": [161, 162, 186, 187, 188, 189], "jq": [197, 198, 199, 202, 230], "jre": [17, 18, 19], "json": [3, 6, 8, 9, 11, 12, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 92, 95, 97, 100, 101, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 198, 201, 202, 203, 204, 205, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 227, 229, 230, 231, 253, 254, 259, 260, 261, 263, 264, 267, 268, 270, 283], "json_encod": 253, "jsonl": [30, 95, 96, 101, 169, 283], "jsonpath": [107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 199, 201, 202, 203, 204, 221, 223, 227, 230, 232, 270], "judg": [4, 5, 258, 283], "judgement": 98, "jump": 238, "just": [29, 51, 52, 89, 91, 115, 118, 143, 165, 199, 227, 237, 238, 254, 268, 270, 273, 274], "justif": 241, "justifi": 256, "justin": [236, 240], "jwcrypto": 198, "jwt": 281, "k": [66, 67, 68, 72, 74, 90, 96, 115, 172, 226, 228, 250, 260, 261, 263, 264, 267, 274], "k8": [90, 91, 93, 110, 168, 195, 199, 200, 201, 203, 204, 221, 232, 238, 246, 250, 267, 274, 281, 282, 283, 284, 285], "k8s_cluster": 274, "k8s_ver": 273, "kaokao": [242, 253], "kb": 254, "kbcnv": 274, "kdd": [95, 100], "ke": [115, 236, 240, 260, 261, 263, 264, 267], "keep": [57, 77, 89, 115, 163, 226, 253, 254, 276, 281], "kefei": 242, "kei": [3, 20, 23, 24, 25, 33, 35, 36, 37, 39, 49, 56, 89, 90, 100, 110, 121, 127, 144, 153, 166, 173, 174, 175, 190, 191, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 227, 228, 234, 250, 266, 268, 270, 272, 273, 274], "kenobi": 98, "kept": [254, 256], "kernel": [89, 200, 254, 267, 273], "keycloak": [163, 196, 198, 252, 265, 281, 282], "keycloak_addr": [197, 198], "keycloak_client_id": 197, "keycloak_client_secret": 197, "keycloak_instal": 198, "keycloak_port": 198, "keycloak_realm": 197, "keycloak_service_endpoint": 164, "keycloak_setup_guid": [164, 166], "keygen": 274, "keyr": 273, "keyword": [59, 60, 123, 124, 232, 253], "kill": 6, "kilt": 267, "kind": [89, 195, 197, 198, 200, 232, 237, 254, 273, 280, 281], "kinder": 242, "kishor": 98, "km2ru94h9ht9h6ou": 273, "know": [3, 115, 202, 253], "knowledg": [5, 67, 70, 72, 73, 74, 91, 95, 100, 109, 111, 112, 113, 114, 116, 119, 120, 136, 137, 138, 160, 161, 162, 164, 167, 172, 190, 191, 202, 259, 260, 261, 263, 264, 267, 277, 280, 283, 284], "knowledge_graph": [42, 190], "knowledgebas": [137, 138], "knowledgegraph": [42, 238, 242], "known": [51, 52, 98, 115, 130, 196, 255, 261, 263, 264], "korean": 267, "kube": [89, 199, 202, 223, 225, 273, 274], "kube_apiserver_ip": 274, "kube_apiserver_port": 274, "kube_control_plan": 274, "kube_nod": 274, "kube_pods_subnet": 274, "kube_service_address": 274, "kubeadm": [194, 252, 271, 274], "kubeconfig": [93, 273], "kubectl": [89, 91, 93, 106, 107, 110, 117, 118, 125, 126, 127, 133, 134, 142, 143, 144, 151, 153, 166, 175, 180, 181, 188, 189, 192, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 227, 228, 230, 232, 234, 270, 272, 273], "kubelet": 273, "kuberai": [252, 281], "kubernet": [92, 93, 97, 127, 144, 153, 163, 165, 166, 168, 192, 197, 198, 199, 200, 201, 202, 203, 204, 216, 218, 221, 226, 228, 238, 242, 247, 248, 250, 255, 258, 259, 265, 270, 279, 281, 282, 283], "kubespari": 274, "kubesprai": [194, 252, 271, 273], "kubespraydir": 274, "kv": [51, 52], "kwarg": 115, "kx": [236, 266], "kxxgf": 272, "l": [57, 97, 107, 118, 126, 134, 143, 175, 181, 189, 198, 202, 227, 230, 256, 270], "l1": 267, "l2": [18, 74, 267], "l29v8": 273, "l3": 267, "l6": [2, 284], "l6fsj": 228, "lab": [236, 266, 267], "label": [38, 89, 92, 110, 117, 198, 199, 202, 232, 254, 259, 273], "labelselector": 273, "lack": [245, 249, 266], "ladder": 237, "lai": 225, "lake": 117, "lambada_openai": [54, 88], "lambda_mult": [66, 67, 68, 72, 74, 90, 97], "lancedb": [277, 283], "land": 283, "landscap": [250, 261], "langchain": [2, 3, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 34, 41, 42, 43, 44, 45, 46, 48, 51, 53, 62, 65, 66, 67, 68, 69, 70, 72, 74, 78, 80, 86, 100, 109, 111, 112, 113, 114, 116, 137, 138, 139, 140, 141, 147, 149, 150, 160, 161, 162, 164, 172, 173, 174, 183, 184, 190, 191, 238, 245, 247, 248, 260, 261, 263, 264, 267, 277, 279, 280, 281, 282, 283, 284], "langchain_api_kei": [115, 260, 263, 264], "langchain_commun": [2, 99], "langchain_rai": [17, 18, 137, 138], "langchain_tracing_v2": [115, 260, 263, 264], "langflow": 250, "langgraph": [3, 4, 284], "langsmith": [267, 282], "languag": [3, 20, 31, 32, 38, 43, 44, 45, 46, 47, 48, 50, 91, 94, 97, 98, 102, 107, 109, 118, 121, 123, 124, 130, 135, 139, 143, 147, 160, 172, 177, 185, 190, 200, 226, 227, 237, 250, 253, 254, 255, 256, 259, 265, 267, 268, 270, 282, 283], "language_from": [130, 131, 132, 133, 134, 178, 179, 180, 204], "language_to": [130, 131, 132, 133, 134, 178, 179, 180, 204], "larg": [3, 12, 22, 26, 27, 30, 43, 44, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 65, 67, 70, 72, 73, 74, 88, 89, 90, 91, 102, 103, 109, 115, 121, 139, 147, 160, 161, 162, 169, 172, 183, 185, 191, 199, 226, 245, 250, 254, 259, 263, 264, 266, 267, 270, 282], "larger": [51, 52, 90, 99], "last": [5, 174, 199, 234, 238, 282], "last_index": 80, "last_modifi": 80, "lastnam": 254, "latenc": [23, 26, 27, 51, 52, 88, 89, 94, 110, 168, 245, 246, 248, 249, 250, 253, 258, 259, 267, 283], "later": [23, 26, 27, 94, 100, 115, 230, 253, 255, 261, 263, 264, 267, 273], "latest": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 85, 86, 88, 91, 93, 97, 100, 103, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 130, 131, 132, 137, 138, 139, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 170, 171, 172, 173, 174, 175, 178, 179, 184, 186, 187, 200, 201, 218, 225, 226, 227, 230, 238, 255, 260, 261, 263, 264, 268, 272, 273, 274, 275, 280, 281, 282, 283], "latter": [115, 244, 251, 254, 260, 261, 263, 264], "lau": [115, 261], "launch": [3, 13, 30, 35, 58, 68, 100, 115, 143, 156, 161, 169, 194, 250, 266, 282, 283], "launch_agent_service_openai": 100, "launch_eval_contain": 95, "launch_llm_judge_endpoint": 95, "launch_microservic": [51, 52, 53], "launch_retrieval_tool": 101, "launch_tgi": 148, "launch_vllm_servic": [45, 51, 52], "launch_vllm_service_openvino": [51, 52], "launch_vllmrai": [45, 53], "law": 241, "layer": [198, 267], "layout": 256, "le": 9, "lead": [98, 110, 196, 237, 241, 245, 248, 254, 267, 276], "leader": [35, 237], "leaderboard": [35, 267], "leadership": [266, 267], "leakag": 232, "learn": [17, 20, 23, 24, 26, 27, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 58, 61, 62, 63, 69, 70, 72, 74, 95, 104, 105, 109, 111, 112, 113, 114, 115, 116, 139, 140, 141, 148, 149, 150, 160, 164, 172, 173, 174, 178, 179, 191, 209, 211, 214, 215, 216, 218, 237, 260, 261, 263, 264, 267, 268, 275, 283], "least": [51, 52, 61, 63, 91, 93, 114, 123, 124, 187, 203, 238, 241, 254, 267, 270], "leav": [29, 31, 38, 90, 254], "lectur": 185, "led": 267, "left": [0, 88, 92, 122, 123, 124, 165, 198, 254, 255, 256, 282], "left_pad": 122, "legaci": [121, 130, 283], "legal": [2, 88, 139, 147, 168, 190, 191, 194, 252, 258, 265, 277], "legend": 267, "length": [9, 34, 35, 66, 67, 68, 70, 71, 72, 73, 74, 86, 98, 110, 111, 112, 113, 114, 115, 116, 164, 184, 253, 254, 260, 261, 263, 264, 267, 282, 283], "length_ratio": 98, "lengthi": 163, "lenovo": 249, "lenth": 242, "less": [2, 245, 246, 253, 255, 267], "let": [2, 51, 52, 89, 94, 107, 111, 118, 143, 168, 185, 227, 238, 248, 254, 256, 259], "letong": 242, "letonghan": 245, "level": [2, 39, 88, 89, 90, 109, 115, 121, 122, 123, 124, 125, 190, 199, 203, 225, 229, 237, 238, 245, 246, 254, 255, 259, 260, 261, 263, 264, 267, 276, 280, 283], "leverag": [2, 4, 10, 12, 32, 38, 44, 86, 91, 92, 97, 107, 109, 112, 113, 118, 136, 137, 138, 140, 143, 147, 149, 161, 163, 178, 186, 191, 201, 203, 204, 221, 226, 227, 230, 232, 241, 245, 246, 248, 250, 252, 259, 267, 268, 270, 276, 277], "lexic": [61, 63], "lf": [236, 243, 266, 282], "lfaidata": 276, "lfproject": 241, "liabil": [115, 241, 260, 261, 263, 264], "liang": [1, 159], "liang1": [242, 253], "lianhao": 242, "lib": [115, 273], "librari": [30, 48, 51, 52, 53, 74, 94, 98, 127, 144, 153, 166, 238, 282], "libreoffic": 10, "librispeech": 103, "libtesseract": [11, 13, 16, 17, 18, 19], "licens": [77, 78, 102, 238, 239, 241, 267], "lifecycl": 267, "lift": 256, "lightblu": 256, "lightli": 89, "lightorang": 254, "lightweight": [32, 38, 48], "like": [2, 9, 11, 14, 17, 30, 31, 35, 38, 45, 46, 47, 51, 52, 53, 58, 80, 88, 89, 90, 92, 93, 100, 109, 112, 113, 114, 115, 116, 121, 123, 124, 130, 139, 156, 161, 162, 172, 195, 196, 197, 198, 200, 201, 214, 215, 216, 218, 223, 225, 226, 229, 237, 238, 245, 246, 248, 249, 253, 254, 255, 259, 260, 261, 263, 264, 266, 267, 270, 272, 273, 274, 279, 281], "likelihood": [37, 253], "limit": [2, 45, 88, 89, 90, 91, 94, 97, 117, 122, 172, 199, 239, 241, 245, 246, 248, 253, 254, 267, 274, 276, 282, 283], "limit_hpu_graph": [114, 115], "limit_start": 122, "limitnofil": 110, "lin": 98, "line": [48, 93, 94, 102, 110, 115, 123, 124, 199, 253, 254, 255, 256, 272, 273, 274, 282, 283], "linebreak": 283, "lingual": 267, "linguist": [32, 98], "link": [0, 9, 11, 14, 17, 18, 30, 32, 51, 52, 53, 79, 92, 95, 111, 112, 113, 114, 116, 119, 120, 131, 137, 138, 140, 149, 161, 164, 167, 172, 173, 174, 175, 178, 186, 190, 200, 238, 243, 253, 255, 267, 272, 276, 283], "link_list": [11, 17, 18, 111, 112, 113, 114, 116, 137, 138, 164, 227, 260, 261, 263, 264], "linkedin": [137, 138, 236, 238], "linux": [92, 111, 112, 113, 123, 131, 140, 149, 161, 178, 186, 225, 236, 239, 241, 254, 255, 259, 267, 273], "lip": 249, "lipsync": 249, "list": [5, 19, 30, 35, 48, 51, 52, 64, 89, 91, 98, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 134, 143, 156, 160, 161, 162, 164, 167, 168, 169, 178, 179, 183, 184, 186, 190, 191, 195, 199, 200, 203, 225, 227, 229, 230, 238, 241, 242, 243, 244, 245, 246, 255, 260, 261, 263, 264, 267, 268, 273, 276, 282, 283], "list_checkpoint": [30, 156, 169], "list_paramet": [245, 253], "list_servic": [245, 253], "listen": [80, 225, 232, 274], "literalinclud": 254, "liveportrait": 249, "ll": [110, 112, 113, 123, 124, 131, 140, 149, 161, 178, 186, 200, 238, 243, 255, 256, 260, 261, 264, 272, 273, 274], "llama": [20, 30, 31, 34, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 95, 99, 118, 121, 123, 124, 125, 149, 150, 151, 156, 164, 183, 184, 191, 203, 208, 227, 230, 260, 261, 267, 277, 280, 281, 282, 283, 284], "llama2": [267, 284], "llama2_page6": 18, "llama3": [3, 48, 100, 111, 260, 281, 284], "llama_guard": [34, 114, 283], "llama_index": [11, 17, 18, 20, 27, 47, 65, 73, 238], "llama_video": 57, "llamaguard2": 34, "llamaindex": [2, 17, 73, 191, 236, 240, 267, 279, 280, 281, 283, 284], "llava": [56, 160, 161, 162, 185, 186, 187, 191, 267, 280, 281, 282, 283, 284], "llava_serv": 55, "llava_server_port": [161, 162], "llc": 243, "llc_occup": 225, "llm": [2, 5, 6, 11, 13, 16, 17, 25, 33, 34, 36, 37, 39, 41, 48, 49, 53, 54, 56, 75, 86, 88, 89, 90, 91, 92, 100, 103, 107, 109, 110, 118, 121, 122, 127, 130, 133, 134, 139, 143, 144, 147, 148, 153, 156, 160, 168, 172, 184, 186, 187, 190, 191, 198, 201, 202, 203, 204, 208, 221, 226, 230, 236, 238, 242, 245, 246, 247, 248, 249, 250, 252, 258, 259, 268, 270, 276, 279, 280, 281, 282, 283, 284], "llm_as_judge_ip": 97, "llm_as_judge_port": 97, "llm_data": 42, "llm_download": [57, 184], "llm_endpoint": [42, 97, 148], "llm_endpoint_url": 3, "llm_engin": 3, "llm_gener": 253, "llm_hardwar": 138, "llm_judg": 95, "llm_model": [42, 45, 51, 52, 53], "llm_model_id": [34, 41, 43, 44, 45, 50, 97, 104, 105, 110, 113, 114, 115, 118, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 149, 150, 164, 173, 174, 178, 179, 200, 201, 203, 204, 216, 218, 221, 227, 230, 261, 263, 264], "llm_model_id_codegen": 164, "llm_native_model": [46, 47], "llm_port": 97, "llm_service_devic": 261, "llm_service_host_ip": [2, 104, 105, 111, 113, 123, 124, 137, 138, 140, 141, 149, 150, 164, 173, 174, 260, 261, 263, 264], "llm_service_host_ip_chatqna": 164, "llm_service_host_ip_codegen": 164, "llm_service_host_ip_docsum": 164, "llm_service_host_ip_faqgen": 164, "llm_service_host_port_codegen": 164, "llm_service_host_port_docsum": 164, "llm_service_host_port_faqgen": 164, "llm_service_port": [2, 104, 105, 173, 174, 261, 263, 264], "llm_vllm": 51, "llvm": 254, "lm": [277, 279, 281, 284], "lm_evaluation_har": [54, 88], "lmevalpars": 88, "lmm": 267, "load": [20, 23, 24, 51, 52, 78, 80, 88, 89, 90, 93, 94, 98, 99, 110, 112, 114, 115, 232, 245, 261, 263, 264, 267, 273, 282, 283], "load_data_path": 122, "load_generations_intermediate_path": 122, "load_generations_path": 122, "load_in_4bit": 122, "load_in_8bit": 122, "load_shap": 90, "loadbalanc": [197, 232], "loadshap": 90, "local": [12, 13, 22, 23, 30, 48, 64, 68, 69, 77, 80, 92, 96, 107, 110, 111, 112, 113, 114, 115, 116, 118, 119, 120, 123, 124, 131, 132, 140, 141, 143, 145, 146, 149, 150, 157, 158, 161, 162, 164, 167, 170, 171, 174, 184, 186, 187, 190, 195, 197, 198, 200, 202, 214, 215, 216, 218, 225, 227, 230, 231, 232, 250, 255, 259, 260, 261, 263, 264, 267, 270, 273, 274, 282, 283], "local_embed": [26, 27, 282], "local_mm_embed": 23, "local_release_dir": 274, "local_rerank": 61, "localhost": [6, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 48, 49, 55, 56, 61, 62, 63, 66, 67, 68, 70, 72, 73, 74, 75, 92, 97, 109, 110, 111, 112, 113, 114, 116, 117, 121, 123, 124, 125, 130, 131, 132, 133, 139, 140, 141, 142, 149, 150, 160, 161, 162, 164, 166, 167, 172, 178, 179, 180, 184, 185, 186, 187, 188, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 229, 245, 255, 259, 260, 261, 263, 264, 268, 273, 274], "localsegmentmanag": 77, "locat": [45, 58, 89, 198, 225, 238, 254, 270, 282], "loco": 35, "locust": [88, 90, 93, 258], "locustfil": 94, "log": [3, 12, 17, 18, 19, 32, 35, 38, 45, 57, 64, 89, 90, 93, 94, 100, 109, 112, 113, 114, 116, 125, 126, 134, 137, 138, 175, 181, 184, 189, 199, 225, 229, 246, 248, 250, 253, 255, 256, 259, 267, 274, 282, 283], "log_config": 77, "log_level": 229, "log_path": [126, 134, 175, 181, 189], "logan": [236, 240], "logfmt": 225, "logger": 225, "logic": [2, 245, 246, 276, 282, 283], "login": [92, 95, 112, 165, 198, 223, 250, 272, 274], "logist": 35, "logit": 253, "logit_bia": 253, "loglevel": 229, "logo": 254, "logprob": [253, 261], "loki": 250, "long": [35, 112, 183, 184, 191, 198, 199, 225, 238, 241, 253, 254, 267, 282, 284], "longer": [94, 98, 248, 255], "look": [0, 3, 5, 9, 35, 89, 100, 127, 144, 153, 166, 198, 238, 249, 254, 255, 256, 259, 267, 274], "lora": 284, "lora_config": [30, 169], "loss": [225, 273], "lot": 89, "louie": 249, "low": [89, 246, 250, 267], "lower": [238, 253, 267], "lowest": 89, "lr": [254, 256], "lrgb6": 273, "lscpu": 89, "ltaccess": 197, "ltcdv": [226, 270], "ltrim": 254, "lu": 242, "lv": [1, 159, 242, 253], "lvliang": [245, 246, 247], "lvlm": 267, "lvm": [25, 33, 36, 37, 39, 49, 64, 160, 183, 191, 238, 242, 267, 280, 281, 282, 283, 284], "lvm_endpoint": [12, 55, 57, 161, 162, 184, 186, 187], "lvm_model_id": [162, 185, 186, 187, 188], "lvm_service_host_ip": [161, 162, 184, 186, 187], "lvm_service_port": [186, 187], "lx79h": 273, "m": [30, 32, 38, 93, 94, 110, 115, 118, 121, 199, 227, 230, 238, 261, 263, 264, 273, 274, 281, 283], "m4qgq": 230, "m7i": [112, 113, 123, 131, 140, 149, 161, 178, 186], "machin": [20, 23, 24, 45, 48, 74, 77, 93, 98, 107, 115, 118, 126, 134, 143, 175, 181, 189, 194, 198, 227, 250, 260, 261, 263, 264, 267, 274], "maco": 254, "made": [195, 241, 253, 254, 255, 267, 283], "magnitud": 267, "mai": [3, 5, 23, 26, 27, 29, 80, 89, 90, 99, 100, 107, 109, 115, 118, 121, 125, 127, 130, 139, 143, 144, 153, 160, 166, 172, 185, 194, 198, 199, 200, 227, 234, 237, 238, 241, 244, 245, 248, 250, 253, 254, 255, 260, 261, 263, 264, 267, 268, 273], "mail": [234, 237, 243, 276], "main": [11, 13, 16, 17, 23, 40, 54, 57, 88, 94, 109, 112, 115, 121, 122, 130, 131, 132, 133, 134, 161, 162, 184, 190, 194, 198, 199, 202, 204, 227, 238, 241, 253, 254, 255, 261, 263, 264, 267, 270, 273, 282, 283], "mainifest": 282, "maintain": [2, 29, 32, 38, 42, 89, 109, 119, 130, 163, 164, 167, 191, 196, 198, 200, 225, 230, 238, 241, 243, 245, 246, 250, 254, 255, 256, 259, 266, 267, 275, 276, 282], "major": [0, 241, 243, 249, 254, 266, 267], "make": [2, 3, 6, 7, 11, 12, 17, 18, 19, 20, 23, 24, 31, 32, 35, 38, 51, 52, 53, 69, 80, 82, 90, 92, 93, 95, 106, 109, 110, 112, 115, 117, 118, 119, 120, 123, 124, 125, 127, 133, 142, 144, 147, 151, 153, 164, 166, 167, 168, 176, 180, 188, 192, 194, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 225, 226, 227, 228, 230, 231, 234, 237, 238, 241, 245, 246, 250, 253, 254, 255, 259, 260, 261, 263, 264, 270, 273, 274, 276, 280, 281, 282, 283], "makefil": [254, 255], "malia": 99, "malici": 37, "malini": [236, 240, 242], "man": [184, 225], "manag": [7, 48, 51, 52, 53, 58, 59, 80, 82, 88, 93, 112, 113, 115, 123, 124, 131, 140, 147, 149, 161, 164, 165, 178, 184, 186, 190, 192, 194, 195, 196, 198, 202, 222, 226, 228, 229, 230, 240, 241, 242, 245, 250, 258, 259, 260, 261, 263, 264, 266, 267, 270, 272, 273, 274, 276, 277, 282, 283, 284], "mandatori": [230, 267], "mani": [42, 80, 90, 91, 199, 248, 253, 254, 267], "manifest": [89, 91, 97, 106, 117, 125, 127, 133, 142, 143, 144, 151, 153, 166, 168, 180, 188, 199, 225, 226, 228, 232, 238, 247, 261, 270, 273, 279, 280, 281, 282, 283], "manifests_common": 228, "manipul": 37, "manner": [241, 266], "mansdorf": 282, "manual": [67, 70, 72, 73, 74, 178, 179, 195, 197, 199, 222, 223, 228, 267, 273, 274, 282, 283], "manul": 267, "map": [9, 97, 112, 113, 114, 116, 123, 124, 164, 165, 184, 186, 187, 198, 229, 232, 253, 260, 261, 263, 264, 267, 280], "mapper": 198, "mari": [35, 165, 198], "mariadb": [236, 266], "mark": [238, 241, 254, 282], "markdown": [255, 282, 283], "marker": 254, "market": [240, 241, 266, 267, 283], "markewich": [236, 240], "markup": [254, 255], "mask": 36, "mass": 253, "master": [110, 115, 225, 260, 261, 263, 264, 273, 274], "match": [35, 42, 64, 86, 89, 98, 109, 136, 137, 138, 172, 183, 191, 199, 232, 254, 268, 275, 282], "matchexpress": [89, 273], "matchlabel": [223, 273], "materi": [185, 243, 254, 283], "mathemat": 253, "matrix": [194, 222, 234, 268, 280], "matter": [240, 241, 248], "max": [3, 5, 34, 35, 42, 51, 52, 94, 97, 114, 225, 250, 253, 261, 273], "max_input_token": 281, "max_length": 30, "max_length_gener": 122, "max_memory_per_gpu": 122, "max_new_token": [34, 41, 42, 44, 45, 50, 56, 57, 64, 90, 95, 97, 104, 105, 107, 112, 113, 114, 115, 116, 118, 123, 124, 131, 132, 140, 141, 148, 149, 150, 162, 164, 173, 174, 178, 179, 184, 197, 198, 202, 208, 209, 216, 227, 230, 260, 261, 263, 264, 270, 282], "max_num_seq": [51, 52], "max_ord": 98, "max_seq_len_to_captur": [51, 52], "max_token": [45, 48, 49, 50, 51, 52, 53, 104, 105, 106, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 139, 161, 162, 164, 173, 174, 186, 187, 188, 189, 218, 253, 261, 264, 283], "maxcpu": 89, "maxim": [91, 267], "maximum": [57, 90, 91, 98, 117, 223, 225, 253, 254, 267], "mayb": [11, 260, 261, 263, 264], "mb": 225, "mbe_img": 225, "mbm_local_byt": 225, "mbm_total_byt": 225, "mbp": 57, "mbpp": [88, 122], "mccain": 32, "mckai": [236, 240], "md": [11, 13, 16, 17, 201, 206, 225, 238, 241, 244, 247, 251, 254, 255, 281, 282, 283], "mdev": 273, "me": [49, 172, 173, 174, 175], "mean": [51, 52, 89, 94, 97, 98, 115, 177, 183, 200, 230, 253, 254, 259, 267, 274], "meaning": [12, 283], "meanwhil": 143, "measur": [34, 65, 67, 70, 72, 73, 74, 97, 99, 115, 168, 260, 261, 263, 264, 267, 285], "mechan": [198, 250, 254, 267], "med": 94, "media": [237, 241, 267], "medic": 249, "medium": [102, 103], "meet": [20, 23, 24, 35, 58, 94, 110, 123, 124, 163, 191, 194, 234, 241, 248, 249, 250, 266, 267, 268], "mega": [2, 58, 114, 116, 123, 124, 141, 150, 179, 187, 202, 238, 246, 249, 250, 265, 277, 282, 283, 284], "mega_flow": 245, "mega_service_host_ip": [104, 105, 111, 113, 123, 124, 137, 138, 140, 141, 149, 150, 161, 162, 164, 173, 174, 184, 186, 187, 260, 261, 263, 264], "megaflow": 249, "megaservic": [100, 101, 238, 246, 247, 259, 265, 279, 280, 281, 282, 283], "megaserviceendpoint": 245, "megeservic": 122, "mel": 249, "melissa": [236, 240], "mem": 89, "member": [198, 237, 241, 243], "membership": 198, "memori": [23, 26, 27, 51, 52, 74, 89, 117, 223, 238, 244, 250, 252, 266, 267, 270, 283], "memory_bandwidth_exporter_container_ip": 225, "menifest": 281, "mention": [99, 230, 260, 261, 263, 264], "merg": [160, 232, 238, 241, 254, 255], "mermaid": [254, 255], "mesh": [226, 284], "messag": [7, 8, 29, 45, 53, 58, 93, 109, 111, 112, 113, 114, 115, 116, 117, 119, 121, 122, 123, 124, 125, 137, 138, 139, 140, 141, 142, 149, 150, 151, 161, 162, 164, 167, 172, 173, 174, 184, 186, 187, 188, 189, 201, 203, 221, 225, 230, 238, 253, 255, 260, 261, 263, 264, 268, 283], "met": 241, "meta": [30, 34, 42, 45, 50, 51, 52, 53, 95, 99, 100, 115, 121, 123, 124, 125, 149, 150, 151, 156, 164, 191, 203, 208, 227, 248, 260, 261, 263, 264, 267], "metadata": [7, 64, 74, 78, 89, 97, 107, 118, 126, 134, 143, 161, 162, 175, 181, 184, 189, 197, 198, 200, 202, 227, 230, 232, 270, 273], "metal": [234, 267], "meter": 199, "method": [9, 36, 73, 91, 95, 98, 110, 127, 144, 153, 166, 168, 184, 191, 194, 198, 226, 245, 253, 261, 267, 272, 282, 283], "methodologi": [136, 137, 138, 258], "meticul": 172, "metirc": 9, "metric": [82, 88, 90, 95, 97, 168, 199, 200, 201, 214, 215, 216, 225, 242, 245, 248, 250, 258, 259, 260, 263, 264, 267, 280, 281, 282, 283], "metric_output_path": 122, "metrics_path": [92, 259], "mi6": [281, 284], "miami": 35, "michal": 282, "michel": 99, "micro": [109, 121, 130, 139, 172, 223, 225, 246, 249, 254, 265, 276, 280, 281, 282], "micro_servic": [238, 253], "micro_service_nam": 253, "microcervic": [52, 53], "microphon": 249, "microseric": 103, "microserv": [42, 186, 187], "microservi": [42, 223], "microservic": [9, 31, 88, 90, 91, 107, 109, 110, 118, 121, 126, 130, 134, 139, 143, 157, 158, 160, 163, 166, 168, 170, 171, 172, 175, 181, 189, 191, 196, 198, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 219, 221, 227, 238, 242, 244, 246, 247, 248, 250, 253, 258, 265, 267, 275, 279, 280, 281, 282, 283, 284], "microservice_dir": 45, "microservice_replicas_granular": 91, "microservice_replicas_max": 91, "microservice_replicas_min": 91, "microsoft": [2, 102, 191, 267], "mid": 267, "middl": [230, 256, 282], "might": [39, 75, 200, 226, 230, 238, 253, 267, 270, 272], "mileston": 283, "milestone1": 285, "milestone2": 285, "milestone3": 285, "milestone4": 285, "millisecond": 110, "milvu": [9, 267, 277, 280, 281, 282, 283, 284], "milvus_port": [11, 66], "mimic": 172, "min": [94, 267, 273], "minballoon": 89, "mincpu": 89, "mind": 274, "mini": [100, 191, 253], "minifi": 198, "minilm": [2, 284], "minim": [45, 98, 163, 238, 250, 253, 267, 280], "minimum": [89, 91, 136, 198, 230, 238, 267], "minimumreplicasavail": 230, "minio": [236, 266], "minor": [280, 281, 282, 283], "minu": 254, "minut": [35, 99, 109, 115, 125, 186, 187, 255, 261, 263, 264, 273, 274], "mircal": 267, "mircroservic": 12, "mirror": [112, 114], "misbehav": 254, "misc": [1, 87, 159, 193, 282], "miscellan": [238, 244], "mismatch": [115, 282, 283], "miss": [100, 199, 249, 281, 282, 283], "mission": 236, "misspel": 0, "mistak": 237, "mistral": [3, 130, 131, 132, 133, 134, 185, 186, 187, 191, 204, 282, 284], "mistralai": [3, 97, 148], "misus": 196, "mitig": 245, "mix": 160, "mixtral": [97, 148, 267, 284], "mkdir": [3, 12, 91, 95, 97, 200, 255, 270, 273, 274], "mkdtemp": 78, "ml": 282, "mlm": [12, 160, 161, 162], "mlperf": 250, "mm": [161, 162, 244, 251], "mm_embedding_mmei": 23, "mm_embedding_port_microservic": [23, 161, 162], "mm_embedding_service_host_ip": [161, 162], "mm_retriever_service_host_ip": [161, 162], "mmei_embedding_endpoint": [23, 161, 162], "mmlu": [88, 267], "mmr": [66, 67, 68, 72, 74, 96], "mmrag": 283, "mnt": [110, 117, 125, 133, 142, 180, 188, 197, 201, 203, 204, 208, 213, 214, 215, 216, 218, 220, 221, 226, 228], "mobi": 273, "mock": [66, 67, 68, 70, 71, 72, 73, 74, 86, 95, 100, 111, 112, 113, 114, 115, 116, 164, 184, 260, 261, 263, 264], "modal": [23, 24, 283], "mode": [3, 35, 45, 50, 51, 52, 77, 80, 88, 89, 112, 114, 122, 250, 260, 261, 263, 264, 267, 281, 282, 283], "model": [2, 3, 12, 13, 17, 20, 22, 23, 24, 25, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 51, 52, 53, 55, 56, 57, 61, 63, 64, 69, 70, 72, 74, 80, 82, 86, 88, 95, 96, 97, 98, 99, 103, 106, 107, 110, 111, 115, 117, 118, 122, 123, 124, 125, 127, 142, 143, 144, 147, 148, 153, 156, 164, 166, 168, 172, 180, 184, 188, 190, 191, 199, 200, 201, 203, 204, 208, 213, 214, 215, 216, 218, 220, 221, 226, 228, 230, 234, 239, 249, 250, 253, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 279, 281, 282, 283], "model_arg": [54, 88], "model_id": [34, 91, 106, 115, 117, 125, 127, 133, 134, 142, 143, 144, 151, 153, 166, 180, 261, 263, 264], "model_id_or_path": 45, "model_nam": [51, 52, 53, 90, 99, 112, 114], "model_name_or_path": [102, 103, 253], "model_path": [112, 114, 232], "modeldir": [201, 203, 204, 213, 214, 215, 216, 218, 220, 221], "modelfil": 48, "modelnam": [201, 203, 204, 214, 215, 216, 218, 221], "modelscop": [109, 112, 114, 283], "modeltyp": 122, "modelusehostpath": [200, 201, 203, 204, 208, 213, 214, 215, 216, 218, 220, 221, 281], "modelusepvc": 200, "moder": [29, 34, 237], "modern": [121, 163, 191], "modif": [238, 250, 267, 282], "modifi": [7, 32, 48, 57, 80, 89, 94, 108, 109, 110, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 133, 135, 139, 140, 141, 142, 145, 146, 149, 150, 154, 155, 164, 172, 176, 180, 182, 184, 186, 187, 188, 200, 226, 227, 230, 238, 241, 242, 253, 255, 260, 261, 263, 264, 268, 270, 282, 283], "modle_id": 115, "modprob": 273, "modul": [3, 115, 245, 266, 267, 273], "modular": [2, 245, 246, 259, 275, 276], "moment": 96, "monei": [232, 266], "mongo": [8, 29, 60, 164, 166], "mongo_host": [8, 29, 60, 164], "mongo_port": [8, 29, 60, 164], "mongodb": [190, 277], "monitor": [88, 194, 199, 222, 246, 250, 253, 267, 285], "monolith": 245, "month": [98, 241], "montim": 225, "more": [2, 3, 7, 23, 26, 27, 28, 30, 33, 35, 38, 39, 43, 44, 50, 51, 52, 53, 59, 77, 80, 82, 86, 88, 89, 90, 91, 92, 93, 95, 97, 98, 99, 100, 101, 102, 103, 109, 110, 112, 113, 114, 115, 116, 119, 121, 130, 139, 160, 164, 166, 167, 168, 172, 178, 179, 185, 190, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 219, 221, 222, 223, 226, 230, 234, 238, 240, 241, 245, 246, 249, 250, 253, 254, 256, 259, 260, 261, 263, 264, 267, 270, 272, 273, 276, 281, 283, 284], "moreov": [95, 227, 267], "mosec": [277, 280, 281, 282], "mosec_embed": 282, "mosec_embedding_endpoint": [11, 21, 66], "mosec_embedding_host_ip": 21, "mosec_reranking_endpoint": 62, "most": [43, 44, 50, 61, 63, 64, 89, 91, 94, 98, 100, 109, 110, 136, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 160, 164, 168, 172, 191, 200, 202, 221, 243, 248, 253, 254, 259, 260, 261, 263, 264, 267], "mostli": 97, "motiv": [238, 244, 266], "mount": [110, 127, 144, 153, 166, 208, 214, 215, 216, 218, 225, 283], "mount_dir": [226, 228, 234], "mountpath": 232, "move": [89, 238, 241, 254, 260, 261, 263, 264, 267, 268, 283], "mozilla": 237, "mp4": [12, 19, 57, 161, 162, 184, 249], "mpi": 30, "mpnet": 284, "mrr": 97, "mtbench": 267, "mteb": [35, 267], "mteval": 98, "mtl": 248, "much": [238, 254, 261], "multi": [5, 17, 23, 24, 30, 42, 53, 100, 123, 124, 191, 236, 249, 259, 266, 267, 274, 276, 280, 281, 283, 284, 285], "multihop": [281, 282], "multihoprag": 97, "multilingu": 267, "multimod": [17, 25, 55, 56, 67, 160, 184, 185, 191, 249, 277, 283], "multimodal_clip": [24, 184], "multimodal_embed": [161, 162], "multimodal_langchain": [19, 23, 161, 162, 184], "multimodal_retriev": [67, 160, 161, 162], "multimodalqna": 283, "multimodalragqnawithvideo": 283, "multimodalragwithvideo": 283, "multipart": [11, 12, 13, 16, 17, 18, 19, 30, 109, 110, 111, 112, 113, 114, 116, 137, 138, 156, 161, 162, 164, 169, 184, 202, 206, 227, 260, 261, 263, 264], "multipl": [2, 5, 11, 17, 18, 19, 53, 74, 90, 96, 98, 121, 123, 124, 130, 135, 164, 172, 177, 182, 184, 190, 199, 225, 238, 240, 241, 245, 246, 248, 253, 254, 259, 267, 276, 280, 281, 282], "multiplatform": 283, "multitud": 267, "museum": 185, "music": 95, "must": [12, 42, 45, 61, 63, 65, 67, 70, 72, 73, 74, 89, 97, 106, 115, 117, 125, 133, 142, 151, 180, 192, 199, 229, 238, 241, 245, 253, 254, 267, 272], "my": [36, 38, 238, 254, 272], "my_funct": 253, "my_tool": 3, "myclust": 274, "myreleas": 200, "myriad": 266, "myst": [254, 255], "myst_pars": 254, "mytgi": 200, "myth": 86, "myvllm": 218, "n": [32, 38, 49, 50, 51, 78, 88, 89, 90, 98, 107, 115, 118, 126, 130, 131, 132, 133, 134, 143, 162, 175, 181, 189, 197, 198, 199, 202, 204, 223, 225, 226, 227, 228, 230, 232, 234, 238, 246, 247, 248, 250, 253, 256, 260, 261, 263, 264, 270, 284], "n2023": [115, 260, 261, 263, 264], "n_sampl": [88, 122], "na": [2, 115, 260, 261, 263, 264], "name": [2, 3, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 81, 82, 86, 89, 90, 92, 94, 102, 103, 107, 109, 110, 112, 114, 115, 117, 118, 121, 126, 130, 131, 134, 139, 143, 157, 161, 162, 165, 170, 172, 175, 181, 189, 195, 197, 198, 199, 200, 202, 218, 223, 225, 226, 227, 228, 229, 230, 232, 238, 240, 241, 244, 245, 251, 253, 255, 256, 259, 260, 261, 263, 264, 267, 270, 272, 273, 274, 280, 281, 282, 283], "namesapc": 281, "namespac": [89, 107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 199, 225, 226, 227, 228, 229, 230, 232, 270, 273, 274, 280, 281, 282], "namespace_whitelist": 225, "namespacewhitelist": 225, "nani": [115, 260, 261, 263, 264], "narrow": [238, 254], "nathan": [236, 240], "nation": 237, "nativ": [2, 53, 77, 168, 194, 234, 246, 248, 252, 259, 267, 276, 277, 281, 282, 283, 284], "natoutgo": 273, "natur": [20, 97, 98, 119, 147, 164, 167, 185, 190, 191, 237, 248, 249, 254, 267], "nav": 255, "navig": [0, 198, 223, 238, 254], "nbar": 78, "nbaz": 78, "nbootload": 256, "ncash": [115, 260, 261, 263, 264], "nchines": [178, 179, 181], "ncontent": 256, "ndcg": 267, "ndeep": [115, 261, 263, 264], "nderiv": [115, 260, 261, 263, 264], "ndevic": 256, "nearest": 74, "necessari": [8, 29, 45, 48, 60, 98, 106, 119, 151, 164, 166, 167, 197, 222, 238, 240, 241, 250, 254, 260, 261, 263, 264, 267, 268, 273], "necessit": [160, 245], "need": [5, 6, 11, 17, 20, 23, 24, 26, 27, 30, 34, 42, 43, 44, 45, 46, 47, 50, 51, 52, 57, 58, 63, 67, 70, 72, 73, 74, 75, 80, 82, 89, 91, 92, 93, 94, 95, 98, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 130, 131, 132, 133, 134, 139, 140, 141, 142, 148, 149, 150, 151, 157, 158, 160, 161, 162, 163, 164, 166, 168, 170, 171, 174, 178, 179, 180, 184, 185, 186, 187, 188, 191, 194, 196, 197, 198, 199, 203, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 225, 226, 228, 230, 238, 243, 245, 247, 248, 249, 250, 254, 255, 259, 260, 261, 263, 264, 267, 268, 272, 273, 274, 275, 276, 283], "needl": 267, "neighbor": [38, 74], "neither": 98, "nemo": 267, "nenglish": [178, 179, 181], "neo4j": [277, 283, 284], "neo4j_auth": [13, 42, 68], "neo4j_data": 42, "neo4j_endpoint": 42, "neo4j_password": [13, 42, 68], "neo4j_plugin": [13, 68], "neo4j_uri": [13, 68], "neo4j_us": 42, "neo4j_usernam": [13, 42, 68], "neo4jlabs_plugin": 42, "neox": [43, 44, 50], "nequival": [115, 260, 261, 263, 264], "nerdctl": 273, "nerdctl_ver": 273, "nest": 254, "net": [30, 41, 115, 158, 171, 260, 261, 263, 264, 273, 274], "netshoot": 273, "network": [19, 23, 26, 27, 48, 58, 69, 80, 90, 113, 123, 127, 131, 140, 144, 149, 153, 161, 166, 178, 186, 226, 232, 245, 248, 260, 261, 270, 273, 274, 283], "network_mod": 69, "neural": [2, 45, 50, 54, 88, 90, 91, 104, 105, 109, 110, 112, 113, 114, 115, 116, 123, 124, 139, 140, 141, 143, 164, 173, 174, 200, 201, 218, 221, 227, 249, 260, 261, 263, 264, 265], "neuralchat": 191, "neuralspe": 283, "neutral": [32, 266], "never": [89, 94, 199], "nevertheless": 267, "new": [2, 7, 8, 35, 80, 86, 89, 92, 110, 118, 130, 139, 165, 168, 172, 173, 174, 175, 178, 179, 198, 199, 225, 226, 227, 230, 241, 244, 245, 246, 247, 249, 250, 253, 254, 255, 256, 266, 267, 270, 272, 280], "new_arg": 115, "newer": [117, 255, 260, 261, 263, 264], "newli": [91, 238, 255], "newreplicasetavail": 230, "nexport": 255, "next": [92, 94, 95, 110, 115, 156, 184, 185, 191, 198, 201, 203, 238, 250, 254, 260, 261, 263, 264, 267, 282, 283], "nf": [200, 273], "nfd": 202, "nfspv": 200, "nfspvc": 200, "nfunc": [130, 131, 132, 133, 134, 204], "nginx": [133, 201, 203, 204, 221, 238, 242, 274, 282, 283], "nginx_port": [58, 112, 114, 116, 130, 131, 132, 178, 179], "nhello": 253, "ni": [32, 38, 240], "nice": [78, 238], "nick": 240, "nicolaka": 273, "nicpon": 282, "nike": [66, 67, 68, 69, 70, 71, 72, 73, 74, 109, 111, 112, 113, 114, 115, 116, 117, 118, 161, 162, 164, 197, 198, 201, 202, 212, 227, 230, 260, 261, 263, 264, 268, 270], "nil": [229, 267], "nimport": [130, 131, 132, 133, 134, 204], "nist": 267, "nke": [109, 111, 112, 114, 116, 164, 202, 260, 261, 263, 264, 283], "nkernel": 256, "nlabel": 256, "nleft": 256, "nlp": [57, 183, 184, 191], "nltk": [98, 267], "nmai": [115, 260, 261, 263, 264], "nn": 115, "no_proxi": [8, 11, 13, 16, 29, 30, 34, 45, 57, 60, 66, 68, 86, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 127, 130, 131, 132, 139, 140, 141, 143, 144, 149, 150, 153, 158, 160, 161, 162, 164, 166, 171, 172, 178, 179, 184, 185, 186, 187, 200, 260, 261, 263, 264, 268, 273, 280], "no_subtree_check": 200, "no_wrapp": 283, "nobodi": 200, "node": [30, 53, 88, 89, 112, 114, 117, 125, 133, 142, 180, 188, 197, 199, 200, 201, 203, 204, 221, 225, 226, 229, 248, 256, 259, 272, 280, 282, 283, 285], "node0": 89, "node1": [89, 94, 229, 274], "node123": 229, "node2": 89, "node3": 89, "node4": 89, "node5": 89, "node6": 89, "node7": 89, "node_1": 110, "node_2": 110, "node_4": 110, "node_cidr": 273, "node_ip": 197, "node_metr": 225, "node_nam": 225, "node_port": 197, "nodeaddressautodetectionv4": 273, "nodelocaldn": 274, "nodenam": 229, "nodeport": [197, 198, 201, 203, 204, 221, 232], "nodeselector": [117, 273], "noffset": [115, 260, 261, 263, 264], "nogroup": 200, "nohup": [6, 55, 75, 92, 259], "nomic": 35, "nomin": 273, "non": [43, 44, 45, 46, 47, 50, 51, 115, 121, 199, 238, 241, 244, 255, 260, 261, 263, 264, 267, 282], "non_block": 115, "none": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 89, 90, 97, 110, 114, 115, 158, 166, 171, 225, 253, 254, 261, 263, 264, 273, 274], "noproxi": 48, "nor": 98, "norm": [240, 241], "normal": [86, 98, 254, 267, 273, 282], "north": 273, "notat": 254, "note": [3, 5, 6, 11, 12, 13, 16, 17, 25, 29, 35, 48, 51, 52, 69, 80, 88, 89, 91, 93, 95, 97, 99, 106, 107, 111, 112, 113, 114, 115, 117, 118, 122, 123, 124, 125, 133, 140, 141, 142, 143, 149, 150, 151, 161, 162, 164, 178, 179, 180, 184, 186, 187, 188, 191, 194, 198, 199, 200, 202, 218, 223, 226, 227, 228, 230, 234, 238, 250, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 270, 274], "noteworthi": 185, "noth": 112, "notic": [1, 58, 87, 109, 112, 114, 115, 121, 130, 139, 159, 160, 161, 162, 172, 185, 193, 198, 254, 260, 261, 263, 264], "notimplementederror": 245, "notion": 139, "now": [3, 11, 17, 18, 25, 34, 89, 92, 109, 115, 140, 149, 178, 179, 195, 198, 199, 232, 238, 241, 254, 259, 267, 268, 273, 274], "nozzl": 256, "npackag": [130, 131, 132], "npath": 256, "npm": [78, 108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 167, 176, 182], "npx": 6, "nq": 267, "nri": 199, "nright": 256, "nriplugin": 225, "nthe": [115, 260, 261, 263, 264], "nto": [115, 260, 261, 263, 264], "nucleu": 253, "null": [30, 122, 169, 198, 201, 203, 214, 215, 216, 218, 253, 261, 281], "num": [51, 52, 97, 261], "num_card": 91, "numa": 89, "number": [5, 9, 33, 35, 36, 37, 39, 51, 52, 53, 63, 64, 74, 89, 90, 91, 94, 98, 109, 110, 122, 160, 185, 199, 223, 225, 232, 253, 254, 255, 259, 260, 261, 263, 264, 267, 273, 281, 282, 283], "numer": [92, 97, 259], "numpi": 94, "nutrit": 267, "nv": [201, 282, 283, 284], "nvalu": [115, 260, 261, 263, 264], "nvidia": [168, 201, 230, 238, 249, 252, 259, 262, 265, 267, 268, 280, 281, 282, 283], "nvidia_gpu": 238, "o": [2, 3, 78, 89, 93, 107, 118, 126, 134, 143, 161, 162, 175, 181, 189, 197, 198, 199, 202, 223, 227, 230, 232, 234, 250, 256, 270, 273, 283], "oauth": 282, "oauth2": [196, 282], "oauth2_instal": 198, "obama": 99, "object": [45, 156, 191, 199, 238, 244, 253, 261, 267], "oblig": [237, 239], "obserbl": 225, "observ": [3, 17, 202, 225, 252, 255, 267, 283], "obsolet": [115, 260, 263, 264], "obtain": [45, 143, 166, 197, 202, 254], "occasion": [10, 255], "occupi": 6, "occur": [3, 11, 17, 18, 32, 35, 37, 38, 254], "occurr": 64, "och": 98, "oci": [197, 225, 272, 273], "ocr": [11, 16, 17, 18, 19, 282], "odd": 254, "off": [51, 52, 89, 90, 165, 198, 238, 241, 254, 255], "offens": [38, 237], "offer": [2, 31, 34, 45, 65, 67, 70, 72, 73, 74, 109, 110, 121, 160, 168, 196, 238, 245, 246, 250, 254, 259, 266, 267, 268], "offic": 35, "offici": [53, 141, 150, 194, 197, 200, 232, 234, 237, 259, 273, 280, 282], "offlin": [103, 112, 114, 237], "offline_evalu": 103, "offset": [115, 260, 261, 263, 264], "ofir": 267, "oft": 238, "often": [61, 63, 98, 130, 147, 160, 261], "oh": 266, "oidc": [196, 252, 283], "old": [225, 274], "older": [199, 255], "ollama": [111, 190, 280, 281, 282, 283, 284], "ollama_endpoint": [111, 260], "ollama_host": [111, 260], "ollama_model": [111, 260, 282], "omit": [97, 232], "ompi_mca_btl_vader_single_copy_mechan": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 97, 114, 115, 158, 171, 261], "onc": [3, 11, 12, 13, 14, 15, 16, 17, 18, 19, 32, 35, 38, 41, 51, 52, 89, 95, 112, 113, 114, 116, 123, 131, 140, 141, 149, 150, 161, 178, 184, 186, 194, 197, 238, 250, 255, 260, 261, 263, 264, 267, 273], "one": [2, 4, 5, 9, 18, 19, 23, 26, 27, 30, 32, 35, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 63, 67, 70, 72, 73, 74, 80, 89, 92, 95, 98, 109, 112, 113, 114, 123, 124, 130, 131, 140, 143, 149, 156, 160, 161, 168, 169, 178, 185, 186, 187, 190, 191, 198, 199, 200, 201, 203, 204, 221, 227, 230, 231, 238, 241, 245, 246, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 273, 276, 281, 282, 283], "oneccl": 30, "oneccl_bind_pt": 30, "oneccl_bindings_for_pytorch": 30, "oneclick": [280, 284], "ones": [7, 98, 199], "ongo": 3, "ongsoone": 250, "onli": [5, 9, 12, 25, 35, 46, 47, 89, 90, 91, 94, 95, 96, 97, 109, 115, 121, 126, 130, 134, 139, 160, 172, 175, 181, 183, 184, 185, 189, 191, 194, 196, 197, 198, 199, 200, 225, 229, 234, 238, 248, 250, 253, 254, 255, 260, 261, 263, 264, 267, 283], "onlin": [103, 112, 114, 227, 237, 267], "online_evalu": 103, "onprem": 250, "ons": [194, 252], "onto": [48, 239], "oob": 283, "op_1_0320241830": 184, "opanai_api_kei": 100, "opea": [1, 3, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 87, 88, 91, 93, 95, 97, 100, 101, 103, 104, 105, 107, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 143, 149, 150, 157, 158, 159, 161, 162, 163, 164, 170, 171, 172, 173, 174, 177, 178, 179, 180, 184, 185, 186, 187, 188, 190, 191, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 228, 232, 238, 240, 244, 245, 251, 252, 254, 257, 258, 259, 260, 261, 263, 264, 270, 274, 277, 278], "opea_genaicomps_root": 45, "opea_image_repo": 200, "opea_index_retriev": 3, "opea_mega_servic": [91, 245], "opea_micro_servic": [91, 245], "opea_rag_queri": 3, "opea_release_data": 283, "opea_servic": [2, 51], "opea_telemetri": 9, "opeadev": 236, "open": [2, 3, 25, 33, 35, 36, 37, 39, 42, 43, 44, 48, 49, 50, 53, 56, 58, 77, 88, 90, 92, 94, 95, 100, 109, 111, 112, 113, 114, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 160, 161, 163, 164, 166, 167, 168, 172, 178, 179, 180, 184, 185, 186, 187, 188, 191, 196, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 236, 237, 238, 240, 241, 242, 246, 250, 255, 259, 260, 261, 263, 264, 272, 276, 282, 283, 284], "open_t": 78, "openai": [2, 3, 13, 22, 30, 50, 51, 52, 53, 78, 96, 100, 102, 103, 183, 184, 191, 220, 238, 253, 261, 267, 282, 283], "openai_api_kei": [3, 100], "openai_kei": 13, "openaiembed": 78, "opencodeinterpret": 121, "opencontain": 273, "opencv": 254, "openeb": 202, "openid": [196, 197, 198], "openrag": 267, "openshift": [259, 262, 282, 283, 284], "opentelemetri": [9, 248, 250], "opentelemetrycli": 77, "openvino": [231, 232, 248, 280, 282], "openvino_model": 232, "openvino_token": 232, "oper": [45, 46, 47, 58, 65, 67, 70, 72, 73, 74, 89, 91, 107, 115, 118, 121, 122, 123, 124, 125, 143, 168, 172, 183, 184, 191, 194, 196, 199, 202, 203, 223, 225, 227, 232, 247, 250, 252, 259, 260, 261, 263, 264, 267, 273, 274, 279, 282], "opinion": 237, "oplu": 254, "opportun": [98, 267], "opt": [199, 218, 225, 248, 273, 280, 283], "optim": [20, 23, 24, 38, 42, 46, 47, 51, 52, 58, 61, 63, 95, 110, 112, 113, 140, 149, 160, 161, 172, 178, 183, 186, 190, 238, 250, 258, 259, 266, 280, 281, 282, 283, 285], "optimum": [6, 46, 47, 55, 75, 88, 232], "option": [4, 36, 49, 51, 52, 88, 89, 90, 92, 93, 100, 111, 127, 131, 144, 153, 161, 166, 168, 178, 179, 186, 190, 196, 197, 198, 199, 201, 203, 204, 221, 238, 252, 253, 254, 256, 259, 265, 267, 268, 274, 277, 280, 281, 282, 283], "oracl": 284, "orang": [98, 254], "orchestr": [2, 91, 202, 238, 241, 245, 246, 259, 267, 276, 279, 280, 281, 282], "orchestrator_with_yaml": 238, "order": [34, 43, 44, 45, 46, 47, 50, 61, 63, 98, 110, 254, 260, 261, 263, 264, 267, 274], "org": [30, 98, 161, 162, 186, 187, 188, 189, 197, 237, 241, 254, 282], "organ": [17, 18, 34, 147, 194, 196, 236, 241, 243, 255], "organiz": 254, "orgniz": 247, "orient": 237, "origin": [35, 95, 98, 130, 165, 172, 190, 191, 195, 238, 241, 254, 255], "oss": [92, 259, 267], "otel": 250, "other": [6, 9, 30, 32, 34, 35, 42, 53, 58, 65, 67, 70, 72, 73, 74, 89, 90, 91, 94, 95, 99, 100, 109, 112, 114, 115, 116, 121, 130, 131, 132, 139, 140, 141, 143, 147, 149, 150, 151, 160, 168, 172, 177, 178, 179, 184, 185, 190, 191, 197, 198, 199, 223, 225, 229, 231, 237, 238, 239, 240, 241, 244, 246, 250, 254, 255, 259, 265, 267, 268, 273, 274, 280, 281, 282, 283, 284], "other_kei": [64, 184], "otherwis": [3, 6, 9, 12, 117, 123, 124, 125, 133, 142, 180, 188, 198, 199, 201, 203, 237, 238, 241, 259, 274], "oti": 232, "ought": 226, "ouput": 248, "our": [0, 32, 35, 58, 91, 95, 110, 111, 115, 122, 147, 163, 191, 198, 230, 253, 254, 255, 261, 263, 264, 266, 273], "out": [9, 36, 89, 91, 110, 115, 161, 162, 225, 232, 236, 238, 243, 245, 248, 250, 254, 255, 259, 260, 261, 263, 264, 266, 267, 274, 282, 283], "outbound": [241, 254], "outlin": [104, 105, 107, 111, 112, 113, 114, 116, 118, 123, 124, 126, 131, 132, 134, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 165, 166, 170, 171, 173, 174, 175, 178, 179, 181, 184, 186, 187, 189, 227, 245, 250, 266], "output": [3, 4, 6, 9, 31, 32, 33, 34, 38, 39, 42, 45, 51, 55, 56, 89, 90, 94, 97, 100, 110, 114, 115, 123, 124, 137, 138, 139, 148, 156, 184, 185, 190, 191, 199, 201, 202, 203, 204, 221, 225, 238, 241, 248, 249, 253, 254, 255, 256, 260, 261, 263, 264, 267, 273, 274, 281, 282, 283], "output_datatyp": [2, 245], "output_dir": 97, "output_fil": 93, "outsid": [123, 124, 198, 254], "outstand": 267, "over": [2, 5, 35, 88, 91, 94, 95, 98, 198, 241, 245, 246, 266, 274, 276], "overal": [2, 42, 45, 61, 63, 65, 67, 70, 72, 73, 74, 98, 115, 191, 198, 237, 244, 245, 249, 260, 261, 263, 264, 267], "overhead": [248, 283], "overlai": 273, "overlap": 98, "overlin": 254, "overrid": 255, "override_system_hostnam": 274, "oversight": [240, 241], "overview": [89, 168, 198], "overwrit": [199, 280], "ovm": 284, "owasp": 267, "owid": 273, "own": [45, 67, 70, 72, 73, 74, 89, 95, 123, 124, 168, 194, 198, 200, 208, 209, 226, 228, 234, 241, 242, 243, 246, 249, 250, 252, 254, 259, 267], "owner": [238, 241, 243, 282, 283], "ownership": 274, "p": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 81, 83, 84, 85, 86, 88, 97, 100, 103, 112, 114, 115, 121, 157, 158, 170, 171, 200, 210, 225, 226, 230, 250, 260, 261, 263, 264, 270, 273, 274], "p50": [94, 110, 283], "p90": [110, 282, 283], "p99": [94, 110, 283], "pace": 266, "pack": 89, "packag": [6, 34, 44, 45, 48, 50, 61, 63, 67, 70, 72, 73, 74, 89, 90, 93, 111, 112, 113, 115, 130, 131, 132, 133, 134, 140, 162, 164, 184, 186, 192, 204, 239, 250, 254, 267, 273, 274], "packet": 273, "pad": [30, 260, 261, 263, 264], "page": [86, 93, 98, 112, 114, 139, 172, 222, 238, 244, 251, 254, 255, 256, 267, 283], "page_cont": 78, "pagedattent": [51, 52, 53], "pai": 274, "pair": [23, 95, 156, 191, 274], "pandei": 242, "pane": [165, 198, 267], "panel": [92, 255, 259], "panic": 229, "paper": [3, 139], "papineni": 98, "papineni02bleu": 98, "paragraph": [254, 282], "parallel": [3, 17, 51, 52, 172, 194, 225, 226, 238, 259, 261, 270], "parallel_numb": [51, 52, 53], "param": [38, 90, 115, 282], "param_appli": 115, "paramet": [34, 36, 41, 42, 44, 45, 48, 50, 51, 52, 53, 58, 63, 66, 67, 68, 72, 74, 79, 88, 89, 90, 94, 95, 96, 98, 99, 104, 105, 107, 110, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 140, 141, 148, 149, 150, 162, 164, 173, 174, 178, 179, 197, 198, 202, 208, 216, 227, 230, 245, 250, 254, 258, 260, 261, 263, 264, 267, 270, 274, 280, 281, 282, 283], "parameter_nam": 253, "parametr": 5, "paraphras": 284, "parent": [11, 14, 17, 112, 114, 255], "pars": [13, 35, 80, 254], "parser": [254, 255], "parseunstructur": 80, "part": [2, 42, 95, 168, 178, 179, 184, 190, 198, 230, 254, 255, 261, 266, 267, 283], "parti": [1, 11, 17, 18, 159, 238, 267], "partial": 253, "particip": [237, 238, 241], "particular": [7, 32, 95, 107, 118, 143, 160, 227, 238, 253, 267], "particularli": [65, 67, 70, 72, 73, 74, 91, 245, 254, 267], "partner": [241, 267], "pass": [9, 11, 35, 51, 52, 53, 96, 102, 122, 195, 200, 214, 215, 216, 218, 238, 253, 259, 260, 261, 263, 264, 267], "passag": 33, "passage_max_len": 30, "password": [13, 35, 68, 92, 165, 197, 198, 223, 259, 272, 274], "past": [145, 146, 154, 155, 164, 167, 190], "pat": 6, "patch": [89, 198, 232, 267, 283], "patch32": [183, 184, 191], "patchruntimeconfig": 89, "path": [3, 11, 12, 14, 15, 17, 18, 19, 30, 79, 93, 111, 112, 113, 114, 116, 164, 197, 198, 200, 208, 214, 215, 216, 218, 225, 226, 228, 234, 242, 249, 254, 255, 260, 261, 263, 264, 267, 280, 281, 282, 283], "path_to_comp": [12, 13, 16, 17, 18, 19], "pathwai": [277, 283], "pathway_host": [69, 80], "pathway_port": [69, 80], "patronu": 35, "pattern": [51, 52, 90, 121, 237, 244, 251], "payload": [11, 17, 18, 35], "paymentservic": 42, "pc": [111, 238, 259, 260, 262, 267, 281, 284], "pdf": [11, 13, 16, 17, 18, 109, 111, 112, 113, 114, 116, 139, 164, 202, 260, 261, 263, 264, 267, 283], "pdf2imag": 282, "pea": 266, "pear": 254, "peft": 283, "peft_model": 122, "pem": 198, "penal": 253, "penalti": 98, "pend": 279, "peopl": 237, "per": [53, 89, 90, 94, 95, 110, 112, 114, 116, 123, 124, 140, 141, 149, 150, 241, 250, 253, 254, 255, 259, 260, 261, 263, 264, 267, 282, 283], "percent": 241, "percentil": [9, 94], "perf": [267, 280], "perfect": 266, "perform": [2, 3, 5, 17, 20, 23, 24, 30, 32, 35, 38, 43, 44, 45, 46, 47, 50, 88, 89, 90, 91, 93, 94, 100, 102, 109, 110, 113, 121, 130, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 160, 161, 164, 168, 177, 178, 183, 184, 186, 191, 196, 199, 221, 236, 238, 241, 244, 245, 246, 250, 258, 259, 260, 261, 263, 264, 266, 274, 275, 276, 280, 281, 282, 283], "perhap": [118, 227, 238], "period": [237, 267], "perm": 254, "permiss": [45, 195, 198, 226, 237, 270, 272], "permit": 241, "persist": [7, 28, 59, 78, 125, 197, 267, 281], "persistentvolum": [197, 200], "persistentvolumeclaim": 200, "persistentvolumereclaimpolici": 200, "person": [31, 35, 36, 57, 163, 184, 232, 237, 241, 255, 270], "personnel": 196, "perspect": [96, 248, 250, 267], "pertain": [197, 241], "pertin": [61, 63, 109, 136, 137, 138, 160, 191, 259], "peteryang12": 234, "pg16": [70, 81], "pg_connection_str": [14, 70], "pgvector": [70, 277, 280, 281, 282, 284], "phase": [64, 160, 250, 267], "phi": [45, 50, 284], "philosophi": [238, 244, 246], "phoenix": 267, "phone": [35, 36, 254], "phrase": [32, 182, 254, 261], "physic": [89, 237], "physical_package_id": 89, "pick": [35, 253], "pictur": [162, 254, 283], "pid": 225, "piec": 35, "pieplin": 103, "pii": [25, 31, 33, 37, 39, 49, 56, 190, 232, 248, 277, 280, 282], "pii_detect": [35, 36], "piidetect": 35, "pilot": [231, 232], "pincpu": 89, "pinecon": [267, 277, 280, 282, 284], "pinecone_api_kei": 15, "pinecone_index_nam": 15, "ping": [210, 273], "pinmemori": 89, "pip": [2, 3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 51, 52, 54, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 88, 90, 93, 94, 97, 103, 110, 122, 255, 274, 283], "pip3": [93, 255], "pip_depend": 3, "pipelein": 238, "pipelin": [89, 91, 97, 104, 105, 109, 111, 112, 113, 114, 116, 123, 124, 131, 132, 140, 141, 149, 150, 161, 162, 164, 166, 173, 174, 178, 179, 183, 184, 186, 187, 191, 194, 226, 229, 232, 238, 245, 246, 249, 259, 260, 261, 263, 264, 266, 281, 282, 283, 284], "pkg": 273, "place": [34, 121, 122, 123, 124, 125, 127, 135, 144, 153, 166, 203, 254, 266, 268], "placehold": [35, 36, 259], "placement": 256, "plai": [65, 67, 70, 72, 73, 74, 191, 201, 203, 204, 221, 267], "plaid": 267, "plain_text": 93, "plan": [3, 34, 100, 184, 238, 244, 245, 267, 273, 277], "plan_execut": 3, "plan_executor": 4, "plane": [110, 273, 274], "planner": [4, 246], "platform": [2, 3, 48, 51, 52, 53, 116, 121, 130, 163, 168, 177, 225, 234, 236, 240, 248, 249, 250, 258, 259, 262, 265, 266, 276, 279, 281, 282, 283], "playbook": [250, 274], "playground": [250, 284], "pleas": [2, 3, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 28, 35, 41, 50, 51, 52, 53, 57, 59, 65, 66, 71, 76, 79, 91, 92, 93, 95, 96, 97, 99, 100, 101, 102, 103, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 122, 123, 124, 130, 131, 132, 134, 140, 141, 148, 149, 150, 161, 162, 164, 166, 168, 181, 183, 186, 187, 189, 190, 196, 198, 200, 201, 202, 205, 206, 207, 208, 209, 211, 217, 219, 222, 223, 228, 230, 231, 232, 238, 241, 255, 260, 261, 263, 264, 270, 273, 274], "plu": 254, "pluggabl": [94, 267], "plugin": [13, 68, 194, 196, 222, 225, 234, 273, 274, 282], "plugin_config_path": 225, "plugin_path": 225, "plusminu": 254, "png": [23, 40, 161, 162, 254, 267, 283], "poc": 267, "pod": [89, 91, 106, 107, 110, 117, 118, 125, 126, 127, 133, 134, 142, 143, 144, 151, 153, 166, 175, 180, 181, 188, 189, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 225, 226, 227, 228, 230, 232, 250, 270, 273, 274, 280, 281, 283], "pod_cidr": 273, "podantiaffin": 273, "podnetwork": 273, "point": [2, 32, 48, 92, 107, 109, 115, 118, 119, 123, 124, 126, 134, 136, 137, 138, 143, 164, 167, 175, 181, 189, 190, 227, 238, 245, 246, 254, 255, 259, 260, 264, 266, 267, 276], "poison": [38, 248], "poisson": 90, "polici": [2, 88, 168, 194, 196, 198, 199, 240, 267], "polit": 237, "politician": 32, "pong": 210, "pool": 89, "poppler": [11, 13, 16, 17, 18, 19], "popul": 267, "popular": [43, 44, 50, 88, 95, 97, 127, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 164, 166, 221, 246, 248, 254, 258, 261, 267], "port": [2, 6, 9, 45, 51, 52, 53, 58, 69, 74, 77, 94, 109, 110, 113, 115, 117, 121, 123, 124, 125, 130, 133, 139, 140, 141, 142, 149, 150, 151, 160, 161, 164, 166, 172, 180, 185, 186, 187, 188, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 232, 245, 259, 260, 261, 263, 264, 274, 281, 282, 283], "port_numb": [45, 51, 52, 53], "portnumb": 232, "portugues": 267, "pose": [185, 245], "posit": [237, 241, 253], "possess": [121, 160, 198], "possibl": [0, 2, 89, 98, 168, 238, 244, 250, 254, 267, 273], "post": [3, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 86, 94, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 137, 138, 139, 140, 141, 143, 148, 149, 150, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 181, 184, 189, 197, 198, 202, 206, 207, 208, 209, 211, 212, 214, 215, 216, 219, 227, 230, 236, 237, 245, 249, 253, 255, 260, 261, 263, 264, 267, 270], "post_process_faq": 148, "postfix": [260, 261, 263, 264], "postgr": [70, 81], "postgres_db": [70, 81], "postgres_host_auth_method": [70, 81], "postgres_password": [70, 81], "postgres_us": [70, 81], "postgresql": [14, 70, 197], "postgress": 197, "posthog": 77, "postprocess": 122, "potent": [61, 63], "potenti": [2, 3, 61, 63, 121, 168, 241, 245, 248, 266, 267, 282, 283], "power": [51, 52, 89, 109, 113, 147, 161, 163, 168, 190, 191, 196, 232, 248, 249, 250, 259], "pr": [238, 242, 244, 249, 282, 283], "practic": [91, 95, 267, 268], "practis": 4, "pre": [3, 48, 111, 200, 228, 230, 234, 238, 250, 267, 283], "prebuilt": [143, 253], "preced": 254, "precis": [51, 52, 65, 67, 70, 72, 73, 74, 98, 122, 172, 267, 281], "predefin": [96, 229, 245], "predict": [35, 89, 98, 156, 191, 277, 283], "predictionguard": [25, 33, 36, 37, 39, 56], "predictionguard_api_kei": [25, 33, 36, 37, 39, 49, 56, 283], "predownload": [201, 203, 204, 214, 215, 216, 218, 221], "preethi": 242, "preethivenkatesh": 242, "prefer": [12, 59, 69, 112, 113, 114, 116, 123, 124, 164, 184, 186, 187, 190, 253, 254, 260, 261, 263, 264, 267], "prefernewballoon": 89, "prefil": [51, 52], "prefix": [51, 52, 78, 122, 199, 232, 267, 283], "prem": [226, 267, 270, 284], "premi": 246, "premis": [259, 267], "premise": 238, "prep": [17, 89, 161, 162, 201, 202, 230, 252, 260, 261, 263, 264, 281, 282, 283, 284], "prepaid": [115, 260, 261, 263, 264], "prepar": [57, 64, 137, 138, 140, 149, 184, 194, 226, 230, 234, 279, 283], "prepare_doc_": [115, 260, 261, 263, 264], "prepare_doc_milvu": 11, "prepare_doc_neo4j": 13, "prepare_doc_pgvector": 14, "prepare_doc_pinecon": 15, "prepare_doc_qdr": 16, "prepare_doc_redi": 17, "prepare_doc_redis_on_rai": [17, 18], "prepare_doc_vdm": 18, "prepare_videodoc_redi": 12, "preprocess": [10, 20, 23, 24, 95, 267], "preprocess_data": 95, "prerequisit": [42, 45, 270], "presence_penalti": [50, 51, 53, 112, 114, 253, 283], "present": [115, 121, 147, 172, 185, 238, 241, 246, 248, 249, 253, 254, 256, 260, 261, 263, 264, 267], "preserv": 89, "presid": [99, 241], "press": [77, 236, 255, 267], "pressur": 135, "presupposit": 32, "pretrain": [54, 88, 98, 283], "preval": 267, "prevent": [34, 39, 89, 190, 196, 198, 199, 225, 241, 267], "previou": [37, 110, 119, 123, 124, 164, 167, 195, 254, 255, 267, 273, 274, 278], "previous": [273, 274], "primari": [34, 90, 110, 168, 241, 266, 267], "primarili": [65, 67, 70, 72, 73, 74, 191], "princip": [236, 240, 272], "prinicip": [236, 240], "print": [3, 6, 9, 11, 12, 17, 18, 19, 23, 30, 32, 35, 38, 40, 45, 55, 57, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 78, 86, 93, 95, 98, 99, 101, 104, 105, 111, 112, 113, 114, 115, 116, 160, 161, 162, 164, 173, 174, 184, 212, 219, 260, 261, 263, 264, 281, 283], "print_hello_world": [126, 164], "printf": 255, "println": [130, 131, 132, 133, 134, 204], "prior": [91, 172, 241, 253], "priorit": 172, "privaci": [237, 267], "privat": [36, 107, 118, 143, 227, 237], "privileg": [198, 225, 267], "pro": [49, 238, 244, 245, 267], "proactiv": [190, 259], "probabl": 253, "probe": [199, 250, 281, 282], "problem": [3, 199, 238, 244, 254, 255, 283], "problemat": 238, "proc": 89, "proce": [107, 112, 113, 118, 123, 127, 131, 140, 143, 144, 149, 153, 161, 166, 178, 186, 222, 227, 260, 261, 264], "procedur": 241, "proceed": [98, 127, 144, 153, 166, 198], "process": [2, 3, 11, 13, 16, 17, 18, 19, 20, 23, 24, 34, 45, 53, 61, 63, 77, 80, 86, 89, 90, 91, 95, 97, 104, 105, 107, 111, 112, 113, 114, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 140, 141, 143, 147, 148, 149, 150, 156, 157, 158, 161, 162, 164, 168, 169, 170, 171, 173, 174, 175, 178, 179, 181, 183, 184, 186, 187, 189, 191, 196, 198, 199, 223, 225, 227, 238, 240, 241, 242, 249, 250, 253, 254, 255, 259, 260, 261, 263, 264, 265, 266, 267, 275, 276, 280, 282], "process_": 225, "process_crud_dataset": [91, 97], "process_resident_memory_byt": 223, "process_start_time_second": 223, "process_t": [11, 13, 16, 17], "process_virtual_memory_byt": 223, "process_virtual_memory_max_byt": 223, "processor": [44, 102, 109, 112, 113, 121, 123, 130, 131, 139, 147, 160, 161, 172, 177, 178, 183, 185, 186, 191, 259, 262, 265, 267, 268], "produc": [145, 146, 154, 155, 164, 167, 255], "product": [2, 34, 35, 74, 77, 114, 121, 160, 166, 185, 191, 200, 240, 250, 259, 265, 267, 276], "productivity_suite_reactui": 166, "productivitysuit": [164, 165, 168, 242, 282, 283], "profession": [98, 237, 241, 267], "profil": 93, "program": [1, 121, 123, 124, 130, 159, 190, 191, 200, 266, 267], "programm": [121, 123, 124], "progress": [11, 13, 16, 17, 199, 230, 249, 253, 259, 267], "project": [1, 2, 3, 11, 13, 16, 17, 35, 45, 54, 82, 87, 88, 89, 93, 95, 97, 100, 101, 103, 104, 105, 109, 110, 111, 112, 113, 114, 116, 121, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 159, 160, 161, 162, 164, 170, 171, 173, 174, 178, 179, 183, 184, 186, 187, 190, 193, 195, 198, 200, 202, 223, 226, 227, 238, 239, 240, 244, 247, 249, 250, 251, 254, 255, 260, 261, 263, 264, 268, 270, 281, 282, 283, 285], "projectcalico": 273, "prom": [199, 223], "prom_n": 199, "prom_svc": 199, "prom_url": 199, "prometheu": [9, 88, 225, 248, 250, 258, 280, 282], "prometheusadapt": 199, "prometheusexport": 89, "prometheusreleas": 199, "prometheusspec": 199, "promethu": 225, "promhttp_": 225, "promhttp_metric_handler_requests_in_flight": 223, "promhttp_metric_handler_requests_tot": 223, "promis": [266, 267], "promot": [2, 195, 241, 245, 246, 250, 259, 274, 276], "prompt": [25, 33, 36, 39, 45, 48, 49, 51, 52, 55, 56, 57, 64, 86, 90, 111, 112, 114, 115, 122, 161, 162, 166, 172, 183, 184, 186, 187, 190, 191, 218, 236, 248, 249, 250, 255, 259, 260, 261, 263, 264, 266, 267, 274, 276, 277, 281, 282, 283, 284], "prompt_collection_nam": 164, "prompt_id": [60, 164], "prompt_inject": 37, "prompt_registri": [60, 164, 238, 242, 282], "prompt_service_create_endpoint": 164, "prompt_service_get_endpoint": 164, "prompt_text": [60, 164], "prompt_token": [253, 261], "promptli": [34, 237], "promptregistri": [60, 164], "proper": [223, 226, 238, 270], "properli": [6, 95, 122, 123, 124, 202], "properti": 196, "propos": [240, 241, 244, 276], "proposit": 32, "proprietari": [5, 267], "prospect": 267, "protect": [34, 196, 198, 248, 267, 283], "proto": [58, 238], "protocol": [90, 94, 112, 113, 123, 131, 140, 149, 161, 178, 186, 197, 198, 232, 238, 248], "prototyp": 109, "provid": [2, 4, 7, 8, 9, 12, 17, 18, 19, 20, 23, 24, 25, 26, 27, 29, 31, 33, 35, 36, 37, 39, 40, 42, 45, 48, 49, 51, 52, 53, 56, 58, 60, 61, 63, 65, 67, 70, 72, 73, 74, 76, 82, 88, 89, 90, 91, 92, 95, 96, 100, 109, 110, 115, 121, 122, 123, 124, 127, 130, 139, 140, 141, 144, 149, 150, 151, 153, 160, 163, 164, 165, 168, 177, 182, 183, 184, 190, 191, 194, 196, 199, 200, 201, 214, 215, 216, 222, 223, 225, 226, 230, 234, 236, 237, 238, 241, 245, 246, 248, 249, 250, 252, 253, 254, 255, 258, 259, 260, 261, 263, 264, 266, 267, 268, 270, 276, 282, 283], "proviintegr": 283, "provis": [91, 230], "proxi": [11, 17, 18, 32, 35, 38, 48, 58, 77, 109, 110, 112, 114, 116, 121, 127, 130, 131, 132, 139, 143, 144, 153, 160, 166, 172, 178, 179, 185, 194, 196, 200, 232, 248, 260, 261, 263, 264, 268, 273, 282, 283], "proxy_add_x_forwarded_for": 58, "proxy_pass": 58, "proxy_set_head": 58, "proxyv2": 231, "prune": 110, "psycopg2": [14, 70], "pt_hpu_enable_lazy_collect": 97, "pub": 274, "public": [104, 105, 107, 111, 112, 113, 114, 118, 123, 124, 143, 161, 162, 164, 173, 174, 184, 186, 190, 202, 226, 227, 237, 238, 241, 243, 255, 270, 272, 274, 284], "publicli": [241, 267], "publish": [42, 97, 98, 107, 112, 113, 114, 116, 118, 123, 124, 126, 131, 132, 134, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 170, 171, 174, 175, 178, 179, 181, 184, 186, 187, 189, 197, 226, 227, 237, 238, 241, 254, 261, 266, 267, 270, 275, 282, 283], "pull": [17, 26, 27, 34, 42, 48, 63, 69, 70, 72, 74, 81, 83, 84, 85, 86, 109, 112, 114, 116, 121, 130, 139, 162, 172, 178, 179, 192, 241, 242, 250, 256, 268, 270], "pull_request_target": 282, "pump": 256, "punctuat": [254, 282], "pure": 89, "purg": 273, "purpl": 267, "purpos": [30, 35, 156, 160, 169, 190, 194, 229, 241, 250, 267], "push": [2, 168, 195, 225, 238, 255, 260, 261, 263, 264, 267, 270, 272, 280, 281, 283], "put": [95, 148, 200, 229, 241, 247, 254, 256], "pv": [200, 282], "pvc": 200, "pw": 80, "pwd": [12, 13, 34, 42, 45, 63, 68, 70, 72, 74, 83, 86, 107, 118, 143, 198, 226, 227, 230, 270], "px": 254, "py": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 51, 52, 54, 55, 56, 57, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 80, 88, 90, 91, 94, 95, 96, 97, 103, 104, 105, 110, 111, 112, 113, 114, 115, 116, 122, 123, 124, 140, 141, 148, 149, 150, 161, 162, 173, 174, 178, 179, 184, 186, 187, 198, 238, 247, 255, 260, 261, 263, 264, 281, 282, 283], "pygment": 254, "pymarkdownlnt": 255, "pypi": [2, 88], "pyspark": 280, "python": [22, 54, 57, 69, 75, 78, 86, 88, 90, 91, 93, 94, 96, 97, 100, 103, 104, 105, 107, 110, 111, 112, 113, 114, 115, 116, 118, 122, 123, 124, 126, 130, 131, 132, 133, 134, 140, 141, 143, 148, 149, 150, 161, 162, 164, 168, 173, 174, 175, 178, 179, 181, 184, 186, 187, 189, 198, 204, 219, 227, 230, 238, 253, 254, 255, 260, 261, 263, 264, 270, 274, 277, 280, 281, 283], "python3": [51, 52, 91, 93, 95, 110, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 198, 212, 255, 260, 261, 263, 264, 274], "pythonpath": [12, 13, 16, 17, 18, 19], "pytorch": [30, 46, 47], "q": [55, 56, 57, 64, 190, 267, 279], "q1": 35, "q2": 267, "q5gmm": 273, "qa": [97, 148, 172, 191, 267], "qdrant": [2, 190, 191, 236, 265, 266, 267, 277, 279, 281, 282, 284], "qdrant_host": [16, 71, 113], "qdrant_port": [16, 71, 113], "qdrant_storag": 83, "qna": [102, 103, 172, 191, 250, 258, 280], "qo": [89, 273], "qualiti": [2, 5, 13, 20, 23, 24, 65, 67, 70, 72, 73, 74, 95, 98, 100, 172, 191, 238, 249, 267, 276], "quantifi": 110, "quantiz": 267, "queri": [3, 4, 5, 32, 38, 41, 43, 44, 45, 46, 47, 48, 49, 50, 61, 63, 64, 69, 95, 96, 97, 100, 101, 102, 104, 105, 110, 111, 112, 113, 114, 115, 116, 123, 124, 126, 131, 136, 137, 138, 139, 140, 141, 143, 147, 149, 150, 164, 172, 173, 174, 178, 179, 181, 183, 184, 190, 191, 199, 202, 209, 215, 245, 249, 253, 259, 260, 261, 263, 264, 267, 282], "query_max_len": 30, "query_timeout": 90, "querywrit": 5, "question": [3, 42, 50, 51, 55, 56, 95, 99, 102, 103, 115, 119, 123, 124, 139, 147, 160, 161, 162, 163, 164, 167, 172, 189, 190, 191, 198, 200, 202, 237, 238, 242, 249, 260, 261, 263, 264, 265, 267, 281], "question_answ": 97, "question_typ": 95, "queue": 223, "queue_size_embedding_rerank_tgi": 223, "quick": [20, 23, 24, 42, 82, 168, 243, 252, 254, 260, 261, 263, 264, 272, 283], "quicker": [241, 276], "quickli": [109, 163, 191, 246, 259], "quickstar": 238, "quickstart": [82, 238], "quirk": 254, "quit": 77, "quorum": 241, "quot": [254, 282, 283], "quotaenforc": 77, "qwen": [46, 47, 97, 121, 122], "qwen2": [46, 47, 97, 191, 280, 281], "r": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 88, 90, 91, 93, 97, 103, 109, 110, 112, 113, 114, 115, 116, 122, 197, 198, 255, 256, 261, 263, 264, 273, 274], "ra": 267, "rabbit": 162, "race": [32, 237], "rachel": 242, "rag": [2, 3, 19, 25, 32, 38, 61, 86, 89, 91, 95, 100, 110, 111, 113, 118, 136, 137, 138, 160, 161, 162, 163, 164, 183, 190, 191, 194, 200, 202, 231, 232, 245, 246, 249, 250, 258, 259, 260, 261, 263, 264, 266, 276, 277, 279, 280, 281, 283, 284, 285], "rag_ag": 3, "rag_ev": [91, 97, 283], "rag_gatewai": 245, "rag_port": 245, "rag_rerank": 253, "rag_retriev": 253, "rag_servic": 245, "raga": [95, 238, 242, 258, 267, 280, 283, 284], "ragag": 283, "ragagentdocgrad": 282, "ragas_evaluation_benchmark": 96, "ragas_metr": [97, 99], "ragasmetr": [99, 280], "rai": [2, 17, 18, 42, 137, 190, 247, 252, 267, 277, 279, 280, 281, 282, 284], "rais": [3, 11, 17, 18, 32, 35, 38, 90, 121, 122, 123, 124, 125, 203, 245, 282], "raise_for_statu": [3, 11, 17, 18, 32, 35, 38], "ramasethu": 282, "ran": 238, "rancher": 273, "random": [29, 36, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 90, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 212, 219, 253, 260, 261, 263, 264, 282], "random_prompt": 90, "rang": [66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 98, 111, 112, 113, 114, 115, 116, 161, 162, 164, 168, 172, 173, 174, 184, 196, 212, 219, 260, 261, 263, 264, 265, 266, 267, 268, 282], "rank": [64, 69, 115, 259, 266, 267, 282], "rankdir": 256, "ranker": [259, 267], "rapid": [117, 131, 266], "rapidli": [65, 67, 70, 72, 73, 74, 266, 267], "rare": 199, "rarr": 254, "rate": [2, 3, 29, 90, 94, 98, 103, 245, 246, 249, 267, 276], "rather": [64, 250, 255, 267], "ratio": [89, 98, 267], "raw": [23, 57, 109, 112, 161, 162, 184, 198, 199, 202, 227, 254, 255, 273], "ray_serv": 45, "ray_serve_endpoint": 45, "ray_serve_servic": 45, "rayserv": 280, "rbac": [198, 199, 226, 270], "rc": 195, "rdp": [112, 113, 123, 131, 140, 149, 161, 178, 186], "re": [0, 2, 69, 108, 115, 119, 120, 128, 129, 135, 145, 146, 154, 164, 167, 182, 184, 194, 200, 230, 249, 252, 254, 255, 256, 258, 259, 265, 267, 268, 272, 277, 282], "reach": [9, 80, 98, 198, 199, 238, 241], "react": [3, 4, 100, 127, 144, 153, 164, 166, 190, 238, 260, 261, 263, 264, 265, 267, 280, 281, 282, 283], "react_langchain": 3, "react_langgraph": 3, "reactui": 265, "read": [35, 51, 52, 80, 89, 172, 199, 200, 203, 254, 255], "read_model": 232, "readabl": [121, 254, 282], "reader": 254, "readi": [64, 91, 104, 105, 107, 109, 110, 112, 113, 114, 116, 118, 125, 126, 134, 143, 166, 168, 173, 175, 181, 184, 186, 187, 189, 197, 199, 225, 226, 227, 228, 230, 232, 236, 238, 250, 255, 259, 266, 270, 273, 274, 276, 279], "readili": [32, 38], "readm": [7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 28, 29, 58, 59, 60, 65, 66, 71, 76, 88, 95, 107, 109, 118, 127, 143, 144, 153, 165, 166, 190, 194, 200, 201, 206, 226, 230, 238, 247, 254, 255, 280, 281, 282, 283], "readme_gmc": 238, "readonli": [200, 232], "readonlyrootfilesystem": 281, "readwritemani": 200, "readwriteonc": 197, "real": [2, 58, 80, 86, 94, 97, 110, 163, 172, 246, 248, 250, 259, 267, 274, 276, 277], "realist": 95, "realiz": 267, "realm": [58, 165, 197, 198], "rearrang": [61, 63], "reason": [3, 89, 95, 97, 98, 109, 110, 230, 237, 241, 248, 249, 259, 267, 272], "rebuild": 255, "recal": 267, "receiv": [44, 65, 67, 70, 72, 73, 74, 115, 163, 241, 260, 261, 263, 264, 267, 273], "recent": [97, 100, 267], "recheck": [104, 105, 173, 174], "recip": 267, "recogn": [115, 135, 182, 254, 260, 261, 263, 264], "recognit": [2, 6, 35, 102, 103, 190, 191], "recogniz": 12, "recommend": [3, 5, 13, 51, 52, 57, 65, 67, 70, 72, 73, 74, 89, 93, 110, 112, 194, 234, 253, 254, 255, 267, 272], "reconcil": [107, 118, 143, 227, 230, 270, 283], "reconfigur": 89, "record": [7, 28, 103, 115, 119, 120, 136, 137, 138, 148, 164, 167, 176, 191, 202, 249, 256, 259, 260, 261, 263, 264, 273], "recreat": [89, 267], "rectangl": 256, "recur": [115, 260, 261, 263, 264], "recursion_limit": [3, 5], "recursive_limit": 3, "red": [236, 240, 254, 259, 262, 266, 282, 283], "reddit": 254, "redeploi": 245, "redi": [2, 67, 72, 73, 89, 92, 109, 111, 112, 114, 115, 116, 118, 137, 138, 160, 164, 166, 190, 191, 201, 202, 206, 212, 227, 230, 252, 260, 261, 263, 264, 267, 277, 279, 280, 281, 282, 283, 284], "redirect": [165, 198], "redis_grafana": 92, "redis_host": [161, 162], "redis_url": [12, 17, 67, 72, 73, 111, 137, 138, 161, 162, 164, 206, 212, 230, 260, 261, 263, 264], "redownload": 57, "reduc": [11, 109, 200, 248, 254, 259, 267], "redund": 282, "ref": [254, 281, 283], "refact": 282, "refactor": [121, 280, 281, 282, 283, 284], "refer": [3, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 28, 33, 35, 41, 50, 51, 52, 53, 59, 65, 66, 69, 71, 76, 78, 79, 88, 89, 91, 92, 95, 97, 100, 101, 102, 103, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 122, 123, 130, 131, 139, 140, 143, 147, 148, 149, 156, 160, 161, 164, 165, 166, 167, 168, 169, 172, 177, 178, 185, 186, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 218, 219, 221, 222, 223, 226, 231, 234, 238, 240, 241, 253, 260, 261, 263, 264, 268, 270, 272, 273, 279, 280, 282, 283], "refere": 148, "referenc": [229, 254], "reference_free_rubrics_scor": 148, "reference_length": 98, "refin": [61, 63, 121, 241, 281, 282, 283], "reflect": [97, 198, 267], "reflexion": 267, "refresh": [119, 120, 164, 167, 176, 197], "refus": [115, 261, 263, 264], "reg": 254, "regard": [240, 241, 248], "regardless": [237, 241, 267], "regex": 98, "region": 272, "regist": [3, 225, 238, 241, 246, 254], "register_microservic": 2, "registr": [238, 241, 245], "registri": [123, 124, 140, 141, 166, 190, 195, 197, 200, 225, 226, 246, 250, 261, 264, 270, 277, 281], "regress": [35, 238], "regul": [34, 147], "regular": [35, 94, 267, 273], "regulartori": 248, "regulatori": [196, 267], "reimer": 267, "reinforc": [196, 267], "reinstal": 273, "reinvent": 250, "reject": [34, 232, 237, 238, 244], "rel": [89, 98, 248, 254, 267], "relat": [3, 5, 20, 23, 24, 31, 42, 95, 97, 107, 109, 110, 112, 114, 115, 116, 118, 121, 130, 131, 132, 139, 143, 160, 164, 166, 172, 178, 179, 185, 202, 227, 230, 236, 238, 240, 241, 244, 249, 254, 258, 260, 261, 263, 264, 268, 270, 272, 273, 281, 285], "relationship": [42, 74], "relativepath": 254, "relaunch": 267, "releas": [30, 92, 100, 110, 168, 190, 198, 199, 200, 218, 225, 236, 238, 240, 241, 252, 254, 255, 256, 259, 260, 261, 263, 264, 273, 274], "release_not": 283, "relev": [3, 5, 60, 61, 63, 64, 74, 80, 86, 99, 100, 109, 115, 121, 136, 137, 138, 160, 163, 172, 190, 191, 202, 238, 243, 249, 253, 254, 259, 260, 261, 263, 264, 267], "reli": [89, 248, 254, 266], "reliabl": [20, 23, 24, 58, 196, 267], "relianc": 172, "religion": 237, "reload": [48, 110, 260, 273], "remain": [98, 109, 136, 137, 138, 255, 259, 267], "remaind": 241, "rememb": [67, 70, 72, 73, 74, 198], "remot": [89, 112, 113, 119, 120, 123, 131, 140, 149, 161, 164, 167, 178, 186, 255], "remote_addr": 58, "remov": [0, 7, 28, 57, 59, 64, 107, 118, 143, 164, 167, 184, 202, 227, 230, 237, 241, 254, 255, 260, 261, 263, 264, 273, 274, 281, 282, 283], "ren": 242, "renam": [0, 50, 112, 114, 282, 283], "render": [202, 254], "reorg": [280, 282, 283], "repeat": [225, 253], "repetition_penalti": [45, 48, 50, 51, 96, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264, 283], "rephras": [3, 5, 100], "replac": [36, 97, 98, 102, 110, 111, 112, 113, 114, 116, 121, 123, 124, 140, 141, 149, 150, 161, 162, 164, 184, 186, 187, 198, 199, 225, 226, 228, 238, 241, 244, 254, 255, 256, 260, 261, 263, 264, 267, 272, 274, 280, 282, 283], "replace_method": 36, "replan": 3, "replann": 4, "repli": 238, "replic": 267, "replica": [91, 230, 273, 282, 283], "replica_tuning_config": 91, "replicaset": 230, "replicasetupd": 230, "repo": [69, 89, 91, 95, 97, 99, 100, 101, 108, 119, 120, 121, 128, 129, 135, 145, 146, 154, 155, 167, 176, 182, 195, 197, 199, 200, 223, 226, 238, 241, 247, 249, 254, 255, 256, 266, 272, 283], "repons": 248, "report": [110, 191, 229, 234, 237, 240, 241, 243, 249, 255, 267], "reportperiod": 89, "repositori": [45, 89, 121, 194, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 238, 241, 243, 244, 251, 252, 255, 258, 261, 265, 266, 267, 270, 272, 273, 274, 275, 277, 285], "repres": [90, 98, 174, 237, 240, 241, 253, 267, 274], "represent": [190, 253, 259, 267], "reproduc": [238, 267], "req": 94, "request": [0, 2, 3, 5, 7, 9, 11, 17, 18, 20, 23, 24, 25, 32, 33, 34, 35, 36, 37, 38, 39, 48, 49, 51, 52, 53, 56, 69, 80, 89, 90, 94, 95, 110, 121, 122, 123, 124, 125, 126, 134, 143, 175, 181, 189, 192, 197, 198, 200, 203, 225, 227, 232, 237, 241, 242, 243, 245, 246, 248, 249, 259, 260, 261, 263, 264, 267, 276, 281, 282, 284], "requestexcept": [3, 11, 17, 18, 32, 35, 38], "requir": [2, 20, 24, 36, 65, 88, 89, 90, 91, 93, 94, 97, 103, 107, 108, 110, 115, 118, 119, 120, 122, 123, 124, 126, 128, 129, 135, 143, 145, 146, 154, 155, 163, 166, 172, 175, 176, 181, 182, 189, 194, 195, 196, 197, 198, 199, 225, 227, 229, 231, 234, 238, 241, 243, 245, 246, 248, 250, 253, 254, 255, 259, 260, 261, 263, 264, 266, 267, 270, 272, 274, 276, 281, 282, 283], "require_human_feedback": 3, "requiredduringschedulingignoredduringexecut": 273, "requirements_rai": [17, 18], "requri": 261, "rerank": [2, 9, 45, 69, 88, 89, 90, 91, 97, 101, 109, 110, 118, 137, 138, 143, 168, 190, 191, 199, 201, 215, 223, 227, 230, 238, 242, 245, 252, 265, 268, 279, 280, 281, 282, 283, 284], "rerank_model_id": [30, 63, 110, 111, 113, 137, 138, 164, 173, 174, 215, 260, 261, 263, 264], "rerank_queri": [137, 138], "rerank_service_host_ip": [111, 113, 137, 138, 164, 173, 174, 184, 260, 261, 263, 264], "rerank_service_port": [173, 174], "reranked_doc": [137, 138], "rerankfinetun": 283, "reranking_doc": 202, "reranking_endpoint": 97, "reranking_t": [115, 260, 261, 263, 264], "reranking_tei_xeon": 63, "resctrl": 225, "research": [1, 87, 139, 159, 193, 267], "reserv": [184, 253], "reservedpoolnamespac": 89, "reservedresourc": 89, "reset": 274, "resign": 241, "resili": 267, "resolut": [241, 249], "resolution": 249, "resolv": [40, 121, 162, 241, 266], "resourc": [88, 107, 118, 143, 184, 194, 196, 198, 200, 225, 226, 227, 230, 246, 250, 252, 258, 270, 272, 274, 280, 282, 283, 284], "resp": [3, 11, 17, 18, 32, 35, 38], "respect": [5, 9, 45, 50, 51, 202, 206, 212, 237, 241, 254, 255, 256, 267], "respond": [80, 160, 191, 249], "respons": [3, 4, 11, 14, 17, 32, 34, 38, 43, 44, 45, 51, 89, 94, 97, 102, 109, 111, 112, 113, 114, 116, 123, 124, 136, 137, 138, 139, 160, 161, 162, 184, 191, 197, 198, 200, 238, 240, 241, 242, 245, 248, 249, 250, 259, 260, 261, 263, 264, 267, 268, 281, 282, 283], "response_format": 253, "response_typ": 198, "resst": 254, "rest": [22, 123, 124, 248, 253, 254, 267], "restart": [48, 106, 110, 112, 114, 115, 116, 123, 124, 140, 149, 150, 151, 184, 198, 199, 200, 225, 226, 228, 230, 260, 261, 263, 264, 270, 273, 274, 282], "restor": [249, 254], "restrict": [45, 122, 198], "restructur": 283, "restructuredtext": 255, "restructuretext": 254, "result": [3, 4, 45, 64, 65, 67, 70, 72, 73, 74, 88, 89, 90, 98, 110, 115, 161, 162, 172, 201, 202, 203, 204, 221, 225, 226, 249, 253, 256, 259, 260, 261, 263, 264, 266, 267, 270, 281, 282, 283], "result_on": 78, "resum": 283, "ret": 3, "retain": [119, 120, 164, 167, 176, 199, 200, 241], "retreiv": 253, "retri": 273, "retriev": [2, 3, 5, 7, 9, 11, 13, 16, 17, 20, 23, 24, 28, 29, 30, 42, 51, 59, 60, 61, 63, 64, 89, 90, 91, 95, 97, 100, 107, 109, 118, 136, 137, 138, 143, 156, 160, 163, 169, 172, 183, 185, 190, 191, 200, 201, 227, 230, 236, 238, 242, 245, 246, 249, 252, 258, 259, 265, 266, 276, 279, 280, 281, 282, 283, 284], "retrieval_endpoint": 97, "retrieval_metr": 97, "retrieval_tool": 95, "retrievaltool": [3, 101, 137, 138], "retrieve_model_id": [69, 70, 72, 74], "retrieved_data": 3, "retrieved_doc": [50, 51, 61, 62, 63, 64, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 211, 253, 260, 261, 263, 264], "retriever_neo4j": 68, "retriever_pgvector": 70, "retriever_qdr": 71, "retriever_r": [260, 261, 263, 264], "retriever_redi": [66, 67, 72, 73], "retriever_service_host_ip": [111, 113, 137, 138, 164, 184, 260, 261, 263, 264], "retriever_vdm": 74, "retrival_k": 97, "return": [2, 3, 12, 29, 33, 34, 35, 39, 42, 45, 50, 51, 60, 63, 78, 98, 107, 112, 114, 115, 118, 143, 164, 198, 210, 227, 253, 259, 260, 261, 263, 264, 267, 281, 282], "return_output": 3, "reus": [135, 184, 238, 267, 280], "rev": [115, 260, 261, 263, 264, 267], "revenu": [35, 66, 67, 68, 69, 70, 71, 72, 73, 74, 109, 111, 112, 113, 114, 115, 116, 117, 118, 161, 162, 164, 197, 198, 201, 202, 212, 227, 230, 260, 261, 263, 264, 267, 268, 270], "revers": 58, "revert": [282, 283], "review": [35, 119, 121, 164, 167, 190, 237, 239, 242, 244, 245, 246, 247, 248, 249, 250, 254, 267, 282], "revis": [115, 122, 261, 263, 264, 267, 281, 282, 283], "revolution": [139, 147, 191], "rewrit": 5, "rfc": [238, 245, 246, 249], "rfc_templat": 238, "rgb": [256, 267], "rhoai": 109, "rhocp": [259, 262, 282, 283], "right": [58, 88, 94, 122, 145, 146, 148, 155, 164, 167, 237, 238, 241, 254, 255, 256, 268], "rightward": 254, "risk": [112, 115, 260, 261, 263, 264, 267], "rm": [3, 9, 32, 35, 38, 42, 57, 64, 110, 184, 273], "robert": [236, 240], "roberta": [32, 38], "robot": [123, 124, 261], "robust": [20, 23, 24, 65, 67, 70, 72, 73, 74, 95, 121, 196, 198, 236, 266, 267, 275, 276, 282], "rocket": 40, "role": [29, 45, 53, 65, 67, 70, 72, 73, 74, 110, 114, 161, 162, 165, 186, 187, 188, 189, 191, 197, 198, 241, 253, 254, 267, 272, 273, 274], "roll": 267, "rollout": 198, "root": [69, 93, 229, 254, 255, 267, 273, 274, 282], "rou": [115, 260, 261, 263, 264], "roug": 97, "roughli": 241, "rouko": 98, "roumelioti": 242, "round": 256, "rout": [2, 29, 60, 164, 190, 226, 232, 238, 245, 246, 259, 276], "router": [107, 109, 112, 113, 114, 115, 116, 118, 143, 198, 226, 227, 228, 229, 230, 232, 245, 261, 263, 264, 270, 281, 282, 283], "row": [254, 256], "row1": 256, "row2": 256, "row3": 256, "row4": 256, "rp": [94, 110], "rsa": 274, "rss": [11, 17, 18], "rst": [241, 254, 255], "rtd": 255, "rtrim": 254, "rtt": 273, "rude": [31, 38], "ruijin": 248, "rule": [198, 199, 232, 244, 247, 251, 254, 282], "run": [3, 6, 9, 22, 25, 33, 36, 37, 39, 40, 42, 51, 52, 53, 54, 55, 56, 57, 58, 64, 69, 75, 77, 78, 86, 88, 89, 90, 92, 94, 97, 100, 101, 103, 104, 105, 106, 107, 111, 113, 115, 117, 118, 121, 123, 124, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 161, 162, 163, 164, 166, 172, 173, 174, 178, 179, 180, 184, 186, 187, 188, 192, 195, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 228, 230, 238, 249, 250, 253, 254, 259, 260, 261, 263, 264, 267, 270, 272, 273, 274, 281, 282, 283], "run_benchmark": 95, "run_data_preprocess": 95, "run_generate_answ": 95, "run_grad": 95, "run_ingest_data": 101, "run_rag_benchmark": 96, "run_sample_data": 95, "run_test": 90, "run_tim": 90, "runasroot": 281, "runc": [3, 12, 17, 18, 30, 32, 35, 38, 157, 170, 225, 273], "runc_ver": 273, "runinng": [210, 214, 215, 216, 218], "runner": [238, 280], "runtim": [3, 6, 12, 17, 18, 30, 32, 34, 35, 38, 40, 42, 45, 46, 47, 55, 75, 89, 90, 97, 114, 115, 157, 158, 170, 171, 194, 222, 225, 227, 234, 248, 261, 273, 274, 283], "runtimeerror": 115, "ruoyu": 242, "rw": 200, "rwo": 197, "s0": 256, "s1": 256, "s2": 256, "s3": [80, 256], "sa": [236, 266], "sacrebleu": 98, "sacrif": [32, 38], "sadtalk": 249, "safe": [31, 34, 114, 238, 267], "safeguard": [25, 32, 33, 36, 37, 38, 39, 49, 56, 100, 196, 279], "safeti": [88, 230, 232, 246, 258, 267, 277], "safety_guard_endpoint": [34, 208, 261], "safety_guard_model_id": [34, 208, 261], "sai": [248, 260, 261, 263, 264], "sale": 35, "salienc": 259, "salim": 98, "same": [17, 18, 30, 89, 94, 98, 100, 118, 130, 161, 162, 191, 199, 226, 227, 238, 253, 254, 255, 267, 270, 272, 283], "sampl": [23, 24, 78, 92, 95, 122, 161, 162, 164, 168, 184, 194, 198, 226, 228, 230, 238, 250, 253, 254, 260, 261, 263, 264, 265, 267, 270, 274, 283], "samplingratepermillion": 89, "sap": 267, "sapphir": [117, 131], "sasha": 99, "satg": 274, "satisfact": 147, "save": [7, 11, 12, 13, 14, 15, 16, 17, 18, 19, 28, 29, 59, 60, 86, 88, 89, 93, 110, 117, 125, 133, 142, 148, 163, 164, 180, 184, 188, 199, 226, 228, 234, 249, 267], "save_every_k_task": 122, "save_gener": 122, "save_generations_path": 122, "save_model": 232, "save_refer": 122, "save_references_path": 122, "sbin": 273, "sbom": 282, "scalab": 74, "scalabl": [2, 3, 7, 20, 23, 24, 25, 33, 36, 37, 39, 49, 56, 89, 102, 109, 110, 112, 113, 121, 123, 130, 131, 139, 140, 147, 149, 160, 161, 168, 172, 177, 178, 183, 185, 186, 196, 198, 238, 245, 246, 259, 262, 266, 267, 285], "scale": [2, 74, 88, 90, 91, 168, 199, 225, 245, 246, 253, 265, 266, 267, 276, 283], "scaleai": 267, "scan": [195, 225, 238, 282, 283, 285], "scenario": [65, 67, 70, 72, 73, 74, 79, 97, 110, 194, 198, 250, 267], "scene": 103, "scheduel": [201, 203], "schedul": [110, 117, 173, 174, 199, 273, 274, 282], "schema": 283, "scheme": [58, 92, 259], "scope": [197, 198, 238, 283, 285], "score": [32, 37, 38, 98, 115, 260, 261, 263, 264, 267], "score_threshold": [66, 67, 68, 72, 74, 90, 96], "scorecard": [88, 246, 258], "scrape": [9, 92, 172, 223, 225, 259], "scrape_config": [92, 259], "scrape_pool_target": 199, "screen": [254, 267], "screenshot": [123, 124, 165], "script": [51, 52, 53, 88, 90, 95, 96, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 140, 141, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 194, 198, 200, 234, 238, 242, 247, 255, 258, 260, 261, 263, 264, 267, 280, 281, 282, 283, 284], "scroll": [108, 120, 145, 146, 155, 164, 167, 176, 190], "sdp": [90, 93, 110], "seamless": [2, 20, 23, 24, 45, 163, 198, 245, 246, 250, 276], "seamlessli": [7, 25, 28, 33, 36, 37, 39, 49, 56, 59, 121, 249, 279], "search": [0, 25, 42, 59, 60, 61, 63, 65, 67, 70, 72, 73, 74, 86, 91, 92, 95, 112, 114, 172, 176, 183, 184, 190, 191, 200, 202, 259, 267], "search_engin": 18, "search_typ": [66, 67, 68, 72, 74, 90, 91, 96, 97], "searcheddoc": [50, 51, 282], "searchedmultimodaldoc": 283, "searchqa": 175, "searchqna": [168, 190, 195, 242, 249, 280, 281, 282, 283, 284], "searchqna_gaudi": 175, "searchqna_xeon": 175, "searchsearchmenu": [137, 138], "searchstreamlin": [137, 138], "sec": [90, 250, 259], "second": [42, 90, 94, 95, 98, 100, 110, 115, 184, 223, 245, 249, 253, 260], "second_video_nam": 64, "secret": [197, 198, 281, 282], "section": [0, 3, 12, 34, 35, 69, 90, 100, 107, 110, 118, 121, 126, 134, 143, 175, 178, 181, 189, 198, 201, 214, 215, 216, 227, 229, 241, 254, 260, 261, 263, 264, 267, 268, 273, 274, 283], "secur": [2, 31, 34, 88, 113, 114, 115, 123, 131, 137, 138, 140, 149, 161, 163, 168, 178, 186, 190, 194, 196, 198, 232, 237, 238, 239, 240, 241, 244, 246, 248, 260, 261, 263, 264, 266, 267, 272, 275, 276, 279, 280, 282, 283, 284, 285], "securitycontext": 281, "sed": [51, 52, 106, 110, 117, 125, 126, 127, 133, 134, 142, 144, 151, 153, 166, 175, 180, 181, 198, 199, 200, 202, 226, 228, 273, 274], "see": [1, 2, 6, 9, 30, 35, 38, 49, 69, 77, 80, 87, 88, 89, 92, 93, 98, 100, 107, 113, 118, 121, 123, 124, 125, 127, 143, 144, 153, 159, 161, 167, 168, 184, 186, 187, 190, 193, 194, 200, 201, 214, 215, 216, 223, 225, 227, 230, 237, 241, 249, 253, 254, 255, 259, 260, 261, 263, 264, 267, 272, 273], "seed": [122, 162, 253], "seek": [123, 240, 241], "seen": 267, "segment": [98, 267], "segmentapi": 77, "select": [23, 26, 27, 51, 52, 82, 89, 92, 109, 112, 113, 123, 124, 140, 149, 161, 165, 172, 178, 186, 195, 198, 242, 250, 253, 255, 259, 266, 268, 275], "selectng": 238, "selector": [199, 232, 255, 273], "self": [2, 34, 89, 238, 241, 245, 246, 261, 267, 276], "semant": [20, 23, 24, 25, 61, 63, 109, 136, 137, 138, 160, 191, 238, 259, 267], "semin": 3, "send": [5, 35, 36, 48, 64, 69, 80, 95, 115, 126, 134, 175, 181, 189, 229, 238, 249], "senior": [236, 240], "sens": [5, 267], "sensit": [31, 35, 123, 124, 196, 198, 225], "sent": [39, 183, 229, 253, 266], "sentenc": [2, 98, 115, 182, 267], "sentient": 261, "sentiment": [11, 17, 18], "sep": 275, "separ": [1, 3, 54, 87, 88, 89, 159, 184, 193, 198, 225, 238, 250, 256, 280, 281], "seq": 261, "seq_len": 261, "sequenc": [35, 43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 253, 256, 267], "sequenti": [3, 194, 226, 238, 254, 259, 270], "seri": [9, 96, 237, 243, 250, 259], "seriou": 237, "serv": [2, 3, 11, 20, 22, 32, 38, 43, 44, 48, 50, 51, 52, 53, 58, 100, 110, 112, 114, 115, 121, 123, 124, 139, 140, 141, 142, 143, 149, 150, 151, 164, 184, 190, 191, 196, 221, 223, 225, 238, 241, 245, 246, 253, 259, 261, 263, 264, 267, 276, 280, 281, 282, 283], "server": [8, 9, 21, 23, 26, 27, 29, 30, 34, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 57, 58, 60, 61, 62, 63, 64, 72, 73, 74, 76, 86, 88, 90, 91, 92, 95, 100, 104, 105, 107, 109, 114, 115, 116, 117, 118, 123, 124, 126, 131, 132, 133, 134, 137, 138, 141, 143, 150, 156, 157, 158, 162, 164, 169, 170, 171, 173, 174, 175, 179, 181, 184, 187, 189, 198, 200, 227, 232, 247, 249, 250, 253, 255, 260, 261, 263, 264, 273, 274, 277], "servic": [2, 3, 9, 13, 16, 20, 22, 29, 31, 48, 65, 80, 89, 90, 91, 92, 107, 118, 122, 134, 141, 143, 150, 168, 179, 190, 191, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 230, 232, 238, 241, 246, 249, 250, 257, 259, 265, 266, 267, 268, 270, 272, 273, 276, 277, 279, 280, 281, 282, 283, 284], "service_descript": 253, "service_host_ip": 245, "service_info": 91, "service_ip": [90, 110], "service_nam": [90, 166, 253], "service_port": [90, 110, 166], "service_rol": 245, "service_ti": 253, "service_typ": [2, 245], "service_url": [22, 97], "servicemonitor": 199, "servicemonitorselectorniluseshelmvalu": 199, "servicenam": [118, 227, 229, 230], "serviceorchestr": [2, 245], "serviceorchestratorwithyaml": 245, "serviceroletyp": 245, "servicetyp": [2, 245], "serviceurl": 229, "session": [250, 267], "set": [5, 10, 11, 12, 13, 16, 17, 30, 36, 42, 43, 44, 45, 48, 50, 54, 66, 67, 68, 69, 72, 74, 77, 86, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100, 103, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 125, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 148, 149, 150, 151, 153, 160, 161, 162, 163, 164, 165, 166, 172, 178, 179, 180, 183, 184, 185, 186, 191, 192, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 228, 229, 230, 231, 234, 237, 241, 245, 250, 253, 254, 260, 261, 263, 264, 266, 267, 270, 273, 282, 283, 285], "set_env": [109, 112, 114, 116, 121, 130, 131, 132, 139, 160, 172, 178, 179, 184, 185, 238, 268, 282, 283], "setfit": 284, "setup": [9, 58, 88, 95, 97, 100, 136, 143, 166, 168, 197, 198, 199, 200, 232, 250, 252, 254, 255, 258, 265, 267, 277, 283, 285], "setuptool": [51, 52, 282], "setvar": 30, "sever": [194, 225, 253, 259, 260, 261, 263, 264, 266, 267, 272, 273, 274, 275], "sevic": 253, "sex": 237, "sexual": [34, 237], "sg": [57, 183, 184, 191], "sh": [30, 45, 51, 52, 53, 95, 100, 101, 109, 112, 114, 115, 116, 121, 130, 131, 132, 139, 148, 160, 172, 178, 179, 184, 185, 200, 201, 203, 204, 221, 225, 234, 235, 238, 260, 261, 263, 264, 268, 281, 282, 283], "sha": [112, 118, 143, 186, 227, 263, 264, 283], "sha256": 273, "shall": [197, 198, 274], "shanghai": [91, 97], "shape": [30, 90, 94, 256, 266, 267], "sharan": 282, "shard": [97, 115], "shardcannotstart": 115, "share": [2, 78, 110, 168, 200, 202, 249, 259, 267], "sharegpt_v3_unfiltered_cleaned_split": [51, 52], "shareidlecpusinsam": 89, "sharpli": 245, "sheet": [115, 260, 261, 263, 264], "shell": [51, 52, 254], "shen": [1, 87, 159, 253], "shift": [11, 13, 16, 17, 267], "shirodkar": 282, "shm": [41, 43, 44, 45, 50, 112], "shm_size": [263, 264], "short": [3, 238, 241, 244, 254, 267], "shorter": 98, "shorthand": 254, "shot": 267, "should": [6, 9, 11, 12, 13, 14, 16, 17, 30, 35, 51, 52, 57, 64, 77, 80, 89, 92, 96, 97, 100, 107, 112, 118, 123, 127, 143, 144, 153, 168, 197, 198, 199, 200, 203, 205, 208, 209, 210, 212, 217, 219, 223, 226, 227, 229, 232, 238, 241, 247, 253, 254, 255, 260, 261, 263, 264, 267, 273], "show": [30, 51, 52, 89, 93, 109, 115, 120, 156, 160, 169, 176, 177, 183, 185, 195, 197, 200, 202, 225, 227, 254, 255, 256, 260, 261, 263, 264, 266, 267], "showcas": [95, 100, 102, 121, 191, 260, 261, 263, 264, 267, 268], "shown": [3, 7, 100, 112, 113, 114, 116, 123, 124, 164, 184, 186, 187, 248, 254, 255, 256, 260, 261, 263, 264], "shut": [69, 94, 115], "sibl": 255, "side": 248, "sidecar": [198, 231, 232, 248], "sig": 274, "sign": [163, 198, 238, 241, 254, 255, 267, 273], "signal": [34, 190], "signific": [95, 238, 245, 254, 267], "significantli": [32, 38, 61, 63, 65, 67, 70, 72, 73, 74, 100, 245], "sihan": 242, "silence_girl": [57, 184], "silent": [161, 162, 239], "similar": [6, 20, 23, 24, 42, 65, 66, 67, 68, 70, 72, 73, 74, 77, 86, 90, 91, 97, 98, 109, 136, 137, 138, 183, 184, 190, 191, 198, 238, 259, 260, 261, 263, 264, 267, 274], "similarity_distance_threshold": [66, 67, 68, 72, 74], "similarity_score_threshold": [66, 67, 68, 72, 74], "similarity_search": 78, "simpl": [2, 3, 20, 23, 24, 48, 74, 95, 109, 121, 130, 139, 172, 234, 238, 259, 274], "simplest": [123, 124], "simpli": [5, 91, 93, 95, 97, 98, 141, 150, 230, 254, 274], "simplifi": [2, 107, 112, 113, 114, 116, 118, 123, 124, 126, 131, 132, 134, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 168, 170, 171, 175, 178, 179, 181, 184, 186, 187, 189, 198, 227, 250, 265, 266, 267, 268, 276], "simul": [88, 90], "simultan": [20, 23, 24, 80, 172], "sinc": [94, 98, 110, 111, 113, 123, 124, 140, 141, 149, 150, 161, 162, 164, 184, 186, 187, 223, 238, 248, 261], "singer": 267, "singl": [9, 11, 17, 18, 19, 48, 80, 89, 90, 96, 123, 124, 163, 172, 184, 198, 237, 245, 250, 253, 254, 259, 267, 280, 284], "single_gaudi": 110, "sit": 30, "site": [0, 185, 236, 241, 243, 250, 254, 255, 259], "situat": 3, "six": [255, 267], "size": [41, 43, 44, 45, 48, 50, 51, 52, 91, 112, 113, 114, 116, 117, 164, 184, 223, 237, 238, 244, 254, 260, 261, 263, 264, 267], "skeleton": 250, "skip": [112, 114, 143, 178, 179, 254, 260, 263, 264, 273], "sky": [33, 48], "sla": [253, 267], "slack": 267, "sleep": [57, 64, 89, 107, 118, 126, 134, 143, 175, 181, 184, 189, 198, 227, 230, 270, 273], "slice": [260, 261, 263, 264], "slide": [108, 120, 176], "slight": 238, "slim": 283, "slip": 254, "slow": [89, 199], "small": [2, 5, 11, 51, 52, 61, 88, 102, 191, 199, 220, 227, 238, 254, 267, 284], "smaller": [2, 32, 38, 89, 245, 246, 254, 276], "smallest": 48, "smart": 254, "smi": 172, "smith": [35, 254], "smooth": [98, 123, 124, 259], "smoothli": 283, "snapshot": 267, "snc": 89, "snippet": [95, 121, 123, 124, 163], "so": [6, 17, 18, 35, 57, 88, 91, 93, 95, 107, 112, 115, 118, 126, 134, 143, 168, 175, 181, 184, 189, 192, 198, 199, 201, 203, 223, 226, 227, 230, 241, 246, 247, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 272, 273], "social": [32, 237, 241], "socio": 237, "sock": 225, "socket": [89, 91, 225, 273], "socket_path": 225, "soft": 267, "softwar": [1, 87, 121, 159, 193, 194, 222, 234, 236, 239, 240, 266, 267, 268], "sole": [46, 47], "solut": [2, 7, 53, 74, 95, 96, 110, 114, 160, 164, 168, 196, 198, 225, 236, 238, 245, 246, 249, 250, 259, 260, 261, 263, 264, 268, 275, 279], "solv": [3, 238, 244], "some": [9, 23, 26, 27, 29, 91, 92, 95, 96, 100, 108, 110, 111, 113, 119, 120, 123, 124, 128, 129, 130, 135, 140, 141, 145, 146, 149, 150, 154, 155, 161, 162, 164, 167, 176, 182, 184, 185, 186, 187, 199, 200, 225, 232, 238, 244, 253, 254, 255, 256, 260, 261, 262, 263, 264, 267, 270, 273, 279, 280, 281, 282, 283], "someon": [31, 38, 242], "someth": [80, 100, 238, 255, 273], "sometim": [254, 267], "soon": [31, 107, 112, 113, 118, 123, 124, 126, 131, 132, 134, 140, 143, 149, 161, 162, 164, 175, 178, 181, 184, 186, 189, 227, 260, 261, 263, 264], "sophist": [3, 267], "sorri": [0, 32, 38], "sort": [64, 89, 237, 267], "sota": [249, 267], "sound": [108, 147, 190, 191], "sourc": [1, 2, 3, 6, 10, 11, 17, 18, 30, 35, 43, 44, 48, 50, 53, 64, 77, 78, 86, 87, 88, 89, 92, 93, 94, 98, 100, 109, 110, 112, 114, 121, 130, 131, 132, 136, 137, 138, 139, 140, 141, 142, 143, 147, 149, 150, 151, 159, 160, 163, 168, 172, 173, 174, 175, 176, 177, 178, 179, 183, 184, 185, 190, 191, 193, 196, 198, 221, 225, 232, 238, 240, 241, 243, 249, 250, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 273, 274, 275, 276, 282, 283, 284], "source_cod": [130, 131, 132, 133, 134, 204], "source_languag": [178, 179, 180], "source_video": [161, 162], "south": 273, "space": [51, 52, 65, 67, 70, 72, 73, 74, 123, 124, 160, 184, 237, 238, 259, 267, 270, 283], "spaci": 267, "spam": 232, "span": [9, 254], "spanish": 267, "sparknlp": 267, "spars": [61, 63, 267], "spawn": [51, 52, 94], "spdx": [241, 282], "speak": 249, "spec": [89, 118, 197, 198, 199, 200, 201, 202, 203, 204, 221, 226, 227, 229, 230, 232, 257, 267, 270, 273], "special": [48, 89, 121, 254, 267], "specif": [2, 3, 5, 7, 8, 20, 23, 24, 30, 88, 89, 90, 91, 93, 94, 107, 109, 112, 114, 116, 118, 122, 143, 169, 172, 185, 191, 194, 197, 198, 200, 227, 231, 232, 241, 245, 246, 250, 253, 255, 259, 260, 261, 263, 264, 268, 276, 281, 282], "specifi": [3, 5, 11, 13, 16, 17, 18, 51, 52, 53, 63, 65, 67, 70, 72, 73, 74, 88, 90, 91, 92, 97, 100, 110, 143, 197, 198, 199, 202, 206, 225, 229, 237, 245, 249, 253, 254, 255, 256, 259, 267, 270, 274, 283], "spectrogram": 249, "speech": [2, 6, 12, 38, 75, 102, 103, 104, 105, 190, 191, 217, 253], "speecht5": [102, 104, 105, 107, 190, 191, 217, 252, 281], "speecht5_serv": 75, "speecht5_tt": 2, "speecht5model": 282, "speed": [11, 13, 16, 17, 57, 74, 117, 238, 244, 267], "speedup": 17, "spell": [115, 261, 263, 264, 283], "spent": [120, 176], "sphinx": [254, 255, 256], "sphinx_": 254, "sphinx_build": 254, "sphinxcontrib": 255, "spliit": 248, "split": [280, 282], "split_merg": [91, 97], "spoken": [102, 191], "spot": 266, "spr": [89, 249], "spreadsheet": 110, "spycsh": 245, "sql": [5, 70, 81, 100, 191, 250], "sqlitedb": 77, "squad": 250, "squad_v2": 148, "squar": 256, "sqv2_context": 148, "sqv2_faq": 148, "src": [3, 78, 109, 112, 113, 114, 115, 116, 261, 263, 264], "ss": [197, 198], "ssh": [112, 113, 123, 131, 140, 149, 161, 178, 186, 274], "ssl": 274, "st": 272, "stabl": [30, 40, 178, 179, 246, 266, 267, 273, 284], "stack": [9, 67, 72, 73, 84, 115, 118, 194, 199, 210, 222, 223, 227, 234, 260, 261, 263, 264, 266, 267, 276], "stackoverflow": 254, "staf": 267, "stage": [6, 51, 52, 75, 238, 244, 259, 266, 267], "stagger": 241, "stakehold": 196, "stand": [61, 63, 254, 255], "standard": [88, 96, 98, 107, 109, 118, 143, 196, 227, 240, 241, 254, 255, 256, 259, 266, 267, 282], "star": [238, 256], "starcod": [43, 44, 50], "starpii": 35, "start": [9, 10, 51, 52, 76, 82, 88, 89, 94, 107, 108, 115, 118, 119, 120, 121, 122, 126, 130, 134, 139, 143, 157, 158, 167, 170, 171, 172, 175, 176, 181, 189, 192, 197, 200, 205, 212, 217, 219, 223, 225, 227, 238, 245, 252, 254, 255, 256, 259, 260, 261, 263, 264, 266, 267, 272, 273, 274, 275, 276, 277, 283], "start_servic": 245, "startup": [77, 112, 113, 114, 116, 168, 184, 238, 244], "stat": [93, 248], "state": [3, 51, 52, 53, 99, 115, 166, 199, 225, 236, 241, 254, 260, 261, 263, 264, 267, 276], "stateless": 248, "statement": [115, 119, 164, 167, 260, 261, 263, 264], "static": [12, 30, 61, 89, 246, 284], "static_config": [92, 259], "statist": [80, 94, 253, 273, 280, 282], "statu": [3, 9, 11, 42, 52, 53, 107, 110, 118, 125, 126, 134, 137, 138, 143, 175, 181, 189, 197, 198, 202, 223, 225, 226, 227, 228, 230, 232, 237, 241, 244, 253, 259, 270, 273, 274, 281], "stdin": 272, "steadi": 241, "steer": 243, "step": [3, 4, 5, 57, 69, 77, 91, 92, 95, 96, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 127, 130, 131, 132, 134, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 160, 161, 162, 164, 165, 166, 170, 171, 172, 174, 175, 178, 179, 181, 184, 185, 186, 187, 189, 194, 195, 197, 198, 199, 202, 222, 227, 229, 230, 231, 234, 236, 250, 255, 260, 261, 263, 264, 267, 268, 270, 272], "step1": 48, "step2": 48, "stepnam": 229, "steve": [236, 240], "stick": 254, "still": [42, 89, 115, 119, 120, 164, 167, 176, 199, 261, 263, 264, 267], "stitch": 238, "stop": [5, 57, 64, 94, 110, 190, 225, 245, 253, 255, 267, 282], "stop_reason": 261, "stopsign": [161, 162, 186, 187, 188, 189], "storag": [28, 59, 74, 80, 83, 112, 113, 123, 131, 140, 149, 161, 178, 186, 190, 197, 200, 245, 259, 267], "storageclassnam": 200, "store": [7, 8, 10, 12, 28, 59, 64, 65, 67, 69, 70, 72, 73, 74, 79, 90, 109, 136, 137, 138, 160, 172, 183, 184, 190, 191, 236, 241, 244, 245, 249, 250, 251, 259, 260, 261, 263, 264, 266, 267, 274, 276, 283], "str": [3, 98, 245], "straightforward": [20, 23, 24, 61, 63], "strategi": [4, 5, 11, 13, 16, 17, 44, 88, 91, 100, 139, 275, 282], "strategy_fil": 91, "stream": [41, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 80, 90, 104, 105, 107, 111, 112, 113, 114, 115, 116, 123, 124, 164, 172, 173, 174, 184, 209, 253, 260, 261, 263, 264, 267, 268, 282, 283], "stream_opt": 253, "streamlin": [45, 46, 47, 58, 91, 121, 163, 191, 198, 250, 275], "strength": 267, "strengthen": 282, "stress": [93, 110, 281], "stress_venv": 110, "stresscli": [88, 90, 258, 282, 283], "stresscli_virtualenv": 93, "stretch": 250, "strict": 196, "string": [20, 23, 24, 35, 36, 45, 50, 98, 115, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 229, 244, 251, 253, 254, 260, 261, 263, 264, 281, 282], "strip": 12, "strong": 254, "strongli": [115, 261, 263, 264], "strtype": 42, "struct": 254, "structur": [10, 11, 14, 17, 191, 238, 244, 245, 254, 255, 261, 276, 282, 283], "studi": [97, 248, 250], "studio": [191, 200, 231, 284], "style": [161, 162, 254, 256, 283], "sub": [89, 115, 198, 238, 240, 241, 254, 260, 263, 264], "subchart": 199, "subclass": 245, "subfilt": 232, "subject": [1, 32, 87, 115, 159, 191, 193, 241, 260, 261, 263, 264, 267], "sublist": 254, "submiss": [241, 266], "submit": [111, 112, 114, 116, 121, 123, 124, 164, 183, 192, 241, 243, 244, 251, 254, 260, 261, 263, 264, 267], "submitt": 238, "subnet": 273, "subscrib": [238, 253], "subsequ": [97, 100, 172, 267], "subset": [95, 115, 223, 260, 261, 263, 264, 267], "substanc": 34, "substanti": [238, 245, 267], "substitut": [58, 110, 198, 254], "subsystem": 267, "subtask": 88, "subtl": 261, "subtli": 32, "succe": [94, 273], "succeed": [137, 138], "success": [3, 11, 17, 18, 32, 35, 38, 94, 100, 238, 255, 267], "successfulli": [51, 52, 100, 114, 187, 205, 206, 207, 208, 209, 211, 212, 217, 219, 230, 273, 274, 282], "sudo": [48, 110, 198, 200, 225, 255, 260, 273, 274, 282], "suffici": 90, "suggest": [57, 69, 121], "suicid": 34, "suit": [2, 31, 65, 67, 70, 72, 73, 74, 79, 110, 166, 168, 191, 194, 246, 250, 252, 260, 261, 263, 264, 265, 267, 276, 279], "suitabl": [123, 131, 168, 199], "sum": [199, 281], "summar": [12, 44, 121, 123, 124, 131, 132, 145, 146, 167, 190, 191, 200, 247, 250, 261, 265, 279, 280], "summari": [9, 74, 94, 139, 143, 164, 190, 238, 243, 254, 265, 277], "summarize_image_via_lvm": 10, "super": [115, 267], "superbowl": 267, "superglu": 250, "supervis": [156, 191], "supervisor": [5, 100, 191], "supplement": 183, "suppli": [115, 238, 261, 263, 264], "support": [2, 7, 11, 13, 16, 17, 18, 20, 23, 24, 28, 30, 34, 35, 40, 42, 46, 47, 48, 51, 52, 53, 55, 56, 57, 59, 65, 67, 69, 70, 72, 73, 74, 88, 89, 90, 92, 96, 100, 101, 107, 109, 112, 115, 117, 118, 121, 123, 124, 130, 139, 143, 160, 172, 183, 184, 185, 190, 194, 196, 198, 200, 222, 225, 226, 228, 229, 232, 234, 240, 241, 245, 246, 248, 249, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 276, 279, 280, 281, 282, 283, 284], "supported_exampl": 283, "suppos": [139, 160, 200], "sure": [6, 11, 12, 17, 18, 19, 69, 80, 92, 93, 106, 109, 110, 112, 115, 117, 123, 124, 125, 127, 133, 142, 144, 151, 153, 166, 180, 188, 194, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 226, 228, 230, 234, 238, 254, 255, 259, 260, 261, 263, 264, 270, 273, 274], "surfix": 282, "surg": 249, "sustain": 237, "suyu": 242, "sv": [267, 279, 284], "svc": [55, 90, 92, 107, 110, 117, 118, 125, 133, 142, 143, 151, 161, 166, 180, 188, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 227, 229, 230, 232, 238, 259, 270, 283], "svc_endpoint": 202, "svd_endpoint": 40, "svd_server": 40, "svelt": 123, "svg": 254, "svp": [236, 240], "swap": [259, 273], "swape": 238, "swapoff": 273, "swer": [115, 260, 261, 263, 264], "swift": [100, 101], "swiftli": [61, 63, 109, 136, 137, 138, 259], "switch": [95, 226, 227, 229, 238, 259, 270, 281, 282, 283, 284], "switzerland": 98, "swjjv": 89, "sy": [89, 225], "symbol": 254, "synapse_1": 227, "sync": [9, 35, 200], "synchron": [249, 255], "synergi": 172, "synonym": 267, "synstatu": 115, "syntax": 254, "synthes": 172, "synthesi": 95, "sys_nic": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 97, 114, 115, 158, 171, 261], "sysctl": 273, "system": [2, 3, 5, 20, 23, 24, 29, 37, 48, 61, 63, 65, 67, 70, 72, 73, 77, 80, 88, 89, 90, 100, 110, 130, 131, 132, 135, 136, 137, 138, 163, 166, 172, 183, 191, 196, 198, 199, 202, 225, 226, 228, 229, 232, 236, 239, 240, 241, 243, 245, 246, 248, 250, 253, 254, 255, 258, 259, 260, 261, 263, 264, 266, 270, 273, 274, 276, 280, 281, 283], "system_fingerprint": 253, "system_namespac": [226, 270], "systemctl": [48, 110, 200, 225, 260, 273], "systemd": [48, 225, 260, 273, 274], "systemdcgroup": 273, "szgth": 89, "t": [2, 3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 88, 89, 100, 103, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 168, 170, 171, 173, 174, 178, 179, 184, 186, 187, 197, 198, 200, 201, 202, 203, 225, 228, 238, 254, 255, 260, 261, 263, 264, 266, 270, 272, 273, 274], "tab": [198, 255], "tabl": [2, 11, 13, 16, 17, 78, 109, 115, 160, 242, 260, 261, 263, 264, 265, 267, 277, 280, 282, 283], "table_strategi": [11, 13, 16, 17], "tag": [48, 91, 110, 123, 124, 140, 141, 200, 201, 210, 214, 215, 216, 218, 225, 231, 232, 254, 255, 260, 261, 263, 264, 270, 272, 274, 281, 282, 283], "tail": 95, "tailor": [2, 163, 191, 246, 259, 277], "tailwind": 267, "taint": 273, "take": [2, 3, 23, 26, 27, 29, 42, 57, 89, 95, 98, 99, 100, 109, 110, 112, 113, 114, 115, 116, 121, 122, 123, 124, 125, 130, 184, 190, 198, 199, 203, 237, 238, 241, 249, 255, 259, 260, 261, 263, 264, 267, 273, 274], "takeawai": 163, "taken": [98, 267], "talk": [6, 75, 108, 259], "talkingbot": 191, "tank": 30, "tar": [12, 92, 95, 225, 259, 273], "target": [38, 64, 88, 90, 92, 94, 177, 191, 199, 225, 246, 254, 255, 258, 259, 267, 280, 283], "task": [2, 11, 30, 40, 42, 54, 55, 56, 88, 90, 97, 98, 100, 121, 122, 123, 131, 169, 185, 191, 198, 199, 222, 245, 246, 250, 259, 260, 261, 263, 264, 267, 274, 276, 279], "tatal": 229, "tax": 241, "taylor": [100, 101], "tbd": [243, 259], "tco": 267, "tcp": [58, 110, 115, 166, 260, 261, 263, 264], "tdb": 259, "te_embed_count": 9, "te_embed_success": 9, "te_queue_s": 9, "te_request_count": 9, "te_request_inference_dur": 9, "te_request_inference_duration_bucket": 9, "te_request_success": 9, "team": [35, 42, 249, 250, 281], "tear": 273, "tech": [11, 14, 17, 18, 246, 261, 267, 283], "technic": [139, 243, 255, 267], "techniqu": [20, 23, 24, 98, 147, 191, 266], "technologi": [109, 225, 241, 266], "tee": [200, 242, 273], "tei": [2, 9, 17, 43, 44, 89, 91, 92, 109, 111, 112, 113, 114, 116, 118, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 164, 173, 174, 190, 191, 199, 200, 201, 202, 206, 207, 211, 212, 215, 219, 221, 223, 227, 229, 230, 238, 252, 267, 277, 279, 281, 282, 283], "tei_embedding_devic": 261, "tei_embedding_endpoint": [26, 27, 69, 70, 71, 72, 74, 80, 86, 97, 111, 113, 137, 138, 164, 173, 174, 206, 207, 212, 219, 229, 260, 261, 263, 264], "tei_embedding_model_nam": [26, 27], "tei_embedding_servic": [113, 118, 227], "tei_endpoint": [14, 17, 18, 70, 230], "tei_gaudi": 136, "tei_grafana": 92, "tei_reranking_endpoint": [63, 111, 113, 137, 138, 164, 173, 174, 211, 260, 261, 263, 264], "tei_reranking_servic": 113, "tei_serv": [17, 26, 27], "tei_xeon_servic": [118, 227], "teiembed": 229, "teirerank": [89, 201, 211, 230, 252, 281], "teleconfer": 241, "telementri": 225, "telemetr": 256, "telemetri": [77, 225, 238, 246, 277, 279, 282, 284], "telemetry_endpoint": 9, "tell": [49, 255], "temp": [250, 283], "temperatur": [3, 41, 45, 48, 49, 50, 51, 52, 53, 90, 91, 96, 97, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 218, 250, 253, 260, 261, 263, 264], "tempfil": 78, "templat": [50, 51, 58, 118, 198, 200, 202, 227, 230, 255, 273, 280, 283, 284], "tempo": 250, "temporari": [165, 198], "temporarili": 90, "tenant": 90, "tenet": 266, "tensor": [51, 52, 261], "tensorflow": 98, "tensorrt": 267, "term": [1, 87, 159, 172, 193, 237, 238, 239, 241, 254, 260, 261, 263, 264, 266, 267], "termin": [95, 109, 110, 112, 115, 117, 121, 125, 130, 133, 139, 142, 172, 180, 188, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 253, 255, 260, 261, 263, 264, 273, 274, 283], "terminologi": 89, "tesseract": [11, 16, 17, 18, 19], "test": [5, 8, 17, 23, 26, 27, 29, 35, 60, 86, 88, 94, 95, 96, 103, 107, 112, 114, 115, 116, 118, 121, 122, 126, 134, 143, 148, 161, 162, 164, 168, 175, 181, 184, 189, 194, 198, 199, 223, 225, 227, 230, 231, 238, 241, 242, 244, 250, 255, 260, 261, 263, 264, 265, 266, 267, 270, 280, 281, 282, 283, 284, 285], "test_": 238, "test_asr_whisp": 238, "test_cas": 90, "test_compose_on_": 238, "test_compose_on_gaudi": 238, "test_data": 30, "test_embeddings_tei_langchain": 238, "test_embeddings_tei_langchain_on_amd_gpu": 238, "test_embeddings_tei_llama_index": 238, "test_gmc_on_": 238, "test_gmc_on_gaudi": 238, "test_llm_endpoint": 95, "test_manifest_on_": 238, "test_manifest_on_gaudi": 238, "test_output_dir": [88, 90, 110], "test_report": 93, "test_suite_config": [90, 110], "testcas": 282, "testpwd": [14, 70, 81], "testspec": 93, "testus": [14, 70, 81], "text": [1, 2, 3, 5, 6, 10, 11, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 86, 87, 88, 89, 91, 93, 98, 101, 102, 103, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 130, 131, 132, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 147, 149, 150, 151, 154, 155, 159, 160, 161, 162, 164, 167, 173, 174, 175, 176, 177, 178, 179, 183, 184, 186, 187, 188, 189, 190, 191, 193, 197, 198, 202, 207, 208, 211, 212, 213, 214, 215, 216, 217, 219, 221, 227, 230, 232, 238, 247, 249, 253, 254, 256, 259, 260, 261, 263, 264, 268, 270, 279, 281, 282, 283, 284], "text_complet": 261, "text_generation_launch": 115, "text_generation_rout": [109, 112, 113, 114, 115, 116, 261, 263, 264], "text_list": 35, "text_splitt": 80, "textbook": 185, "textdoc": 2, "textgen": 49, "textgener": 5, "textload": 78, "textual": [20, 23, 24, 147, 160, 191], "tgi": [2, 3, 9, 11, 13, 16, 17, 42, 46, 47, 89, 91, 92, 95, 97, 99, 100, 104, 105, 107, 109, 113, 116, 118, 121, 123, 124, 125, 127, 131, 132, 140, 143, 144, 149, 153, 160, 162, 173, 174, 178, 179, 190, 191, 199, 200, 201, 203, 204, 208, 209, 211, 212, 221, 223, 227, 230, 238, 247, 252, 259, 267, 277, 279, 280, 281, 282, 283, 284], "tgi_grafana": [92, 223, 259], "tgi_llm_endpoint": [11, 13, 16, 17, 41, 43, 44, 45, 50, 104, 105, 113, 123, 124, 137, 138, 140, 141, 149, 150, 164, 173, 174, 208, 209, 261, 263, 264], "tgi_llm_endpoint_chatqna": 164, "tgi_llm_endpoint_codegen": 164, "tgi_llm_endpoint_docsum": 164, "tgi_llm_endpoint_faqgen": 164, "tgi_request_inference_duration_": 199, "tgi_servic": [41, 43, 45, 50, 112, 114], "tgz": 273, "than": [34, 64, 95, 98, 199, 241, 250, 253, 254, 255, 267, 268], "thank": [2, 97, 168, 238, 282], "theft": 196, "thei": [6, 89, 98, 121, 123, 124, 163, 168, 172, 194, 198, 199, 200, 201, 237, 238, 239, 241, 242, 243, 248, 249, 250, 253, 254, 259, 260, 261, 263, 264, 267, 274], "them": [2, 10, 12, 61, 63, 69, 74, 86, 89, 95, 98, 99, 107, 110, 111, 112, 113, 118, 121, 123, 124, 140, 141, 143, 149, 150, 161, 162, 164, 178, 179, 184, 186, 187, 198, 199, 200, 227, 232, 238, 245, 246, 249, 250, 254, 255, 259, 260, 261, 263, 264, 267, 276, 279], "themselv": 267, "theoret": 91, "therebi": [245, 266, 276], "therefor": [89, 95, 98], "therein": 267, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 76, 79, 80, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100, 101, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 123, 124, 126, 130, 131, 132, 134, 136, 137, 138, 139, 140, 141, 143, 147, 149, 150, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 198, 200, 202, 214, 215, 216, 218, 223, 225, 226, 227, 228, 229, 230, 234, 237, 238, 239, 241, 243, 244, 245, 246, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 272, 273, 274, 276, 277], "think": 202, "third": [1, 100, 159, 238, 241, 254, 274], "those": [98, 102, 160, 190, 191, 194, 197, 199, 237, 238, 241, 243, 254, 266, 267, 273, 274], "thought": 3, "thread": 89, "threaten": 237, "three": [30, 42, 53, 110, 168, 198, 254, 266, 267, 274], "threshold": 99, "thrill": [2, 168], "through": [37, 92, 97, 109, 115, 121, 174, 185, 191, 195, 196, 197, 198, 199, 200, 237, 239, 241, 243, 245, 249, 250, 254, 255, 259, 260, 261, 263, 264, 267, 279, 281, 283, 284], "throughout": [45, 254, 267], "throughput": [51, 52, 53, 88, 94, 110, 168, 246, 250, 259, 267], "throughpuut": 258, "thu": [12, 25, 69, 95, 135], "tian": [242, 253], "tiber": [261, 268], "tick": 195, "ticket": 42, "tier": [253, 267], "tier2": 284, "tiger": [34, 114, 208, 261], "tigera": [202, 225, 273], "tightli": [89, 245], "tiktoken": 267, "tiledbdens": 74, "tiledbspars": 74, "time": [2, 9, 29, 57, 80, 86, 89, 91, 94, 95, 97, 112, 113, 114, 116, 120, 163, 172, 176, 183, 184, 190, 191, 197, 199, 201, 203, 223, 237, 238, 241, 244, 245, 246, 254, 255, 259, 266, 267, 273, 276], "time_of_frame_m": [161, 162], "timelin": [34, 241], "timeout": [77, 280, 281, 282, 283], "timeout_second": [17, 18], "timeseri": [92, 259], "timestamp": [64, 184, 253], "tini": [102, 103], "titeiiko": 232, "titl": [1, 51, 87, 98, 159, 193, 238, 240, 241, 244, 251, 283], "tl": 225, "tmp": 282, "toctre": 254, "todai": [3, 115, 147, 253, 263, 264, 267], "todayopea": [137, 138], "todd": 98, "todo": [121, 122, 123, 124, 125, 203, 238, 244, 246, 248, 254], "togeth": [2, 35, 100, 164, 168, 198, 238, 254, 255, 266, 282], "toggl": 90, "toi": [30, 169], "token": [3, 6, 34, 35, 42, 51, 52, 53, 54, 63, 88, 94, 95, 97, 98, 104, 105, 106, 110, 111, 113, 114, 117, 123, 124, 125, 127, 133, 139, 140, 141, 142, 144, 149, 150, 151, 153, 164, 166, 173, 174, 180, 184, 197, 200, 201, 203, 204, 208, 209, 216, 218, 221, 226, 228, 232, 234, 250, 253, 259, 260, 261, 263, 264, 267, 273, 281, 282, 283], "token1": 198, "token2": 198, "tokena": 198, "tokenb": 198, "tokenizer_13a": 98, "tokenizers_parallel": [46, 47], "tom": 242, "toml": [225, 273], "too": [89, 107, 118, 199, 254], "tool": [5, 9, 42, 58, 61, 63, 88, 91, 93, 94, 95, 112, 163, 168, 191, 192, 194, 196, 198, 222, 225, 231, 244, 250, 251, 252, 253, 258, 259, 260, 261, 263, 264, 265, 266, 267, 272, 274, 282], "tool_choic": 253, "tool_nam": 3, "toolkit": [43, 44, 50, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 225, 234, 259, 268], "toolset": 93, "toolset_path": 100, "tooltalk": 267, "top": [30, 35, 88, 90, 92, 115, 120, 160, 165, 172, 176, 183, 198, 199, 238, 249, 250, 253, 254, 255, 256, 260, 261, 263, 264, 267, 283], "top_k": [41, 45, 48, 49, 50, 51, 91, 96, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "top_logprob": 253, "top_n": [63, 64, 96, 161, 162, 184, 260, 261, 263, 264], "top_p": [45, 48, 49, 50, 51, 52, 53, 91, 96, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 253, 260, 261, 263, 264], "top_video_nam": [64, 184], "topic": 98, "topologi": [93, 199], "topologykei": 273, "topologyspreadconstraint": 283, "torch": [30, 115, 283], "torch_ccl": 30, "torchaudio": 30, "torchvis": [30, 282], "torso": 95, "total": [3, 9, 34, 42, 51, 74, 90, 94, 97, 114, 127, 144, 153, 223, 230, 253, 260, 261, 263, 264], "total_token": [253, 261], "toward": [11, 13, 16, 17, 237, 267], "towardsdatasci": [11, 17, 18], "toxic": [25, 31, 33, 36, 37, 49, 56, 232, 248, 277, 281, 282], "toxicchat": 38, "toxicity_detect": [38, 39], "toy_finetune_data": [30, 169], "toydata": [23, 161, 162], "tp": 250, "tpot": [51, 52], "tr": [198, 202], "trace": [246, 250, 267, 282], "traceabl": 267, "track": [3, 80, 92, 163, 243, 248, 267], "traction": 97, "trade": [241, 254], "trademark": [241, 254, 283], "tradeoff": 74, "tradit": [201, 248, 254], "traffic": [190, 196, 226, 273], "trail": 254, "train": [35, 121, 160, 172, 191, 250, 259, 267, 283], "training_fil": [30, 156, 169], "transcript": [6, 104, 105, 160, 162, 191, 205, 253], "transcript_for_infer": [161, 162], "transfer": 241, "transform": [2, 32, 38, 160, 162, 232, 245, 246, 259, 267, 276], "transit": [241, 250, 267], "translat": [98, 121, 131, 132, 134, 168, 190, 195, 200, 237, 242, 250, 253, 267, 279, 280, 281, 282, 283], "translation_gaudi": 181, "translation_length": 98, "translation_xeon": 181, "transmiss": 248, "transmit": 273, "transpar": [241, 256, 267], "transpil": 130, "transport": [267, 273], "treat": 254, "tree": [11, 13, 16, 17, 198, 199, 254, 270, 283], "trellix": 238, "trend": [88, 90], "trigger": [123, 124, 195, 256, 281, 282], "trivi": [195, 282], "triviaqa": 267, "troll": 237, "troubleshoot": [252, 282, 283], "troubleshooting_guid": 226, "trqm6": 89, "true": [2, 11, 13, 16, 17, 23, 29, 35, 36, 41, 43, 44, 45, 48, 49, 50, 51, 53, 80, 88, 89, 90, 94, 96, 97, 104, 105, 107, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 161, 162, 164, 172, 173, 174, 178, 179, 184, 195, 197, 198, 199, 202, 205, 206, 207, 208, 209, 211, 212, 216, 217, 219, 227, 229, 230, 232, 245, 253, 260, 261, 263, 264, 270, 273, 282], "truncat": 281, "trunk": 254, "trust": [3, 32, 70, 81, 196, 232, 246, 266, 267, 277], "trust_remote_cod": [45, 122], "trustworthi": [31, 34, 114, 236, 266, 276], "truth": [250, 267], "truthfulqa": [88, 267], "try": [0, 3, 11, 17, 18, 32, 35, 38, 112, 113, 114, 115, 116, 118, 168, 186, 187, 197, 198, 225, 227, 254, 260, 261, 263, 264, 268], "trychroma": 77, "tsai": 249, "tsc": 243, "tt": [2, 103, 107, 190, 191, 213, 238, 242, 249, 252, 279, 280, 281, 282, 284], "ttft": [51, 52], "ttl": 273, "tts_endpoint": [75, 104, 105, 217], "tts_service_host_ip": [104, 105], "tts_service_port": [104, 105], "tune": [11, 17, 18, 32, 38, 51, 52, 89, 90, 110, 191, 199, 250, 258, 265, 266, 267, 277, 282, 283, 284], "tuning_config": 91, "turbo": 253, "turn": [51, 52, 198, 248, 260, 261, 263, 264, 267], "turnkei": [266, 275], "tutori": [232, 254, 260, 261, 263, 264, 272, 283], "tvtqq": 89, "tweak": 255, "twice": [161, 162], "twitter": [137, 138, 236, 238], "two": [9, 17, 23, 26, 27, 33, 34, 43, 44, 45, 46, 47, 50, 55, 56, 63, 67, 70, 72, 73, 74, 89, 91, 100, 107, 109, 114, 118, 121, 130, 139, 172, 178, 179, 198, 201, 203, 204, 221, 226, 227, 238, 241, 245, 254, 256, 267, 268, 272, 274, 282], "two_gaudi": 110, "txt": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 78, 88, 90, 93, 97, 103, 110, 112, 114, 122, 154, 164, 167, 227, 238, 254, 255, 260, 261, 263, 264, 274, 282, 283], "tyour": [111, 113, 164], "type": [5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 89, 91, 94, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 234, 238, 239, 248, 253, 254, 259, 260, 261, 263, 264, 267, 268, 270, 282], "typed_config": 232, "typescript": 130, "typha": 273, "typic": [36, 48, 89, 160, 185, 254, 255, 259], "typical_p": [45, 48, 50, 51, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "typo": [281, 282, 283], "tzchw": 230, "u": [30, 34, 89, 96, 110, 114, 208, 236, 237, 254, 259, 261, 272, 273, 274, 281, 282, 283], "u32_t": 254, "u8": [51, 52], "u8_t": 254, "ubuntu": [115, 194, 200, 234, 255, 260, 261, 263, 264, 273, 274], "udat": 283, "udp": 58, "udpat": 281, "ue": [115, 260, 261, 263, 264], "uefi": 256, "ui": [9, 89, 92, 94, 109, 115, 121, 127, 130, 139, 144, 153, 165, 166, 172, 190, 197, 238, 250, 259, 265, 267, 268, 280, 281, 282, 283], "uklgrigaaabxqvzfzm10ibiaaaabaaearkwaaihyaqacabaaaabkyxrhagaaaaea": [6, 104, 105, 106, 107, 205, 220], "ulimit": [88, 90, 110, 283], "ultim": [245, 254, 259], "unabl": [112, 114], "unaccept": 237, "unauthor": [196, 198], "unavail": 230, "uncertainti": 267, "unclear": 39, "uncom": 80, "uncontrol": 283, "uncov": 88, "undeploi": [226, 228], "under": [1, 9, 12, 20, 23, 24, 77, 80, 87, 89, 92, 102, 159, 193, 194, 195, 198, 225, 238, 241, 244, 245, 246, 247, 248, 249, 250, 254, 259, 266, 267, 281, 282, 283], "undergo": 121, "undergon": 267, "underli": [2, 89, 107, 118, 143, 199, 208, 227, 245, 246, 254, 276], "underlin": 254, "underscor": [199, 254], "understand": [3, 11, 13, 16, 17, 115, 119, 121, 147, 164, 167, 190, 191, 239, 249, 253, 259, 263, 264], "understood": 267, "understudi": 98, "undertak": 241, "unexpect": [238, 255], "unhid": 89, "unicod": 254, "unifi": [35, 160, 248, 282, 283], "uniform": [66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 212, 219, 254, 260, 261, 263, 264], "uninstal": [89, 226, 272, 274], "unintention": 254, "uninterpret": 254, "uniqu": [2, 7, 148, 161, 162, 168, 172, 229, 249, 253, 254, 260, 261, 263, 264], "unit": [91, 99, 238, 282, 283, 285], "unix": [223, 253], "unknown": [98, 199, 267, 281, 282], "unless": [199, 238, 241, 254, 274], "unlik": [2, 89, 94, 245, 246, 276], "unlock": 267, "unnecessari": [281, 282, 283], "unobstruct": 266, "unord": 254, "unpredict": 34, "unprincipl": 32, "unprofession": 237, "unreason": [31, 38], "unsaf": [34, 282], "unsolicit": 237, "unstructur": [10, 267], "unsuccess": [3, 11, 17, 18, 32, 35, 38], "untermin": 254, "until": [55, 57, 64, 80, 89, 109, 123, 124, 184, 197, 241, 253, 273], "unus": [281, 283], "unwelcom": 237, "up": [11, 12, 13, 14, 15, 16, 17, 19, 23, 24, 26, 27, 34, 35, 41, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 63, 64, 67, 69, 70, 72, 73, 74, 77, 79, 90, 91, 95, 96, 100, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 127, 130, 131, 132, 134, 137, 138, 139, 140, 141, 143, 144, 148, 149, 150, 153, 160, 161, 162, 163, 164, 166, 172, 173, 174, 175, 178, 179, 181, 184, 185, 186, 187, 189, 191, 192, 197, 199, 200, 223, 226, 227, 245, 253, 254, 260, 261, 263, 264, 266, 267, 268, 282, 285], "updat": [7, 8, 10, 17, 18, 19, 28, 29, 80, 111, 112, 113, 114, 116, 118, 121, 122, 123, 124, 125, 161, 162, 164, 185, 192, 194, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 219, 221, 223, 227, 228, 230, 234, 238, 250, 254, 255, 260, 261, 263, 264, 267, 272, 273, 274, 280, 281, 282, 283], "update_depend": [201, 203, 204, 221], "update_genaiexampl": 200, "update_manifest": 200, "upgrad": [88, 228, 230, 267, 281, 283], "upload": [18, 19, 67, 92, 108, 111, 112, 113, 114, 116, 117, 119, 120, 145, 146, 154, 161, 162, 164, 167, 184, 190, 199, 202, 227, 249, 259, 281, 282, 283], "upload_fil": 110, "upload_file_base_url": 120, "upload_file_no_rerank": 110, "upload_training_fil": 283, "uploaded_file_1": [11, 14, 17], "uploaded_file_2": [11, 14, 17], "upon": [77, 107, 110, 118, 143, 190, 227, 241], "upper": [89, 91], "upstream": [241, 255, 259, 281, 283], "uptim": 253, "urandom": 198, "uri": [78, 165, 197, 198, 232], "url": [1, 3, 11, 17, 18, 23, 30, 32, 35, 38, 58, 65, 67, 70, 72, 73, 87, 92, 98, 99, 107, 109, 111, 112, 113, 114, 116, 118, 121, 130, 131, 132, 139, 140, 141, 143, 149, 150, 159, 161, 162, 164, 165, 166, 172, 178, 179, 184, 186, 187, 188, 189, 193, 197, 198, 199, 206, 212, 226, 227, 230, 238, 253, 254, 255, 259, 260, 261, 263, 264, 267, 270, 282, 283], "urlencod": [197, 198, 199], "us": [0, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 30, 32, 34, 36, 38, 40, 41, 42, 44, 45, 46, 47, 48, 51, 52, 53, 55, 56, 57, 58, 64, 67, 69, 70, 72, 73, 74, 80, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 100, 101, 102, 104, 105, 110, 111, 113, 116, 117, 122, 125, 126, 127, 131, 132, 133, 134, 136, 137, 138, 140, 141, 143, 144, 147, 148, 149, 150, 151, 153, 156, 159, 160, 161, 162, 163, 165, 166, 168, 169, 172, 173, 174, 175, 177, 178, 179, 181, 183, 185, 186, 187, 189, 190, 191, 192, 193, 195, 197, 198, 199, 201, 202, 203, 204, 206, 208, 213, 218, 220, 221, 223, 225, 228, 231, 236, 237, 238, 239, 241, 243, 244, 246, 248, 249, 250, 251, 252, 253, 254, 255, 257, 259, 262, 266, 267, 268, 271, 275, 276, 277, 280, 281, 282, 283, 284], "usag": [23, 26, 27, 32, 45, 89, 117, 199, 225, 241, 250, 252, 253, 258, 261, 267, 283], "usage_guid": 226, "use_auth_token": 122, "use_flash_attent": [114, 115], "use_openai_kei": 96, "use_remote_servic": [2, 245], "usecas": [64, 283], "useclip": 184, "useless": [282, 283], "user": [2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 28, 29, 32, 33, 34, 35, 36, 38, 39, 41, 42, 45, 50, 51, 52, 53, 58, 59, 60, 65, 67, 70, 72, 73, 74, 75, 90, 94, 100, 102, 107, 109, 111, 112, 114, 115, 118, 119, 120, 121, 123, 124, 127, 128, 129, 130, 136, 137, 138, 139, 143, 144, 153, 156, 160, 161, 162, 164, 165, 167, 168, 172, 176, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 200, 202, 225, 226, 227, 228, 232, 238, 240, 241, 243, 244, 245, 246, 249, 250, 251, 252, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 276, 280, 281, 282, 283, 284], "user_model": 88, "user_queri": [90, 110], "userguid": 272, "userinfo": 197, "usernam": [92, 165, 197, 198, 223, 255, 259, 272, 274], "uservic": [89, 127, 144, 153, 201, 203, 204, 208, 221, 230, 252, 281], "using_microservice_to_implement_chatqna": [244, 251], "usr": [12, 115, 225, 273], "usual": [3, 232, 253, 254], "usvc": [89, 201, 202, 230, 252, 281, 282], "ut": [238, 281, 282, 283, 285], "utf": 254, "util": [11, 13, 16, 17, 18, 19, 20, 23, 24, 25, 30, 33, 34, 36, 37, 39, 42, 45, 49, 51, 52, 53, 56, 57, 58, 65, 67, 70, 72, 73, 74, 91, 97, 104, 105, 107, 111, 112, 113, 114, 116, 118, 121, 123, 124, 126, 131, 132, 134, 139, 140, 141, 143, 147, 149, 150, 157, 158, 160, 161, 162, 163, 164, 166, 170, 171, 173, 174, 175, 178, 179, 181, 184, 185, 186, 187, 189, 191, 196, 223, 225, 227, 250, 253, 255, 259, 260, 261, 263, 264, 267, 274, 281], "uuid": [29, 161, 162], "uvicorn": [57, 64, 77, 282], "ux": 250, "v": [3, 13, 17, 26, 27, 34, 35, 41, 42, 43, 44, 45, 50, 63, 68, 70, 72, 74, 80, 81, 83, 86, 112, 114, 123, 124, 195, 246, 267, 272, 273, 274], "v0": [3, 97, 100, 110, 148, 195, 249, 254, 257, 278, 283], "v1": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 91, 94, 97, 99, 100, 101, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 148, 149, 150, 151, 156, 160, 161, 162, 164, 169, 172, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 191, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 229, 230, 232, 238, 245, 253, 260, 261, 263, 264, 268, 272, 273, 274, 278, 281, 282], "v11": 92, "v13a": 98, "v1alpha1": [89, 232], "v1alpha3": [226, 229, 232], "v1beta1": 199, "v2": [2, 92, 103, 259, 274, 284], "v3": [2, 45, 50, 54, 88, 90, 91, 102, 104, 105, 109, 110, 112, 113, 114, 115, 116, 139, 140, 141, 143, 164, 173, 174, 200, 201, 218, 221, 227, 232, 261, 263, 264, 273], "v6bvq": 89, "v8": 259, "v9": [67, 72, 73, 84, 115, 118, 210, 227, 260, 261, 263, 264], "v95sp": 274, "vagrant": 273, "valid": [5, 51, 52, 95, 103, 109, 110, 121, 130, 139, 148, 165, 172, 198, 229, 238, 248, 249, 265, 266, 267, 281, 282, 283, 284], "validate_servic": [111, 112, 113, 114], "validate_topologi": 93, "valu": [3, 9, 29, 30, 63, 64, 89, 91, 97, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 127, 130, 131, 132, 133, 134, 137, 138, 142, 144, 151, 153, 160, 161, 162, 164, 166, 167, 178, 179, 180, 183, 184, 186, 191, 195, 198, 199, 200, 227, 229, 230, 232, 241, 253, 256, 260, 261, 263, 264, 267, 270, 273, 274, 276, 281, 282, 283], "valuabl": [163, 238, 244, 267], "values_apisix_gw": 197, "vanilla": 259, "var": [95, 100, 225, 273, 274], "vari": [98, 241, 253, 260, 261, 263, 264], "variabl": [3, 9, 10, 30, 57, 58, 64, 69, 80, 86, 95, 108, 110, 119, 120, 128, 129, 135, 143, 145, 146, 151, 154, 155, 167, 176, 182, 198, 199, 218, 238, 259, 273, 282, 283], "variant": 88, "variat": [238, 267], "varieti": [48, 53, 74, 88, 260, 261, 263, 264, 267, 268, 271], "variou": [2, 7, 10, 20, 23, 24, 28, 59, 76, 77, 88, 90, 121, 147, 168, 191, 196, 198, 245, 246, 254, 266, 267, 274, 276], "vast": 147, "vaswani": 98, "vault": 223, "vcpu": 89, "vdm": [183, 184, 191, 277, 283], "vdms_host": [18, 19, 184], "vdms_port": [18, 19, 184], "ve": [0, 57, 112, 113, 123, 131, 140, 149, 161, 178, 186, 199, 205, 206, 207, 208, 209, 211, 212, 217, 219, 254, 255, 273, 274], "vecotor": [113, 114, 115, 116], "vector": [10, 12, 19, 20, 23, 24, 25, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 86, 89, 95, 97, 100, 109, 111, 112, 113, 114, 115, 116, 118, 136, 137, 138, 160, 161, 164, 172, 183, 184, 191, 201, 202, 206, 212, 227, 230, 250, 252, 253, 259, 260, 261, 263, 264, 266, 267, 277, 279, 281, 282, 283], "vector_stor": 78, "vectordb": [14, 65, 78, 81, 86, 109, 160, 183, 190, 279, 284], "vectorstor": [12, 70, 78, 80, 81, 238, 242, 245, 280, 283], "vectorstore_pathwai": 80, "vendor": [130, 160, 177, 185, 238, 266, 267, 283], "venkatesh": 242, "venv": [93, 110, 274], "venvdir": 274, "ver": 234, "verbal": 249, "verbatim": 253, "verbos": 198, "veri": [57, 74, 95, 97, 115, 238, 261, 263, 264, 267, 274], "veriabl": 115, "verifi": [42, 86, 107, 111, 112, 113, 118, 148, 194, 198, 227, 238, 255, 267, 268, 273], "versatil": 58, "version": [1, 2, 3, 17, 18, 19, 48, 87, 93, 109, 110, 112, 114, 115, 116, 121, 130, 136, 139, 143, 159, 168, 172, 190, 193, 194, 197, 199, 200, 222, 223, 225, 228, 230, 234, 237, 241, 245, 246, 254, 260, 261, 263, 264, 266, 267, 268, 273, 274, 276, 280, 281, 282, 283], "versu": 267, "vertex": [11, 17, 18], "vertic": [250, 256, 259, 266, 267], "vespa": 267, "vfv45": 89, "via": [2, 3, 29, 48, 51, 52, 56, 74, 109, 111, 112, 113, 114, 116, 121, 123, 124, 127, 130, 131, 132, 137, 138, 139, 140, 141, 144, 145, 146, 149, 150, 153, 154, 155, 161, 162, 163, 164, 165, 167, 172, 173, 178, 179, 184, 186, 187, 201, 203, 204, 221, 230, 237, 238, 241, 245, 252, 253, 254, 259, 260, 261, 263, 264, 267, 274, 282], "victoriametr": 250, "vicuna": [160, 162, 185], "videl": 283, "video": [19, 64, 74, 160, 161, 162, 183, 184, 191, 249, 272, 277, 282, 283, 284], "video1": 12, "video2": 12, "video_fn": [161, 162], "video_id": [161, 162], "video_nam": 184, "video_url": [57, 64, 184], "videonam": [161, 162], "videoname_uuid": [161, 162], "videoqna": [64, 283], "videoragqna": 283, "view": [32, 48, 94, 115, 119, 120, 164, 166, 167, 176, 198, 238, 254, 255, 259, 261, 263, 264, 267], "viewer": [165, 198], "viewpoint": 237, "vim": [3, 48, 92, 259, 283], "violat": [237, 241], "violenc": 34, "virtu": 198, "virtual": [93, 223, 232, 255, 256, 274], "virtualenv": 93, "virtualservic": 232, "visibl": [237, 241, 267], "vision": [57, 160, 183, 267, 284], "visit": [121, 160, 255, 268, 274], "visual": [55, 56, 88, 90, 160, 189, 191, 200, 223, 231, 249, 250, 258, 259, 265, 267], "visualchat": 250, "visualqna": [88, 90, 168, 242, 281, 282, 283], "visualqna_gaudi": 189, "visualqna_xeon": 189, "visuralqna": 187, "vit": [183, 184, 191], "vital": [65, 67, 70, 72, 73, 74, 230], "vite_backend_service_endpoint_chatqna": 167, "vite_backend_service_endpoint_codegen": 167, "vite_backend_service_endpoint_docsum": 167, "vite_backend_service_endpoint_faqgen": 167, "vite_chat_history_create_endpoint": 167, "vite_chat_history_delete_endpoint": 167, "vite_chat_history_get_endpoint": 167, "vite_code_gen_url": 128, "vite_dataprep_delete_file_endpoint": 167, "vite_dataprep_get_file_endpoint": 167, "vite_dataprep_service_endpoint": 167, "vite_doc_sum_url": [145, 154], "vite_keycloak_service_endpoint": 167, "vite_prompt_service_create_endpoint": 167, "vite_prompt_service_get_endpoint": 167, "vllm": [2, 9, 42, 44, 46, 47, 50, 109, 190, 238, 247, 252, 263, 267, 277, 280, 281, 282, 283, 284], "vllm_cpu_kvcache_spac": [45, 261], "vllm_endpoint": [51, 52], "vllm_llm_endpoint": [45, 261, 264], "vllm_openvino_cpu_kv_cache_precis": [51, 52], "vllm_openvino_enable_quantized_weight": [51, 52], "vllm_openvino_kvcache_spac": [51, 52], "vllm_ray_endpoint": 53, "vllm_servic": [45, 264], "vllmopenai": [51, 112, 114], "vm": [115, 261, 263, 264], "vmware": [236, 266], "voic": [108, 249], "vol": 197, "volum": [20, 23, 24, 34, 42, 57, 63, 70, 72, 74, 79, 86, 106, 115, 117, 125, 127, 133, 142, 144, 151, 153, 166, 180, 184, 188, 232, 245, 261, 263, 264, 282], "volumemod": 200, "volumemount": 232, "volumesourc": 232, "vote": 240, "vpc": 272, "vqa": 185, "vtt": 12, "vulner": [238, 243, 244], "vwqqj": 274, "vxlancrosssubnet": 273, "w": [197, 198, 238, 283], "w200": 254, "wa": [0, 35, 95, 98, 107, 115, 118, 199, 227, 237, 253, 254, 261, 263, 264, 267], "wai": [2, 12, 17, 18, 23, 26, 27, 45, 48, 76, 93, 95, 101, 109, 110, 112, 114, 121, 123, 124, 130, 139, 147, 168, 172, 191, 194, 234, 237, 241, 243, 246, 249, 252, 254, 260, 261, 263, 264, 271, 272, 274], "wait": [2, 55, 64, 77, 80, 90, 112, 115, 168, 184, 186, 187, 197, 208, 209, 261, 263, 264, 273], "wait_util_all_pod_readi": 283, "walk": [255, 260, 261, 263, 264], "wang": [87, 242], "want": [3, 5, 29, 36, 42, 51, 52, 53, 58, 69, 80, 91, 92, 96, 102, 103, 109, 110, 111, 112, 113, 114, 116, 118, 130, 131, 132, 139, 140, 141, 143, 149, 150, 151, 161, 164, 168, 186, 194, 198, 200, 201, 203, 226, 227, 229, 230, 238, 244, 245, 254, 259, 260, 261, 263, 264, 266, 268, 270, 273, 274], "ward": 98, "ware": 282, "warm": [46, 47, 90, 115, 261, 263, 264], "warm_up": 90, "warn": [89, 115, 225, 229, 234, 260, 261, 263, 264, 281, 282, 283], "warp": [51, 52, 53], "wasn": 254, "watch": [30, 225, 272, 283], "wav2lip": 249, "wav2lip_onli": 249, "we": [0, 2, 3, 5, 11, 13, 16, 17, 18, 19, 20, 23, 26, 27, 30, 32, 34, 35, 38, 42, 50, 51, 52, 53, 58, 64, 69, 77, 80, 88, 89, 91, 92, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 126, 130, 131, 132, 134, 139, 140, 141, 143, 147, 148, 149, 150, 151, 157, 158, 160, 161, 162, 164, 168, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 191, 194, 196, 198, 200, 202, 223, 225, 227, 228, 232, 234, 237, 238, 245, 247, 249, 252, 253, 254, 255, 256, 258, 260, 261, 263, 264, 265, 266, 267, 268, 272, 273, 274, 277, 281], "weak": 267, "weapon": 34, "wearegoingonbullrun": [161, 162], "wearegoingonbullrun_6d13cf26": [161, 162], "wearegoingonbullrun_7ac553a1": [161, 162], "wearegoingonbullrun_8c7461df": [161, 162], "weather": 3, "weaviat": [267, 284], "web": [58, 94, 95, 112, 121, 165, 173, 174, 176, 190, 225, 241, 252, 254, 255, 267, 277], "web_listen_address": 225, "web_retriev": [86, 173, 174, 219, 238, 242], "web_retriever_service_host_ip": [173, 174], "web_retriever_service_port": [173, 174], "webhook": [229, 282], "weblink": 249, "webpag": 45, "websearch": [5, 100, 191, 280], "websit": [3, 93, 95, 195, 236, 243, 254, 255, 274], "week": 250, "weekli": 283, "wei": 98, "weight": [48, 51, 52, 99, 260, 261, 263, 264, 267], "weight_shar": 115, "welcom": [2, 168, 237, 238, 243, 267, 275], "well": [35, 48, 69, 89, 95, 109, 121, 127, 130, 139, 144, 153, 166, 172, 196, 198, 201, 223, 225, 237, 243, 247, 254, 255, 259, 266, 267], "wer": [103, 283], "were": [3, 95, 237, 254, 255, 267], "weren": 255, "west": [272, 273], "wf": 282, "wget": [12, 92, 109, 112, 161, 162, 198, 202, 225, 259, 273], "what": [2, 3, 6, 17, 26, 27, 35, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 56, 57, 58, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 89, 95, 104, 105, 109, 111, 112, 113, 114, 115, 116, 117, 118, 139, 140, 141, 148, 149, 150, 161, 162, 164, 168, 172, 173, 174, 175, 178, 179, 184, 186, 187, 188, 189, 197, 198, 201, 202, 209, 211, 212, 214, 215, 216, 218, 219, 227, 230, 237, 238, 239, 243, 244, 253, 254, 255, 260, 261, 263, 264, 267, 270, 275], "wheel": [250, 255], "when": [6, 12, 35, 37, 61, 63, 75, 89, 94, 98, 100, 107, 112, 118, 119, 121, 130, 143, 160, 164, 167, 178, 179, 183, 184, 194, 197, 199, 200, 227, 237, 238, 239, 241, 242, 244, 248, 253, 254, 255, 267, 274, 281, 282, 283], "whenev": 80, "where": [2, 5, 45, 65, 67, 70, 72, 73, 74, 89, 95, 98, 115, 117, 119, 120, 123, 124, 125, 133, 142, 161, 162, 164, 167, 168, 176, 180, 188, 198, 201, 203, 240, 241, 245, 246, 247, 249, 253, 254, 255, 256, 260, 261, 263, 264, 267], "wherea": 249, "wherev": 267, "whether": [2, 53, 89, 98, 112, 113, 114, 116, 139, 168, 195, 199, 202, 238, 241, 244, 249, 253, 255, 267], "which": [2, 5, 17, 23, 26, 27, 35, 36, 42, 45, 54, 58, 88, 89, 90, 95, 97, 98, 103, 107, 109, 110, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 134, 136, 137, 138, 140, 141, 143, 145, 146, 148, 149, 150, 154, 155, 156, 160, 164, 167, 168, 174, 175, 181, 184, 189, 190, 194, 195, 196, 197, 198, 200, 214, 215, 216, 225, 227, 230, 237, 238, 241, 245, 246, 248, 250, 253, 254, 256, 259, 260, 261, 263, 264, 266, 267, 268, 273, 274, 276, 281, 283], "while": [6, 11, 97, 115, 130, 166, 172, 191, 197, 198, 241, 248, 249, 253, 254, 259, 260, 261, 263, 264, 266, 267, 268, 270, 274, 276, 282], "whisper": [2, 12, 102, 103, 104, 105, 107, 162, 190, 191, 205, 238, 252, 281, 282], "whisper_model": [12, 161, 162], "whisper_serv": 6, "whitelist": 225, "whitepap": 267, "whitespac": 98, "whl": 30, "who": [3, 6, 75, 99, 104, 105, 109, 112, 114, 195, 198, 213, 217, 241, 281], "whole": [89, 96, 98, 246, 254, 282], "whose": 225, "why": [48, 199, 237, 238, 244, 272], "wide": [89, 109, 136, 137, 138, 168, 172, 196, 254, 259, 265, 266, 267], "widespread": 267, "width": [254, 256], "wife": 99, "wiki": [237, 254, 276], "wikinewscommun": [137, 138], "wikipedia": [254, 267], "willing": 243, "win": [267, 281], "window": [48, 111, 112, 113, 123, 124, 131, 140, 149, 161, 178, 186, 195, 254, 255, 284], "winogrand": 88, "wish": [29, 99, 160, 260, 261, 263, 264, 267], "with_metadata": 80, "with_rerank": 110, "within": [2, 34, 65, 67, 70, 72, 73, 74, 89, 104, 105, 111, 112, 113, 114, 116, 123, 124, 140, 141, 147, 149, 150, 160, 161, 162, 163, 165, 172, 173, 174, 178, 179, 184, 186, 187, 198, 201, 229, 236, 237, 241, 242, 243, 245, 246, 250, 254, 255, 256, 259, 260, 261, 263, 264, 267, 276, 283], "without": [32, 38, 46, 47, 89, 90, 94, 110, 112, 114, 119, 120, 164, 167, 176, 190, 197, 198, 200, 230, 232, 237, 238, 241, 248, 254, 255, 259, 262, 267, 274, 281, 282, 283], "without_rerank": [112, 114], "wizard": 250, "wmt": 98, "wo": 283, "won": [57, 197, 273], "word": [32, 98, 103, 156, 182, 191, 254], "word_token": 98, "work": [2, 3, 17, 51, 52, 69, 89, 94, 95, 97, 100, 109, 113, 115, 117, 121, 125, 130, 133, 139, 142, 161, 168, 172, 180, 186, 188, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 219, 221, 238, 240, 241, 244, 246, 248, 249, 253, 254, 267, 270, 272, 273, 276], "work1": 110, "work2": 110, "work3": 110, "workaround": 89, "workdai": 267, "workdir": [95, 100], "worker": [5, 30, 53, 77, 89, 100, 191, 273, 274], "worker1": [110, 273], "worker2": 110, "worker3": 110, "workflow": [2, 20, 23, 24, 42, 121, 130, 137, 138, 163, 172, 183, 191, 195, 236, 238, 240, 241, 244, 245, 246, 248, 250, 253, 267, 275, 276, 280, 281, 282, 283, 285], "workload": [93, 110, 112, 113, 117, 125, 133, 140, 142, 149, 161, 178, 180, 186, 188, 194, 195, 196, 198, 200, 230, 234, 250, 252, 266, 273, 283], "workloadselector": 232, "worklod": 281, "workpath": 3, "workplac": 267, "workstat": 255, "world": [2, 21, 22, 25, 26, 27, 78, 97, 110, 130, 131, 132, 133, 134, 147, 204, 246, 248, 250, 259, 276, 277], "worth": [123, 124], "worthnot": 249, "would": [29, 45, 89, 98, 115, 164, 167, 199, 200, 201, 230, 238, 254, 256, 260, 261, 263, 264, 267, 281], "wouldn": 254, "wrap": [3, 99], "wrapper": 283, "write": [95, 161, 162, 195, 254, 256, 274, 283], "written": [119, 120, 123, 124, 130, 164, 167, 176, 190, 191, 237, 254, 255], "wrong": 282, "wrongli": 253, "wukong": 86, "wvktt": 274, "www": [11, 14, 17, 18, 98, 161, 162, 186, 187, 188, 189, 197, 198, 236, 237, 241, 272], "x": [3, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 86, 90, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 137, 138, 139, 140, 141, 143, 148, 149, 150, 156, 160, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 181, 184, 185, 189, 197, 198, 202, 206, 207, 208, 209, 211, 212, 214, 215, 216, 219, 227, 229, 230, 236, 238, 254, 260, 261, 263, 264, 270], "x86": [51, 52], "xbwtc": 274, "xeon": [2, 6, 22, 23, 32, 38, 40, 44, 55, 57, 75, 89, 100, 124, 126, 127, 134, 136, 138, 141, 143, 144, 150, 153, 162, 163, 166, 168, 171, 175, 181, 189, 191, 195, 200, 201, 202, 203, 223, 227, 238, 247, 249, 259, 261, 262, 263, 265, 266, 268, 279, 280, 281, 282, 283, 284, 285], "xf": 95, "xft": [280, 283], "xinyao": 242, "xinyu": 242, "xl": 284, "xlwsb": 273, "xml": 232, "xoen": 137, "xpost": [6, 40, 55, 75, 186, 187, 205, 213, 217, 220], "xpu": 138, "xrhw5": 273, "xue": 242, "xuhui": 242, "xvf": 12, "xvz": 273, "xvzf": [92, 259], "xx": [110, 121, 225], "xxx": [58, 86, 109, 112, 114, 244, 251], "xxx_model_id": [109, 112, 113, 114, 116], "xxxx": [13, 106, 151], "xz": 12, "y": [11, 13, 16, 17, 18, 19, 110, 254, 273, 274], "yaml": [3, 11, 12, 13, 14, 15, 16, 17, 19, 23, 24, 26, 27, 34, 41, 43, 44, 45, 46, 47, 50, 57, 58, 63, 64, 67, 69, 70, 72, 73, 74, 79, 88, 90, 93, 96, 100, 102, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 130, 133, 134, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 160, 161, 162, 164, 166, 172, 175, 180, 181, 183, 184, 185, 186, 187, 188, 189, 197, 198, 199, 200, 201, 203, 204, 216, 218, 221, 223, 225, 226, 227, 228, 230, 232, 238, 247, 250, 260, 261, 263, 264, 268, 270, 273, 280, 281, 282, 283, 284], "yaml_file_path": 245, "yang": 234, "ycguo": 242, "ye": [5, 242, 273], "year": [1, 35, 87, 95, 98, 159, 193, 241], "yellow": [161, 162, 267], "yellowbrick": [236, 266], "yeoh": 242, "yet": [2, 61, 63, 89, 109, 123, 199, 245, 246, 249, 259, 261, 267, 276], "yew": 98, "ying": 242, "yingchun": 242, "yinghu5": 283, "yixuantt": 97, "yml": [77, 92, 259, 274, 282], "yogesh": 242, "you": [0, 1, 2, 3, 5, 6, 9, 11, 12, 13, 14, 16, 17, 18, 23, 25, 26, 27, 29, 33, 34, 36, 37, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 61, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 153, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 168, 170, 171, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 238, 239, 243, 244, 253, 254, 255, 256, 259, 260, 261, 263, 264, 268, 270, 272, 273, 274, 276, 279], "your": [1, 2, 9, 17, 23, 26, 27, 32, 34, 35, 38, 39, 45, 48, 50, 58, 67, 70, 72, 73, 74, 77, 79, 80, 87, 88, 92, 93, 94, 95, 96, 97, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 153, 159, 160, 161, 162, 163, 164, 165, 166, 168, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 189, 191, 192, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 208, 209, 216, 218, 221, 223, 225, 226, 227, 228, 234, 239, 243, 244, 253, 254, 255, 259, 260, 261, 262, 263, 264, 265, 268, 270, 272, 273, 275, 276], "your_async_func": 9, "your_backend_service_ip": 58, "your_chatqna_ip": 97, "your_chatqna_port": 97, "your_chosen_microservic": 45, "your_client_nam": 198, "your_client_secret": 198, "your_collection_nam": [11, 16, 18, 66], "your_cse_id": 172, "your_dataprep_ip": 97, "your_dataprep_port": 97, "your_document_nam": 11, "your_embed": [66, 67, 68, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 212, 219, 260, 261, 263, 264], "your_embedding_dimens": 71, "your_embedding_endpoint": 11, "your_embedding_ip": 97, "your_embedding_port": 97, "your_embedding_port_microservic": 23, "your_emdding_endpoint": 66, "your_fil": [13, 16, 17, 113], "your_frontend_service_ip": 58, "your_google_api_kei": [172, 228, 234], "your_google_cse_id": [228, 234], "your_hf_api_token": [12, 17, 19, 34, 41, 43, 44, 45, 50, 53, 63, 111, 113, 123, 124, 137, 138, 140, 141, 143, 149, 150, 164, 184], "your_hf_chatprocessor": 45, "your_hf_llm_model": [30, 34, 41, 43, 44, 45, 50, 53], "your_hf_token": [19, 72, 97, 112, 114, 226, 228, 234], "your_host_ip": 11, "your_http_proxi": [8, 11, 13, 15, 16, 18, 19, 29, 41, 60, 66, 68, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 149, 150, 160, 161, 162, 172, 178, 179, 184, 185, 186, 187, 260, 261, 263, 264, 268], "your_https_proxi": [109, 110, 112, 114, 116, 121, 130, 131, 132, 139, 160, 172, 178, 179, 185, 268], "your_huggingface_api_token": [42, 109, 110, 111, 112, 113, 114, 116, 121, 130, 131, 132, 139, 164, 172, 178, 179, 184, 260, 261, 263, 264, 268], "your_huggingface_token": [30, 148, 157, 158, 170, 171], "your_index_nam": [14, 17, 67, 70, 71, 72, 73, 74], "your_ip": [11, 12, 13, 14, 16, 17, 30, 34, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 86, 88, 122, 148, 149, 150, 156, 169, 282], "your_llm_port": 97, "your_milvus_host_ip": [11, 66], "your_mmei_port": 23, "your_neo4j_host_ip": 68, "your_neo4j_password": [13, 68], "your_neo4j_url": [13, 68], "your_neo4j_usernam": [13, 68], "your_nginx_ip": 58, "your_nginx_port": [58, 112, 114, 116, 130, 131, 132, 178, 179], "your_no_proxi": [11, 13, 16, 66, 68, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 149, 150, 160, 161, 162, 164, 172, 178, 179, 184, 185, 186, 187, 260, 261, 263, 264, 268], "your_path": 79, "your_port": [11, 17, 26, 27], "your_predictionguard_api_kei": [25, 33, 36, 37, 39, 56], "your_proxi": 48, "your_qdrant_host_ip": 71, "your_realm_nam": 198, "your_redis_index_nam": 12, "your_retrieval_ip": 97, "your_retrieval_port": 97, "your_sync_func": 9, "your_tei_embedding_ip": 97, "your_tei_embedding_port": 97, "your_tei_endpoint": 18, "yourownid": 219, "yourownkei": 219, "yourowntoken": [106, 117, 125, 127, 133, 142, 144, 151, 153, 166, 180], "yourport": [26, 27], "yourself": [109, 112, 114, 116, 223, 268], "yourtoken": 226, "youtub": 272, "yq": 230, "yuhan": 234, "yuningqiu": 249, "yy": [244, 251], "z": [57, 64, 83, 284], "z5qpv": 273, "zblxr": 273, "zephyr": 42, "zero": [199, 267], "zh": [22, 97, 282], "zhang": 242, "zhao": 248, "zhu": 98, "zhxie": 248, "zilliz": [236, 266], "ztwfg": 274, "zxhdl": 225, "zxvf": [92, 259], "\u00b5": [0, 240, 243, 244, 252, 253, 254, 255, 256, 257, 258, 259, 262, 265, 269, 275, 276, 277, 278], "\u6211\u7231\u673a\u5668\u7ffb\u8bd1": [178, 179, 180, 181]}, "titles": ["Page Not Found", "Legal Information", "Generative AI Components (GenAIComps)", "Agent Microservice", "Plan Execute", "RAG Agent", "ASR Microservice", "\ud83d\udcdd Chat History Microservice", "\ud83d\udcdd Chat History Microservice with MongoDB", "Telemetry for OPEA", "Dataprep Microservice", "Dataprep Microservice with Milvus", "Dataprep Microservice for Multimodal Data with Redis", "Dataprep Microservice with Neo4J", "Dataprep Microservice with PGVector", "Dataprep Microservice with Pinecone", "Dataprep Microservice with Qdrant", "Dataprep Microservice with Redis", "Dataprep Microservice with VDMS", "Multimodal Dataprep Microservice with VDMS", "Embeddings Microservice", "build Mosec endpoint docker image", "Embedding Server", "Multimodal Embeddings Microservice", "Multimodal CLIP Embeddings Microservice", "Embedding Generation Prediction Guard Microservice", "Embeddings Microservice with Langchain TEI", "Embeddings Microservice with Llama Index TEI", "\ud83d\udde8 Feedback Management Microservice", "\ud83d\udde8 Feedback Management Microservice with MongoDB", "Fine-tuning Microservice", "Trust and Safety with LLM", "Bias Detection Microservice", "Factuality Check Prediction Guard Microservice", "Guardrails Microservice", "PII Detection Microservice", "PII Detection Prediction Guard Microservice", "Prompt Injection Detection Prediction Guard Microservice", "Toxicity Detection Microservice", "Toxicity Checking Prediction Guard Microservice", "Image-to-Video Microservice", "Intent Detection Microservice by TGI", "Knowledge Graph Microservice", "TGI FAQGen LLM Microservice", "Document Summary TGI Microservice", "LLM Microservice", "LLM Native Microservice", "LLM Native Microservice", "Introduction", "Prediction Guard Introduction", "TGI LLM Microservice", "vLLM Endpoint Service", "vLLM Endpoint Service", "VLLM-Ray Endpoint Service", "LM-Eval Microservice", "LVM Microservice", "LVM Prediction Guard Microservice", "LVM Microservice", "Nginx for Microservice Forwarding", "\ud83e\uddfe Prompt Registry Microservice", "\ud83e\uddfe Prompt Registry Microservice with MongoDB", "Reranking Microservice", "build reranking Mosec endpoint docker image", "Reranking Microservice", "Rerank Microservice", "Retriever Microservice", "Retriever Microservice with Milvus", "Retriever Microservice", "Retriever Microservice with Neo4J", "Retriever Microservice with Pathway", "Retriever Microservice", "Retriever Microservice with Qdrant", "Retriever Microservice", "Retriever Microservice", "Retriever Microservice", "TTS Microservice", "Vectorstores Microservice", "Start Chroma server", "Start LanceDB Server", "Start Milvus server", "Start the Pathway Vector DB Server", "Start PGVector server", "Pinecone setup", "Start Qdrant server", "Start Redis server", "Start VDMS server", "Web Retriever Microservice", "Legal Information", "GenAIEval", "Kubernetes Platform Optimization with Resource Management", "OPEA Benchmark Tool", "Auto-Tuning for ChatQnA: Optimizing Resource Allocation in Kubernetes", "Setup Prometheus and Grafana to visualize microservice metrics", "StressCli", "locust scripts for OPEA ChatQnA", "CRAG Benchmark for Agent QnA systems", "AutoRAG to evaluate the RAG system performance", "Evaluation Methodology", "Metric Card for BLEU", "OPEA adaption of ragas (LLM-as-a-judge evaluation of Retrieval Augmented Generation)", "Agents for Question Answering", "Retrieval tool for agent", "AudioQnA Application", "AudioQnA accuracy Evaluation", "Build Mega Service of AudioQnA on Xeon", "Build Mega Service of AudioQnA on Gaudi", "Deploy AudioQnA in a Kubernetes Cluster", "Deploy AudioQnA in Kubernetes Cluster on Xeon and Gaudi", "AudioQnA", "ChatQnA Application", "ChatQnA Benchmarking", "Build Mega Service of ChatQnA on AIPC", "Build Mega Service of ChatQnA on Xeon", "Build Mega Service of ChatQnA (with Qdrant) on Xeon", "Build MegaService of ChatQnA on Gaudi", "How to Check and Validate Micro Service in the GenAI Example", "Build MegaService of ChatQnA on NVIDIA GPU", "Deploy ChatQnA in Kubernetes Cluster", "Deploy ChatQnA in Kubernetes Cluster on Xeon and Gaudi", "ChatQnA Conversational UI", "ChatQnA Customized UI", "Code Generation Application", "CodeGen accuracy Evaluation", "Build MegaService of CodeGen on Xeon", "Build MegaService of CodeGen on Gaudi", "Deploy CodeGen in Kubernetes Cluster", "Deploy CodeGen in a Kubernetes Cluster", "Deploy CodeGen with ReactUI", "Code Gen", "Code Gen", "Code Translation Application", "Build Mega Service of CodeTrans on Xeon", "Build Mega Service of CodeTrans on Gaudi", "Deploy CodeTrans in Kubernetes Cluster", "Deploy CodeTrans in a Kubernetes Cluster", "Code Translation", "DocRetriever Application", "DocRetriever Application with Docker", "DocRetriever Application with Docker", "Document Summarization Application", "Build Mega Service of Document Summarization on Intel Xeon Processor", "Build MegaService of Document Summarization on Gaudi", "Deploy DocSum in Kubernetes Cluster", "Deploy DocSum in Kubernetes Cluster", "Deploy DocSum with ReactUI", "Doc Summary React", "Doc Summary", "FAQ Generation Application", "FaqGen Evaluation", "Build Mega Service of FAQ Generation on Intel Xeon Processor", "Build MegaService of FAQ Generation on Gaudi", "Deploy FaqGen in Kubernetes Cluster", "<no title>", "Deploy FaqGen with ReactUI", "Doc Summary React", "FAQ Generation", "Instruction Tuning", "Deploy Instruction Tuning Service on Xeon", "Deploy Instruction Tuning Service on Gaudi", "Legal Information", "MultimodalQnA Application", "Build Mega Service of MultimodalQnA on Xeon", "Build Mega Service of MultimodalQnA on Gaudi", "Productivity Suite Application", "Build Mega Service of Productivity Suite on Xeon", "\ud83d\udd10 Keycloak Configuration Setup", "\ud83d\ude80 Deploy ProductivitySuite with ReactUI", "Productivity Suite React UI", "Generative AI Examples", "Rerank Model Finetuning", "Deploy Rerank Model Finetuning Service on Xeon", "Deploy Rerank Model Finetuning Service on Gaudi", "SearchQnA Application", "Build Mega Service of SearchQnA on Xeon", "Build Mega Service of SearchQnA on Gaudi", "Deploy SearchQnA in a Kubernetes Cluster", "Neural Chat", "Translation Application", "Build Mega Service of Translation on Xeon", "Build MegaService of Translation on Gaudi", "Deploy Translation in Kubernetes Cluster", "Deploy Translation in a Kubernetes Cluster", "Language Translation", "VideoQnA Application", "Build Mega Service of VideoQnA on Xeon", "Visual Question and Answering", "Build Mega Service of VisualQnA on Xeon", "Build MegaService of VisualQnA on Gaudi", "Deploy VisualQnA in Kubernetes Cluster", "Deploy VisualQnA in a Kubernetes Cluster", "Docker Images", "Supported Examples", "Development", "Legal Information", "GenAIInfra", "Release Branches", "Authentication and authorization", "Authentication and Authorization with APISIX and OIDC based Identity provider (Keycloak)", "Leveraging Istio to compose an OPEA Pipeline with authentication and authorization enabled", "HorizontalPodAutoscaler (HPA) support", "Helm charts for deploying GenAI Components and Examples", "ChatQnA", "ChatQnA Troubleshooting", "CodeGen", "CodeTrans", "asr", "data-prep", "embedding-usvc", "guardrails-usvc", "llm-uservice", "redis-vector-db", "reranking-usvc", "retriever-usvc", "speecht5", "tei", "teirerank", "tgi", "tts", "vllm", "web-retriever", "whisper", "DocSum", "Intel\u00ae Gaudi\u00ae Base Operator for Kubernetes", "How-To Setup Observability for OPEA Workload in Kubernetes", "Deploy Kubernetes add-ons for OPEA", "memory bandwidth exporter", "genai-microservices-connector(GMC)", "ChatQnA Use Cases in Kubernetes Cluster via GMC", "Helm chart for genai-microservices-connector(GMC)", "Troubleshooting GMC Custom Resource\uff08CR\uff09", "Usage guide for genai-microservices-connector(GMC)", "OPEA Pipeline Proxy", "Guardrails", "Scripts and tools", "NVIDIA GPU Quick-Start Guide", "Deploy Autoscaling Ray Cluster with KubeRay in Kubernetes Cluster", "OPEA Project", "Contributor Covenant Code of Conduct", "Contribution Guidelines", "Reporting a Vulnerability", "Technical Steering Committee (TSC)", "Technical Charter (the \u201cCharter\u201d) for OPEA a Series of LF Projects, LLC", "OPEA Project Code Owners", "OPEA Community", "Request for Comments (RFCs)", "24-05-16 GenAIExamples-001 Using MicroService to Implement ChatQnA", "24-05-16 OPEA-001 Overall Design", "24-05-24 OPEA-001 Code Structure", "24-06-21-OPEA-001-Guardrails-Gateway", "24-08-02-OPEA-AIAvatarChatbot", "24-08-07 OPEA-001 OPEA GenAIStudio", "RFC Archive", "Deploying GenAI", "OPEA API Service Spec (v0.9)", "Documentation Guidelines", "OPEA Documentation Generation", "Drawings Using Graphviz", "Developer Guides", "Evaluating GenAI", "ChatQnA Sample Guide", "Single node on-prem deployment with Ollama on AIPC", "Single node on-prem deployment with vLLM or TGI on Gaudi AI Accelerator", "ChatQnA Example Deployment Options", "Single node on-prem deployment with TGI on Nvidia gpu", "Single node on-prem deployment with vLLM or TGI on Xeon Scalable processors", "GenAI Examples", "OPEA Frequently Asked Questions", "Open Platform for Enterprise AI (OPEA) Framework Draft Proposal", "Getting Started with OPEA", "Glossary of Terms", "GenAI-microservices-connector(GMC) Installation", "Kubernetes Installation Options", "Kubernetes Installation using AWS EKS Cluster", "Kubernetes installation demo using kubeadm", "Kubernetes installation using Kubespray", "OPEA Project Documentation", "OPEA Overview", "GenAI Microservices", "Release Notes", "OPEA Release Notes v0.6", "OPEA Release Notes v0.7", "OPEA Release Notes v0.8", "OPEA Release Notes v0.9", "OPEA Release Notes v1.0", "OPEA 2024 - 2025 Roadmap", "OPEA CI/CD Roadmap"], "titleterms": {"": [99, 266, 268, 281, 282, 283], "0": [273, 283], "001": [245, 246, 247, 248, 250], "02": 249, "05": [245, 246, 247], "06": 248, "07": 250, "08": [249, 250], "1": [3, 6, 11, 12, 14, 17, 18, 19, 22, 23, 24, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 79, 81, 82, 83, 84, 85, 92, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 156, 157, 158, 161, 162, 164, 169, 170, 171, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 250, 267, 273, 274, 285], "10": [114, 116], "16": [223, 245, 246], "2": [3, 6, 11, 12, 14, 17, 18, 19, 22, 23, 24, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 79, 81, 82, 83, 84, 85, 92, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 156, 157, 158, 161, 162, 164, 169, 170, 171, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 250, 267, 273, 274, 285], "2024": [240, 284], "2025": 284, "21": 248, "24": [245, 246, 247, 248, 249, 250], "3": [3, 6, 11, 12, 14, 17, 18, 19, 22, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 81, 82, 92, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 156, 161, 162, 164, 169, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 250, 267, 273, 274, 285], "4": [3, 11, 12, 14, 17, 18, 19, 26, 27, 30, 32, 34, 35, 38, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 58, 63, 67, 70, 71, 72, 73, 74, 104, 105, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 267, 274, 285], "5": [3, 11, 12, 14, 17, 41, 70, 72, 74, 110, 111, 112, 113, 114, 115, 116, 137, 138, 141, 150, 161, 162, 164, 173, 174, 184, 195, 223, 241, 267, 274], "6": [12, 104, 105, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 184, 240, 241, 267, 279], "7": [111, 112, 113, 114, 115, 116, 164, 184, 241, 280], "8": [112, 113, 114, 115, 116, 164, 241, 281], "9": [112, 114, 116, 164, 253, 282], "A": [11, 12, 14, 17, 41, 43, 44, 45, 46, 47, 50, 63, 67, 70, 72, 73, 74, 202, 267, 276], "In": [48, 248], "It": 259, "Not": 0, "On": [106, 117, 125, 133, 142, 151, 180, 188], "The": 238, "To": [55, 194, 223, 234, 238], "Will": 266, "With": [49, 69], "a1": 267, "a2": 267, "a3": 267, "a4": 267, "a5": 267, "a6": 267, "about": 225, "acceler": 261, "accept": 238, "access": [48, 163, 223, 276], "account": 82, "accuraci": [91, 103, 122], "acknowledg": 97, "acronym": 266, "ad": 256, "adapt": 99, "add": [35, 224, 274], "addit": [2, 88, 168, 194, 238], "addon": 252, "adjust": [194, 230, 234], "affin": 89, "after": [137, 138], "against": 93, "agent": [3, 5, 95, 100, 101, 277], "agentqna": [191, 265], "ai": [2, 109, 123, 124, 168, 261, 266, 267, 284], "aiavatarchatbot": 249, "aipc": [111, 260], "align": 89, "all": [111, 112, 113, 114, 116, 123, 124, 137, 138, 161, 162, 164, 184, 186, 187, 223, 238, 260, 261, 263, 264], "alloc": 91, "altern": [245, 246, 248, 254], "amend": 241, "an": [78, 123, 131, 198, 230, 272], "anim": 249, "ansibl": 274, "answer": [95, 100, 185], "api": [3, 11, 12, 14, 17, 48, 82, 253], "apisix": [196, 197], "app": 82, "appendix": 267, "appli": [112, 113, 140, 149, 161, 178, 186], "applic": [102, 109, 121, 126, 130, 134, 136, 137, 138, 139, 147, 160, 163, 172, 175, 177, 181, 183, 189, 250, 265], "approach": 250, "ar": 266, "architectur": [109, 168, 226, 232, 250, 259, 267, 276], "archiv": 251, "ascii": 254, "ask": 266, "asr": [6, 102, 103, 104, 105, 205, 253, 277], "assess": 267, "asset": 241, "assist": [123, 124], "attribut": 237, "audioqna": [102, 103, 104, 105, 106, 107, 108, 191, 265], "aug": [284, 285], "augment": [99, 267], "authent": [196, 197, 198, 230, 252], "author": [196, 197, 198, 230, 245, 246, 247, 248, 249, 250, 252], "auto": 91, "automat": [205, 206, 207, 208, 209, 211, 212, 217, 219], "autorag": 96, "autosc": 235, "avatar": 249, "avatarchatbot": 249, "aw": [112, 113, 123, 131, 140, 149, 161, 178, 186, 272], "awar": 89, "b": [11, 12, 14, 17, 41, 43, 44, 45, 46, 47, 50, 63, 67, 70, 72, 73, 74], "backend": [112, 164], "background": 254, "ban": 237, "bandwidth": 225, "base": [123, 124, 196, 197, 222], "basic": [94, 260, 261, 263, 264], "bearer": 198, "below": 82, "benchmark": [88, 90, 95, 110, 250], "bia": [32, 98], "bigcod": 88, "binari": [225, 226], "bleu": 98, "branch": [195, 254], "bridgetow": [161, 162], "bug": 266, "build": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 80, 86, 104, 105, 111, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 225, 226, 231, 250, 260, 261, 263, 264, 274], "built": 45, "call": 88, "can": 266, "candid": 195, "capabl": 267, "card": 98, "case": [90, 227, 260, 261, 263, 264], "cd": 285, "charact": 254, "chart": [109, 121, 130, 139, 194, 195, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 228, 234, 252], "charter": 241, "chat": [7, 8, 109, 123, 124, 163, 164, 167, 176, 253, 267], "chatbot": 249, "chathistori": 277, "chatqna": [91, 94, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 164, 191, 201, 202, 223, 227, 230, 234, 245, 259, 260, 261, 262, 263, 264, 265, 268, 270], "chatqna_neuralchat_rerank_latest": 91, "check": [24, 26, 27, 33, 34, 39, 43, 44, 45, 46, 47, 50, 51, 61, 63, 66, 68, 70, 71, 72, 73, 74, 80, 109, 115, 228, 238, 260, 261, 263, 264], "chines": 97, "chroma": [76, 77], "ci": 285, "cicd": 242, "citat": [1, 87, 98, 159, 193], "clean": [57, 64, 110, 184, 273], "cli": [8, 11, 12, 13, 14, 15, 16, 17, 18, 26, 27, 29, 30, 34, 35, 41, 43, 44, 45, 46, 47, 50, 58, 60, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 157, 158, 170, 171], "client": [21, 22, 62], "clip": [20, 24], "clone": 45, "cloud": [196, 262], "cluster": [30, 106, 107, 110, 117, 118, 125, 126, 133, 134, 142, 143, 151, 175, 180, 181, 188, 189, 194, 225, 226, 227, 234, 235, 272, 273, 274], "code": [104, 105, 116, 121, 123, 124, 128, 129, 130, 135, 163, 200, 237, 238, 242, 245, 247, 254, 257], "codegen": [121, 122, 123, 124, 125, 126, 127, 164, 167, 191, 203, 265], "codetran": [130, 131, 132, 133, 134, 191, 204, 265], "collect": 110, "color": 254, "column": 254, "command": [88, 122, 201, 203, 204, 221, 254], "comment": 244, "commit": 192, "committe": [236, 240, 241], "commun": [238, 241, 243], "compani": [236, 266], "compar": 266, "compat": [245, 246, 248, 249, 250], "complianc": 241, "compon": [2, 200, 238, 266, 267, 268, 273], "compos": [11, 12, 13, 14, 15, 16, 17, 19, 23, 24, 26, 27, 34, 41, 43, 44, 45, 46, 47, 50, 58, 63, 67, 69, 70, 72, 73, 74, 109, 112, 114, 116, 198, 230, 234, 270], "comprehens": 276, "conceptu": 266, "condit": 199, "conduct": [237, 238], "config": [80, 91, 274], "configur": [79, 80, 81, 89, 90, 91, 93, 94, 110, 165, 166, 232, 250, 253, 273, 274], "connector": [194, 226, 228, 230, 234, 252, 270], "consid": [245, 246, 248], "consol": 272, "construct": [245, 267], "consum": [11, 12, 14, 17, 18, 19, 23, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 56, 58, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 86, 101, 109, 112, 114, 116, 121, 130, 139, 156, 169, 172], "contain": [21, 32, 38, 62, 89, 109, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 178, 179, 184, 186, 187, 232, 260, 261, 263, 264], "containerd": 225, "content": [2, 88, 90, 163, 168, 194, 199, 200, 250, 253, 254, 255], "context": 163, "continu": 242, "contribut": [2, 168, 238, 243, 266, 284], "contributor": [237, 238, 281], "convers": [112, 113, 114, 116, 119, 260, 261, 263, 264], "copilot": [123, 124], "core": [268, 277], "correct": 237, "cost": 266, "counter": 223, "coven": [237, 238], "cpu": [30, 51, 52, 54, 88, 89], "cr": 229, "crag": 95, "creat": [30, 78, 82, 123, 131, 156, 169, 195, 238, 272, 273, 274], "criteria": 238, "cross": 254, "crud": 97, "curl": [198, 201, 203, 204, 221], "current": 250, "custom": [3, 120, 123, 124, 229, 245, 276], "cypher": 42, "daemonset": 223, "dashboard": [88, 92, 109, 223, 259], "data": [10, 12, 19, 74, 80, 99, 101, 110, 164, 167, 206, 227], "databas": [101, 202], "dataprep": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 111, 112, 113, 114, 116, 161, 162, 164, 184, 260, 261, 263, 264, 277], "dataset": [78, 91, 95, 97, 103, 148], "db": [80, 210], "dbname": 81, "defin": [202, 274], "delet": [225, 226, 230, 234, 235, 260, 261, 263, 264], "delete_fil": [11, 14, 17], "delete_video": 12, "demo": [160, 249, 273], "depend": [205, 206, 207, 208, 209, 211, 212, 217, 219], "deploi": [102, 106, 107, 109, 110, 117, 118, 121, 125, 126, 127, 130, 133, 134, 139, 142, 143, 144, 147, 151, 153, 156, 157, 158, 160, 166, 168, 169, 170, 171, 172, 175, 177, 180, 181, 183, 185, 188, 189, 194, 200, 224, 225, 226, 227, 234, 235, 252, 260, 261, 263, 264, 266, 268, 274], "deploy": [136, 168, 226, 231, 232, 248, 250, 259, 260, 261, 262, 263, 264, 266, 268, 284], "deprec": [12, 17], "descript": [30, 98, 226], "design": [245, 246, 247, 248, 249, 250], "desir": 99, "detail": [109, 259, 281, 282, 283], "detect": [32, 35, 36, 37, 38, 41], "develop": [32, 38, 192, 231, 257], "diagram": 259, "differ": [136, 266], "direct": 256, "discuss": 238, "do": 266, "doc": [145, 146, 154, 167, 202, 242], "docindexretriev": [191, 265], "docker": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 86, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 137, 138, 139, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 200, 225, 226, 260, 261, 263, 264], "docretriev": [136, 137, 138], "docsum": [139, 142, 143, 144, 164, 191, 221, 265], "document": [11, 13, 14, 15, 16, 17, 18, 44, 139, 140, 141, 163, 164, 238, 254, 255, 257, 275], "doe": 266, "done": 285, "download": [81, 83, 84, 85, 123], "draft": [266, 267], "draw": [254, 256], "dump": 93, "each": 115, "edg": 256, "ek": 272, "embed": [11, 17, 20, 21, 22, 23, 24, 25, 26, 27, 30, 62, 66, 67, 68, 70, 71, 72, 74, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 207, 253, 260, 261, 263, 264, 277], "embedd": [69, 80], "enabl": [198, 199, 225, 230], "end": 267, "endpoint": [21, 35, 51, 52, 53, 62, 99, 202], "enforc": 237, "engin": 3, "english": 97, "enterpris": [250, 266, 267], "env": [260, 261, 263, 264], "environ": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 25, 29, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 58, 60, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 97, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 164, 172, 173, 174, 178, 179, 184, 185, 186, 187, 196, 268, 273], "eval": 54, "evalu": [54, 88, 96, 97, 99, 103, 122, 148, 250, 258, 267], "exampl": [98, 110, 115, 168, 190, 191, 200, 238, 245, 254, 262, 265], "execut": 4, "exist": 78, "expect": [255, 259], "export": [223, 225], "extens": [123, 124], "face": 266, "factual": 33, "fake": 198, "faq": [122, 147, 148, 149, 150, 155, 163, 164, 167, 234], "faqgen": [43, 148, 151, 153, 164, 191, 265], "fastrag": 61, "featur": [7, 28, 59, 88, 90, 91, 108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 163, 164, 167, 176, 182, 231, 238, 267], "feedback": [28, 29], "feedback_manag": 277, "file": [30, 91, 94, 109, 110, 156, 169, 202, 254, 260, 261, 263, 264], "filter": 255, "fine": [30, 156, 169], "finetun": [30, 169, 170, 171, 277], "finit": 256, "first": 254, "flag": 225, "flexibl": 276, "flow": 267, "folder": 255, "forward": [58, 223], "found": 0, "foundat": 266, "four": 110, "framework": [122, 266, 267], "frequent": 266, "from": [45, 78, 82, 98, 123, 124, 200], "frontend": [123, 124, 249], "function": [88, 202, 267], "further": 98, "futur": [12, 17, 32, 38], "gatewai": [2, 232, 245, 248, 276], "gaudi": [34, 51, 52, 53, 99, 102, 105, 106, 107, 109, 110, 114, 117, 118, 121, 124, 125, 130, 132, 133, 139, 141, 142, 147, 150, 151, 156, 158, 160, 162, 169, 171, 172, 174, 177, 179, 180, 185, 187, 188, 194, 222, 223, 261], "gaudi2": [30, 88, 160, 267], "gen": [128, 129, 266], "genai": [115, 194, 200, 226, 228, 230, 234, 238, 250, 252, 258, 265, 266, 267, 270, 277], "genaicomp": [2, 45, 104, 105, 116, 242, 279, 280], "genaiev": [88, 242, 279, 280], "genaiexampl": [12, 17, 194, 234, 242, 245, 279, 280], "genaiinfra": [194, 234, 242, 279, 280], "genaistudio": 250, "gener": [2, 9, 25, 93, 99, 121, 122, 147, 148, 149, 150, 155, 163, 164, 167, 168, 198, 200, 227, 241, 253, 254, 255], "generate_capt": 12, "generate_transcript": 12, "get": [32, 35, 38, 48, 49, 77, 82, 95, 100, 108, 110, 119, 120, 128, 129, 135, 145, 146, 154, 155, 167, 168, 176, 182, 202, 226, 268], "get_fil": [11, 14, 17], "get_video": 12, "glossari": 269, "gmc": [109, 130, 139, 194, 195, 226, 227, 228, 229, 230, 234, 270], "gotcha": 199, "govern": 243, "gpu": [109, 110, 116, 234, 263], "grade": [95, 267], "grafana": [88, 92, 109, 223, 259], "graph": [42, 256], "graphviz": 256, "guard": [20, 25, 33, 36, 37, 39, 49, 56], "guardrail": [34, 114, 208, 232, 248, 261, 277], "guid": [163, 168, 226, 230, 234, 243, 252, 257, 259, 268], "guidelin": [237, 238, 254], "har": 88, "hardrware_info": 91, "hardwar": [89, 223, 238], "hat": 109, "head": 254, "health": 80, "helm": [109, 121, 130, 139, 194, 195, 200, 223, 226, 228, 234, 252], "high": 250, "highlight": [254, 279, 280], "histori": [7, 8, 164], "horizontalpodautoscal": 199, "how": [88, 98, 100, 115, 123, 124, 223, 225, 259, 266, 274], "hpa": 199, "http": 82, "hub": 200, "huggingfac": 99, "i": [238, 266], "ident": [163, 197], "imag": [6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 81, 83, 84, 85, 86, 104, 105, 107, 111, 112, 113, 114, 116, 118, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 195, 225, 226, 227, 254, 260, 261, 263, 264, 267, 272], "image2video": 277, "implement": [7, 28, 59, 196, 245, 259, 266], "import": [92, 201, 203, 223], "includ": [266, 267], "indent": 254, "index": [27, 78, 82, 101], "individu": 267, "infer": [23, 248], "inform": [1, 87, 159, 193], "infra": 136, "ingest": 67, "ingress": 232, "initi": 266, "inject": 37, "input": [35, 98, 202], "instal": [2, 3, 6, 10, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 88, 89, 90, 93, 104, 105, 110, 116, 123, 124, 197, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 228, 234, 235, 252, 255, 270, 271, 272, 273, 274], "instanc": [123, 131], "instruct": [30, 156, 157, 158, 254], "instructiontun": [191, 265], "integr": [232, 242, 284], "intel": [99, 140, 149, 194, 222, 223, 266], "intellectu": 241, "intend": 98, "intent": 41, "intent_detect": 277, "interact": [260, 261, 263, 264, 268], "intern": 254, "introduct": [22, 32, 38, 48, 49, 77, 89, 97, 168, 199, 226, 267], "inventori": 274, "invok": [8, 13, 15, 16, 29, 60], "io": 82, "issu": 238, "istio": [196, 198, 230], "job": [30, 156, 169], "join": 266, "json": 91, "judg": [95, 97, 99], "juli": [284, 285], "june": [284, 285], "jwt": 198, "k8": [225, 226, 273], "kei": [82, 91, 163, 164, 259, 267], "keycloak": [164, 165, 166, 197], "knowledg": 42, "knowledgegraph": 277, "kubeadm": 273, "kubectl": [226, 274], "kuberai": 235, "kubernet": [88, 89, 91, 106, 107, 109, 110, 117, 118, 121, 125, 126, 130, 133, 134, 139, 142, 143, 151, 175, 180, 181, 188, 189, 194, 222, 223, 224, 227, 234, 235, 252, 262, 271, 272, 273, 274], "kubesprai": 274, "label": 256, "lancedb": [76, 78], "langchain": [23, 24, 26], "languag": [182, 191], "larg": 10, "later": 35, "latest": 266, "launch": [21, 22, 51, 52, 53, 62, 95, 97, 99, 101, 103, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 140, 141, 148, 149, 150, 164, 178, 179, 184, 186, 187, 236, 260, 261, 263, 264], "legal": [1, 87, 159, 193], "level": 250, "leverag": [30, 198], "lf": 241, "licens": [1, 87, 159, 193], "limit": 98, "line": [88, 122], "link": [82, 254, 260, 261, 263, 264], "linux": 266, "list": [99, 253, 254], "llama": [27, 57], "llava": 55, "llc": 241, "llm": [3, 30, 31, 32, 35, 38, 42, 43, 44, 45, 46, 47, 50, 51, 52, 95, 97, 99, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 140, 141, 149, 150, 164, 173, 174, 178, 179, 209, 227, 253, 260, 261, 263, 264, 267, 277], "lm": [54, 88], "loader": 78, "local": [26, 27], "locust": 94, "log": [77, 115, 260, 261, 263, 264], "lvm": [10, 12, 55, 56, 57, 161, 162, 184, 186, 187, 277], "machin": [99, 256], "mai": [284, 285], "manag": [28, 29, 30, 74, 89, 156, 163, 166, 169], "manifest": [110, 200], "markdown": 254, "marketplac": [123, 124], "matrix": 259, "mega": [104, 105, 111, 112, 113, 115, 131, 132, 140, 149, 161, 162, 164, 173, 174, 178, 184, 186, 253, 260, 261, 263, 264, 276], "megaservic": [2, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 245, 249, 260, 261, 263, 264, 268, 276], "member": [236, 240, 266], "memori": 225, "methodologi": 97, "metric": [9, 92, 98, 99, 103, 110, 223], "micro": [115, 253], "microservic": [2, 3, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 86, 92, 101, 103, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 148, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 190, 194, 226, 228, 230, 234, 245, 249, 252, 259, 260, 261, 263, 264, 268, 270, 276, 277], "mileston": 285, "milvu": [10, 11, 65, 66, 76, 79], "misc": [245, 246, 247, 248, 249], "mission": [241, 266], "ml": 35, "mmei": 23, "mode": 42, "model": [10, 26, 27, 30, 32, 35, 38, 45, 50, 54, 91, 102, 109, 112, 113, 114, 116, 121, 130, 131, 132, 133, 134, 139, 140, 141, 149, 150, 151, 160, 161, 162, 169, 170, 171, 178, 179, 183, 185, 227, 232, 284], "modifi": 223, "mongodb": [7, 8, 28, 29, 59, 60], "monitor": [109, 223, 259], "more": [225, 274], "mosec": [11, 20, 21, 62], "motiv": [245, 246, 247, 248, 249, 250], "mount": 232, "move": [12, 17], "multi": [248, 254], "multihop": 97, "multimod": [10, 12, 19, 20, 23, 24, 65, 161, 162, 267], "multimodalqna": [160, 161, 162, 191, 265], "multipl": [12, 51, 52, 227], "name": 254, "namespac": 202, "nativ": [46, 47, 196, 226, 262], "necessari": [137, 138], "need": 266, "neo4j": [13, 42, 68], "ner": 35, "network": 112, "neural": 176, "new": [78, 238, 281, 282, 283], "next": [226, 228, 259, 268, 276], "nginx": [58, 112, 114, 116, 131, 132, 178, 179, 186, 187, 277], "node": [51, 52, 110, 260, 261, 262, 263, 264, 273, 274], "non": 254, "note": [96, 201, 203, 273, 278, 279, 280, 281, 282, 283], "notic": 239, "now": 266, "nri": [89, 225], "nvidia": [109, 110, 116, 234, 263], "oauth2": 198, "object": [245, 246, 247, 248, 249, 250], "observ": [223, 248], "oidc": [197, 198], "ollama": [48, 260], "ons": 224, "opea": [2, 9, 45, 53, 90, 94, 99, 109, 168, 198, 223, 224, 230, 231, 236, 241, 242, 243, 246, 247, 248, 249, 250, 253, 255, 266, 267, 268, 275, 276, 279, 280, 281, 282, 283, 284, 285], "open": [78, 266, 267], "openshift": 109, "openvino": [51, 52], "oper": [222, 241, 253], "optim": [88, 89, 91, 267], "option": [3, 6, 11, 12, 14, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 43, 44, 45, 46, 47, 50, 55, 56, 58, 61, 63, 67, 69, 70, 71, 72, 73, 74, 75, 109, 112, 113, 114, 116, 123, 124, 137, 138, 140, 141, 149, 150, 194, 200, 260, 261, 262, 263, 264, 266, 271, 273], "option1": [205, 206, 207, 208, 209, 211, 212, 217, 219], "option2": [205, 206, 207, 208, 209, 211, 212, 217, 219], "organ": 254, "origin": [112, 114, 116, 131, 132], "other": [80, 253, 260, 261, 263, 264, 266], "our": 237, "outlin": 259, "output": [35, 77, 91, 93, 98, 259], "over": 267, "overal": 246, "overview": [3, 95, 100, 194, 238, 255, 259, 260, 261, 263, 264, 276], "own": [3, 100, 274], "owner": 242, "page": 0, "pair": 12, "paper": 98, "paramet": [30, 91, 253, 268], "parser": 80, "part": 250, "partner": 266, "password": 81, "pathwai": [65, 69, 76, 80], "pc": 109, "pcm": 223, "perform": [51, 52, 96, 103, 148, 198, 223, 267], "perman": 237, "persist": 200, "persona": [226, 250], "pgvector": [10, 14, 65, 76, 81], "pii": [35, 36], "pinecon": [10, 15, 76, 82], "pipelin": [99, 107, 118, 143, 198, 227, 230, 231, 234, 252, 267, 270], "place": 248, "plan": 4, "platform": [88, 89, 109, 267], "pledg": 237, "plugin": [89, 123, 124], "polici": [89, 241], "popular": 98, "port": [112, 114, 116, 131, 132, 184, 223], "post": [32, 38, 199], "pre": [32, 38, 192, 199], "prebuilt": [107, 118, 227], "predict": [20, 25, 33, 36, 37, 39, 49, 56], "predictionguard": 49, "prem": [260, 261, 263, 264], "prep": 206, "prepar": [11, 12, 13, 14, 15, 16, 17, 18, 19, 32, 35, 38, 91, 96, 97, 110, 178, 179, 223, 227, 232, 260, 261, 263, 264, 274], "prerequir": 93, "prerequisit": [90, 97, 110, 127, 144, 153, 166, 168, 192, 194, 197, 198, 226, 234, 259, 260, 261, 263, 264, 268, 272, 274], "present": 255, "preset": 227, "pretrain": 30, "privat": [200, 272], "problem": 266, "processor": [140, 149, 255, 264], "product": [163, 164, 167, 194], "productivitysuit": [166, 191, 265], "project": [108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 167, 176, 182, 236, 241, 242, 243, 266, 275, 276], "prometheu": [92, 109, 199, 223, 259], "prompt": [37, 59, 60, 164], "prompt_registri": 277, "pronounc": 266, "properti": 241, "propos": [238, 243, 245, 246, 247, 248, 249, 250, 267], "proposit": 250, "proprietari": 266, "provid": [3, 136, 197, 198], "proxi": [198, 231, 252, 274], "publish": [45, 195, 255], "pull": [141, 150, 186, 187, 238, 260, 261, 263, 264], "purpos": [110, 259], "py": 93, "python": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 245], "q": 202, "q1": 284, "q4": 284, "qdrant": [10, 16, 65, 71, 76, 83, 113], "qna": [95, 167, 267], "queri": [42, 51, 52, 53], "question": [100, 185, 266], "quick": [22, 109, 112, 114, 116, 234, 274], "quickstart": [109, 112, 114, 116], "rag": [5, 42, 96, 97, 109, 126, 134, 143, 175, 181, 227, 253, 267], "raga": [99, 148, 277], "rai": [30, 45, 53, 114, 235], "rdt": 225, "react": [112, 113, 114, 116, 123, 124, 140, 141, 145, 149, 150, 154, 167], "reactui": [127, 144, 153, 166], "readi": 267, "real": 249, "red": 109, "redi": [10, 12, 17, 65, 76, 84, 161, 162, 210], "ref": 202, "refer": [98, 254, 266, 267, 274], "regist": 100, "registri": [59, 60, 164, 272], "relat": 91, "releas": [137, 138, 195, 278, 279, 280, 281, 282, 283], "relev": 273, "remot": 88, "remov": 89, "report": [93, 238, 239, 266], "repositori": [200, 242], "request": [199, 238, 244, 253], "requir": [3, 6, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 109, 112, 113, 114, 116, 121, 130, 131, 132, 133, 134, 139, 140, 141, 149, 150, 151, 160, 161, 162, 178, 179, 183, 185, 268], "rerank": [30, 61, 62, 63, 64, 111, 112, 113, 114, 115, 116, 164, 169, 170, 171, 173, 174, 184, 202, 211, 253, 260, 261, 263, 264, 277], "rerankfinetun": [191, 265], "reset": 273, "resourc": [89, 91, 199, 229, 243], "respons": [237, 253], "restructuredtext": 254, "result": [103, 122, 148, 228, 232], "retriev": [65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 99, 101, 110, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 212, 219, 253, 260, 261, 263, 264, 267, 277], "review": 238, "rfc": [243, 244, 250, 251], "rhocp": 109, "roadmap": [100, 243, 284, 285], "rule": 241, "run": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 41, 43, 44, 45, 46, 47, 48, 49, 50, 60, 61, 62, 63, 66, 67, 68, 70, 71, 72, 73, 74, 79, 80, 81, 83, 84, 85, 91, 93, 95, 99, 108, 109, 110, 112, 114, 116, 119, 120, 128, 129, 135, 145, 146, 154, 155, 157, 158, 167, 170, 171, 176, 182, 194, 234, 255], "safeti": 31, "sai": 266, "sampl": 259, "saniti": [260, 261, 263, 264], "scalabl": [264, 276], "scale": 274, "scope": [237, 241, 250], "screen": 167, "screenshot": [108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 164, 167, 176, 182], "script": [3, 11, 12, 13, 14, 15, 16, 17, 18, 19, 30, 32, 35, 38, 41, 44, 45, 50, 61, 63, 91, 94, 233, 239, 252], "searchqna": [172, 173, 174, 175, 191, 265], "second": 254, "secur": 112, "see": 266, "select": 267, "sep": 284, "separ": [69, 205, 206, 207, 208, 209, 211, 212, 217, 219], "septemb": 240, "seri": 241, "serv": 45, "server": [6, 11, 12, 13, 15, 16, 17, 18, 19, 22, 40, 54, 55, 66, 68, 71, 75, 77, 78, 79, 80, 81, 83, 84, 85, 112, 113, 140, 149, 161, 178, 186, 259], "servic": [6, 11, 17, 23, 24, 25, 26, 27, 30, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 79, 81, 83, 84, 85, 86, 88, 96, 97, 100, 101, 102, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 137, 138, 139, 140, 142, 144, 147, 148, 149, 151, 153, 156, 157, 158, 160, 161, 162, 164, 166, 169, 170, 171, 172, 173, 174, 177, 178, 180, 183, 184, 185, 186, 187, 188, 202, 223, 234, 245, 248, 253, 260, 261, 263, 264], "servicemonitor": 223, "set": [51, 52, 53, 58, 80, 104, 105, 123, 124, 173, 174, 255, 259, 268, 274], "setup": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 25, 29, 30, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 50, 56, 60, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 78, 82, 92, 109, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 163, 164, 165, 172, 178, 179, 184, 185, 186, 187, 194, 223, 225, 234, 260, 261, 263, 264, 268], "shoot": [137, 138], "shot": 167, "simpl": 256, "singl": [12, 51, 52, 110, 260, 261, 262, 263, 264, 274], "solut": [266, 267, 276], "sourc": [45, 80, 104, 105, 116, 164, 167, 200, 266], "space": [250, 254], "spec": [93, 253, 266], "specif": [9, 238, 254, 267], "speecht5": [75, 213], "splitter": 80, "stack": [12, 17], "stand": 266, "standard": 237, "start": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 83, 84, 85, 86, 95, 100, 104, 105, 109, 110, 111, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 168, 173, 174, 178, 179, 184, 186, 187, 226, 234, 235, 268], "state": [248, 256], "statu": [12, 17, 18, 19, 24, 26, 27, 32, 34, 35, 38, 43, 44, 45, 46, 47, 50, 51, 61, 63, 66, 68, 70, 71, 72, 73, 74, 89, 109, 115, 238, 245, 246, 247, 248, 249, 250, 260, 261, 263, 264], "steer": [236, 240, 241], "step": [110, 223, 226, 228, 238, 254, 259, 273, 274, 276], "stop": [260, 261, 263, 264], "store": 80, "stragegi": 250, "strategi": [3, 35], "stream": 49, "stresscli": 93, "structur": [247, 267], "studio": 250, "submit": 238, "suggest": [123, 124], "suit": [90, 163, 164, 167], "summar": [10, 139, 140, 141, 163, 164], "summari": [44, 145, 146, 154, 167, 259, 267], "support": [3, 102, 168, 191, 199, 227, 238, 243], "svd": 40, "svelt": [124, 140, 141], "sw": 267, "system": [74, 95, 96, 97, 267], "tab": 254, "tabl": [90, 199, 200, 253, 254, 256], "tag": 195, "technic": [236, 240, 241, 266], "tei": [20, 26, 27, 63, 69, 70, 72, 74, 86, 115, 214, 260, 261, 263, 264], "teirerank": 215, "telemetri": 9, "templat": [238, 244], "temporari": 237, "term": 269, "termin": 48, "test": [6, 21, 22, 40, 55, 57, 62, 64, 75, 90, 93, 104, 105, 110, 173, 174, 192, 195, 234], "text": [55, 78, 267], "tgi": [34, 41, 43, 44, 45, 50, 112, 114, 115, 141, 148, 150, 164, 186, 187, 202, 216, 261, 263, 264], "thank": 281, "theme": 255, "through": [201, 203, 204, 221], "time": 249, "tip": [51, 52], "titl": 254, "token": 198, "tool": [3, 90, 100, 101, 110, 233, 255, 284], "topologi": 89, "toxic": [38, 39], "trace": 9, "train": [30, 156, 169], "transcript": 12, "translat": [130, 135, 177, 178, 179, 180, 181, 182, 191, 265], "troubl": [137, 138], "troubleshoot": [11, 99, 109, 121, 130, 139, 172, 201, 202, 226, 229, 234, 259], "trust": 31, "trustworthi": 267, "tsc": [240, 241], "tt": [75, 102, 104, 105, 217, 277], "tune": [30, 91, 156, 157, 158, 169], "two": 110, "type": [3, 284], "ui": [111, 112, 113, 114, 116, 119, 120, 123, 124, 131, 132, 140, 141, 149, 150, 151, 161, 162, 164, 167, 173, 178, 179, 184, 186, 187, 198, 201, 203, 204, 221, 249, 260, 261, 263, 264], "understand": 268, "uninstal": [197, 228, 235], "up": [51, 52, 53, 80, 110, 255, 259, 273, 274], "updat": [197, 202], "upload": [11, 12, 14, 17, 30, 109, 110, 156, 169, 260, 261, 263, 264, 272], "url": [123, 124], "us": [10, 35, 88, 95, 98, 99, 107, 109, 112, 114, 115, 118, 121, 123, 124, 130, 139, 164, 184, 194, 200, 226, 227, 230, 232, 234, 245, 256, 260, 261, 263, 264, 270, 272, 273, 274], "usag": [48, 78, 88, 90, 91, 93, 94, 122, 194, 197, 230, 234, 239], "user": [99, 163, 166], "usernam": 81, "uservic": 209, "usvc": [207, 208, 211, 212], "v": 254, "v0": [253, 279, 280, 281, 282], "v1": [223, 283], "valid": [3, 45, 50, 89, 93, 100, 101, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 178, 179, 184, 186, 187, 232, 259, 260, 261, 263, 264], "valu": [98, 197, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 250], "variabl": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 25, 29, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 56, 60, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 164, 172, 173, 174, 178, 179, 184, 185, 186, 187, 260, 261, 263, 264, 268], "vdm": [10, 18, 19, 65, 74, 76, 85], "vector": [80, 101, 210], "vectordb": [67, 70, 72, 73, 74, 260, 261, 263, 264], "vectorstor": [76, 277], "verifi": [34, 41, 44, 45, 50, 63, 70, 72, 74, 106, 117, 125, 127, 133, 142, 144, 151, 153, 166, 180, 188, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223], "version": 255, "via": [166, 198, 226, 227], "video": [12, 40, 57, 67, 267], "videoqna": [183, 184, 191, 265], "videos_with_transcript": 12, "vision": 10, "visual": [9, 74, 92, 185, 268], "visualqna": [185, 186, 187, 188, 189, 191, 265], "vllm": [45, 51, 52, 53, 112, 114, 218, 261, 264], "volum": 200, "vote": 241, "vscode": [123, 124], "vulner": [239, 266], "wai": [238, 266], "warn": [237, 255], "we": 136, "web": [86, 219], "web_retriev": 277, "what": [266, 268, 281, 282, 283], "when": 266, "where": 266, "whisper": [6, 220], "why": [100, 266], "within": 266, "without": [49, 109, 130, 139], "work": [250, 255, 259, 266], "workflow": 139, "workload": [201, 203, 204, 221, 223], "xeon": [102, 104, 106, 107, 109, 110, 112, 113, 117, 118, 121, 123, 125, 130, 131, 133, 139, 140, 142, 147, 149, 151, 156, 157, 160, 161, 164, 169, 170, 172, 173, 177, 178, 180, 183, 184, 185, 186, 188, 264, 267], "yaml": [91, 245], "you": 266, "your": [3, 99, 100, 238, 274]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"(Option1): Installing the chart separately": [[205, "option1-installing-the-chart-separately"], [206, "option1-installing-the-chart-separately"], [207, "option1-installing-the-chart-separately"], [208, "option1-installing-the-chart-separately"], [209, "option1-installing-the-chart-separately"], [211, "option1-installing-the-chart-separately"], [212, "option1-installing-the-chart-separately"], [217, "option1-installing-the-chart-separately"], [219, "option1-installing-the-chart-separately"]], "(Option2): Installing the chart with dependencies automatically": [[205, "option2-installing-the-chart-with-dependencies-automatically"], [206, "option2-installing-the-chart-with-dependencies-automatically"], [207, "option2-installing-the-chart-with-dependencies-automatically"], [208, "option2-installing-the-chart-with-dependencies-automatically"], [209, "option2-installing-the-chart-with-dependencies-automatically"], [211, "option2-installing-the-chart-with-dependencies-automatically"], [212, "option2-installing-the-chart-with-dependencies-automatically"], [217, "option2-installing-the-chart-with-dependencies-automatically"], [219, "option2-installing-the-chart-with-dependencies-automatically"]], "(Optional) To run GenAIInfra on Intel Gaudi product": [[194, "optional-to-run-genaiinfra-on-intel-gaudi-product"]], "(Optionally) Start the TEI (embedder) service separately": [[69, "optionally-start-the-tei-embedder-service-separately"]], "1 TEI Embedding Service": [[115, "tei-embedding-service"]], "1. Build Docker Image": [[157, "build-docker-image"], [158, "build-docker-image"], [170, "build-docker-image"], [171, "build-docker-image"]], "1. Build Embedding Image": [[111, "build-embedding-image"], [112, "build-embedding-image"], [113, "build-embedding-image"], [114, "build-embedding-image"], [164, "build-embedding-image"], [173, "build-embedding-image"], [174, "build-embedding-image"], [184, "build-embedding-image"]], "1. Build Images for necessary microservices. (Optional after docker image release)": [[137, "build-images-for-necessary-microservices-optional-after-docker-image-release"], [138, "build-images-for-necessary-microservices-optional-after-docker-image-release"]], "1. Build LLM Image": [[140, "build-llm-image"], [149, "build-llm-image"], [178, "build-llm-image"], [179, "build-llm-image"]], "1. Build LVM and NGINX Docker Images": [[186, "build-lvm-and-nginx-docker-images"], [187, "build-lvm-and-nginx-docker-images"]], "1. Build embedding-multimodal-bridgetower Image": [[161, "build-embedding-multimodal-bridgetower-image"], [162, "build-embedding-multimodal-bridgetower-image"]], "1. Build the LLM Docker Image": [[123, "build-the-llm-docker-image"], [124, "build-the-llm-docker-image"], [131, "build-the-llm-docker-image"], [132, "build-the-llm-docker-image"]], "1. Check environment variables": [[115, "check-environment-variables"]], "1. Configuration": [[79, "configuration"]], "1. Correction": [[237, "correction"]], "1. Create Pinecone account from the below link": [[82, "create-pinecone-account-from-the-below-link"]], "1. Create release candidate branch": [[195, "create-release-candidate-branch"]], "1. Download Pgvector image": [[81, "download-pgvector-image"]], "1. Download Qdrant image": [[83, "download-qdrant-image"]], "1. Download Redis image": [[84, "download-redis-image"]], "1. Download VDMS image": [[85, "download-vdms-image"]], "1. Install the GMC Helm Chart": [[234, "install-the-gmc-helm-chart"]], "1. Introduction": [[22, "introduction"]], "1. Mission and Scope of the Project": [[241, "mission-and-scope-of-the-project"]], "1. Overview": [[3, "overview"]], "1. Preparation": [[110, "preparation"], [110, "id1"], [110, "id6"]], "1. Pull TGI Gaudi Image": [[141, "pull-tgi-gaudi-image"], [150, "pull-tgi-gaudi-image"]], "1. Setup Prometheus": [[92, "setup-prometheus"]], "1. Setup Prometheus & Grafana": [[223, "setup-prometheus-grafana"]], "1. Source Code install GenAIComps": [[104, "source-code-install-genaicomps"], [105, "source-code-install-genaicomps"], [116, "source-code-install-genaicomps"]], "1. Summary": [[267, "summary"]], "1. Upload a training file": [[156, "upload-a-training-file"], [169, "upload-a-training-file"]], "1. \ud83d\ude80Start Microservice with Python (Option 1)": [[71, "start-microservice-with-python-option-1"]], "1.1 Build Docker Image": [[24, "build-docker-image"]], "1.1 Build Images": [[57, "build-images"], [64, "build-images"]], "1.1 Install Requirements": [[6, "install-requirements"], [12, "install-requirements"], [14, "install-requirements"], [17, "install-requirements"], [18, "install-requirements"], [19, "install-requirements"], [23, "install-requirements"], [26, "install-requirements"], [27, "install-requirements"], [30, "install-requirements"], [32, "install-requirements"], [34, "install-requirements"], [35, "install-requirements"], [38, "install-requirements"], [40, "install-requirements"], [41, "install-requirements"], [44, "install-requirements"], [45, "install-requirements"], [50, "install-requirements"], [55, "install-requirements"], [56, "install-requirements"], [61, "install-requirements"], [63, "install-requirements"], [67, "install-requirements"], [70, "install-requirements"], [71, "install-requirements"], [72, "install-requirements"], [73, "install-requirements"], [74, "install-requirements"]], "1.1 Requirements": [[11, "requirements"]], "1.1 Setup Environment Variables": [[42, "setup-environment-variables"], [43, "setup-environment-variables"], [46, "setup-environment-variables"], [47, "setup-environment-variables"]], "1.1 Supported agent types": [[3, "supported-agent-types"]], "1.2 Build Docker Image": [[43, "build-docker-image"], [46, "build-docker-image"], [47, "build-docker-image"]], "1.2 Install fastRAG": [[61, "install-fastrag"]], "1.2 LLM engine": [[3, "llm-engine"]], "1.2 Run Docker with Docker Compose": [[24, "run-docker-with-docker-compose"]], "1.2 Setup Environment Variables": [[14, "setup-environment-variables"]], "1.2 Setup VectorDB Service": [[67, "setup-vectordb-service"], [73, "setup-vectordb-service"]], "1.2 Start Bias Detection Microservice with Python Script": [[32, "start-bias-detection-microservice-with-python-script"]], "1.2 Start Embedding Service": [[23, "start-embedding-service"], [26, "start-embedding-service"], [27, "start-embedding-service"]], "1.2 Start Finetuning Service with Python Script": [[30, "start-finetuning-service-with-python-script"]], "1.2 Start LLM Service": [[44, "start-llm-service"], [50, "start-llm-service"]], "1.2 Start LLM Service with Python Script": [[45, "start-llm-service-with-python-script"]], "1.2 Start LLaVA Service/Test": [[55, "start-llava-service-test"]], "1.2 Start LVM Service": [[56, "start-lvm-service"]], "1.2 Start Milvus Server": [[11, "start-milvus-server"]], "1.2 Start Neo4j Service": [[42, "start-neo4j-service"]], "1.2 Start PII Detection Microservice with Python Script": [[35, "start-pii-detection-microservice-with-python-script"]], "1.2 Start Qdrant Server": [[71, "start-qdrant-server"]], "1.2 Start Redis Stack Server": [[12, "start-redis-stack-server"], [17, "start-redis-stack-server"]], "1.2 Start Rerank Service": [[64, "start-rerank-service"]], "1.2 Start SVD Service": [[40, "start-svd-service"]], "1.2 Start SpeechT5 Service/Test": [[75, "start-speecht5-service-test"]], "1.2 Start TEI Service": [[63, "start-tei-service"], [70, "start-tei-service"], [72, "start-tei-service"], [74, "start-tei-service"]], "1.2 Start TGI Gaudi Service": [[34, "start-tgi-gaudi-service"]], "1.2 Start TGI Service": [[41, "start-tgi-service"]], "1.2 Start Toxicity Detection Microservice with Python Script": [[38, "start-toxicity-detection-microservice-with-python-script"]], "1.2 Start VDMS Server": [[18, "start-vdms-server"], [19, "start-vdms-server"]], "1.2 Start Video-Llama and LVM Services": [[57, "start-video-llama-and-lvm-services"]], "1.2 Start Whisper Service/Test": [[6, "start-whisper-service-test"]], "1.2.1 Start Ray Cluster": [[30, "start-ray-cluster"]], "1.2.1 Start the TGI Service": [[45, "start-the-tgi-service"]], "1.2.2 Start Finetuning Service": [[30, "start-finetuning-service"]], "1.2.2 Start the vLLM Service": [[45, "start-the-vllm-service"]], "1.2.3 Start the Ray Service": [[45, "start-the-ray-service"]], "1.3 Ingest images or video": [[67, "ingest-images-or-video"]], "1.3 Run Docker with CLI (Option A)": [[43, "run-docker-with-cli-option-a"], [46, "run-docker-with-cli-option-a"], [47, "run-docker-with-cli-option-a"]], "1.3 Setup Environment Variables": [[11, "setup-environment-variables"], [12, "setup-environment-variables"], [17, "setup-environment-variables"], [18, "setup-environment-variables"], [19, "setup-environment-variables"], [71, "setup-environment-variables"]], "1.3 Start ASR Service/Test": [[6, "start-asr-service-test"]], "1.3 Start Image To Text Service/Test": [[55, "start-image-to-text-service-test"]], "1.3 Start Image-to-Video Microservice": [[40, "start-image-to-video-microservice"]], "1.3 Start LLM Service for \u201crag\u201d/\u201dquery\u201d mode": [[42, "start-llm-service-for-rag-query-mode"]], "1.3 Start PGVector": [[14, "start-pgvector"]], "1.3 Start Reranking Service with Python Script": [[61, "start-reranking-service-with-python-script"]], "1.3 Start Retriever Service": [[73, "start-retriever-service"]], "1.3 Start TTS Service/Test": [[75, "start-tts-service-test"]], "1.3 Tools": [[3, "tools"]], "1.3 Verify the TEI Service": [[63, "verify-the-tei-service"], [70, "verify-the-tei-service"], [72, "verify-the-tei-service"], [74, "verify-the-tei-service"]], "1.3 Verify the TGI Gaudi Service": [[34, "verify-the-tgi-gaudi-service"]], "1.3 Verify the TGI Service": [[41, "verify-the-tgi-service"], [44, "verify-the-tgi-service"], [50, "verify-the-tgi-service"]], "1.4 Agent APIs": [[3, "agent-apis"]], "1.4 Run Docker with Docker Compose (Option B)": [[43, "run-docker-with-docker-compose-option-b"], [46, "run-docker-with-docker-compose-option-b"], [47, "run-docker-with-docker-compose-option-b"]], "1.4 Setup Environment Variables": [[41, "setup-environment-variables"]], "1.4 Setup VectorDB Service": [[70, "setup-vectordb-service"], [72, "setup-vectordb-service"], [74, "setup-vectordb-service"]], "1.4 Start Data Preparation Microservice for VDMS with Python Script": [[19, "start-data-preparation-microservice-for-vdms-with-python-script"]], "1.4 Start Document Preparation Microservice for PGVector with Python Script": [[14, "start-document-preparation-microservice-for-pgvector-with-python-script"]], "1.4 Start Document Preparation Microservice for Redis with Python Script": [[17, "start-document-preparation-microservice-for-redis-with-python-script"]], "1.4 Start Document Preparation Microservice for VDMS with Python Script": [[18, "start-document-preparation-microservice-for-vdms-with-python-script"]], "1.4 Start Embedding Service": [[17, "start-embedding-service"]], "1.4 Start Guardrails Service": [[34, "start-guardrails-service"]], "1.4 Start LLM Service with Python Script": [[44, "start-llm-service-with-python-script"], [50, "start-llm-service-with-python-script"]], "1.4 Start LVM Microservice (Optional)": [[12, "start-lvm-microservice-optional"]], "1.4 Start Microservice": [[42, "start-microservice"]], "1.4 Start Mosec Embedding Service": [[11, "start-mosec-embedding-service"]], "1.4 Start Reranking Service with Python Script": [[63, "start-reranking-service-with-python-script"]], "1.4 Start Retriever Service": [[67, "start-retriever-service"], [71, "start-retriever-service"]], "1.5 Start Data Preparation Microservice for Redis with Python Script": [[12, "start-data-preparation-microservice-for-redis-with-python-script"]], "1.5 Start Document Preparation Microservice for Milvus with Python Script": [[11, "start-document-preparation-microservice-for-milvus-with-python-script"]], "1.5 Start Intent Detection Microservice with Python Script": [[41, "start-intent-detection-microservice-with-python-script"]], "1.5 Start Retriever Service": [[70, "start-retriever-service"], [72, "start-retriever-service"], [74, "start-retriever-service"]], "10. Build Nginx Docker Image": [[114, "build-nginx-docker-image"], [116, "build-nginx-docker-image"]], "2 Embedding Microservice": [[115, "embedding-microservice"]], "2. Build ASR Image": [[104, "build-asr-image"], [105, "build-asr-image"]], "2. Build Embedding Image": [[116, "build-embedding-image"]], "2. Build Images for MegaService": [[137, "build-images-for-megaservice"], [138, "build-images-for-megaservice"]], "2. Build LLM Image": [[141, "build-llm-image"], [150, "build-llm-image"]], "2. Build MegaService Docker Image": [[131, "build-megaservice-docker-image"], [132, "build-megaservice-docker-image"], [140, "build-megaservice-docker-image"], [149, "build-megaservice-docker-image"], [178, "build-megaservice-docker-image"], [179, "build-megaservice-docker-image"], [186, "build-megaservice-docker-image"]], "2. Build Retriever Image": [[111, "build-retriever-image"], [112, "build-retriever-image"], [113, "build-retriever-image"], [114, "build-retriever-image"], [164, "build-retriever-image"], [173, "build-retriever-image"], [174, "build-retriever-image"], [184, "build-retriever-image"]], "2. Build retriever-multimodal-redis Image": [[161, "build-retriever-multimodal-redis-image"], [162, "build-retriever-multimodal-redis-image"]], "2. Build the MegaService Docker Image": [[123, "build-the-megaservice-docker-image"], [124, "build-the-megaservice-docker-image"]], "2. Check the docker container status": [[115, "check-the-docker-container-status"]], "2. Configure the username, password and dbname": [[81, "configure-the-username-password-and-dbname"]], "2. Create fine-tuning job": [[156, "create-fine-tuning-job"], [169, "create-fine-tuning-job"]], "2. Create images with release tag": [[195, "create-images-with-release-tag"]], "2. Get API key": [[82, "get-api-key"]], "2. Install ChatQnA": [[110, "install-chatqna"], [110, "id2"], [110, "id7"]], "2. Introduction": [[267, "introduction"]], "2. Metric for Gaudi Hardware(v1.16.2)": [[223, "metric-for-gaudi-hardware-v1-16-2"]], "2. Pull TGI Gaudi Image": [[187, "pull-tgi-gaudi-image"]], "2. Quick Start": [[22, "quick-start"]], "2. Run Docker with CLI": [[157, "run-docker-with-cli"], [158, "run-docker-with-cli"], [170, "run-docker-with-cli"], [171, "run-docker-with-cli"]], "2. Run Milvus service": [[79, "run-milvus-service"]], "2. Run Qdrant service": [[83, "run-qdrant-service"]], "2. Run Redis service": [[84, "run-redis-service"]], "2. Run VDMS service": [[85, "run-vdms-service"]], "2. Setup Grafana": [[92, "setup-grafana"]], "2. Technical Steering Committee": [[241, "technical-steering-committee"]], "2. Warning": [[237, "warning"]], "2. \ud83d\ude80Start Microservice with Docker (Option 2)": [[71, "start-microservice-with-docker-option-2"]], "2.1 Build Docker Images": [[56, "build-docker-images"]], "2.1 Build Docker image": [[22, "build-docker-image"]], "2.1 Build Images": [[6, "build-images"], [40, "build-images"], [55, "build-images"], [75, "build-images"]], "2.1 Check Service Status": [[24, "check-service-status"], [46, "check-service-status"], [47, "check-service-status"]], "2.1 Cypher mode": [[42, "cypher-mode"]], "2.1 Key capabilities": [[267, "key-capabilities"]], "2.1 Option 1: with Python": [[3, "option-1-with-python"]], "2.1 Prepare PII detection model": [[35, "prepare-pii-detection-model"]], "2.1 Prepare bias detection model": [[32, "prepare-bias-detection-model"]], "2.1 Prepare toxicity detection model": [[38, "prepare-toxicity-detection-model"]], "2.1 Setup Environment Variables": [[19, "id2"], [34, "setup-environment-variables"], [44, "setup-environment-variables"], [50, "setup-environment-variables"], [56, "setup-environment-variables"], [61, "setup-environment-variables"], [63, "setup-environment-variables"], [67, "setup-environment-variables"], [70, "setup-environment-variables"], [71, "id1"], [72, "setup-environment-variables"], [73, "setup-environment-variables"], [74, "setup-environment-variables"]], "2.1 Setup on CPU": [[30, "setup-on-cpu"]], "2.1 Start Embedding Service with TEI": [[26, "id1"], [27, "id1"]], "2.1 Start LLM Service with published image": [[45, "start-llm-service-with-published-image"]], "2.1 Start Milvus Server": [[11, "id1"]], "2.1 Start Multimodal Embedding Inference (MMEI) Service": [[23, "start-multimodal-embedding-inference-mmei-service"]], "2.1 Start PGVector": [[14, "id1"]], "2.1 Start Redis Stack Server": [[12, "id1"], [17, "id1"]], "2.1 Start TGI Service": [[41, "id1"]], "2.1 Start VDMS Server": [[18, "id1"], [19, "id1"]], "2.1 vLLM on CPU": [[51, "vllm-on-cpu"], [52, "vllm-on-cpu"]], "2.1.1 Build Docker Image": [[30, "build-docker-image"]], "2.1.1 Construction of GenAI solutions, including retrieval augmentation": [[267, "construction-of-genai-solutions-including-retrieval-augmentation"]], "2.1.1 Install Requirements": [[3, "install-requirements"]], "2.1.1 LLaVA Server Image": [[55, "llava-server-image"]], "2.1.1 SVD Server Image": [[40, "svd-server-image"]], "2.1.1 SpeechT5 Server Image": [[75, "speecht5-server-image"]], "2.1.1 Start TGI Service": [[45, "start-tgi-service"]], "2.1.1 Whisper Server Image": [[6, "whisper-server-image"]], "2.1.1 use LLM endpoint (will add later)": [[35, "use-llm-endpoint-will-add-later"]], "2.1.2 ASR Service Image": [[6, "asr-service-image"]], "2.1.2 Evaluation of GenAI solutions, including retrieval augmentation:": [[267, "evaluation-of-genai-solutions-including-retrieval-augmentation"]], "2.1.2 Image-to-Video Service Image": [[40, "image-to-video-service-image"]], "2.1.2 LVM Service Image": [[55, "lvm-service-image"]], "2.1.2 Run Docker with CLI": [[30, "run-docker-with-cli"]], "2.1.2 Start Microservice with Python Script": [[3, "start-microservice-with-python-script"]], "2.1.2 Start vLLM Service": [[45, "start-vllm-service"]], "2.1.2 TTS Service Image": [[75, "tts-service-image"]], "2.1.3 Start Ray Service": [[45, "start-ray-service"]], "2.2 Build Docker Image": [[11, "build-docker-image"], [23, "build-docker-image"], [26, "build-docker-image"], [27, "build-docker-image"], [32, "build-docker-image"], [34, "build-docker-image"], [35, "build-docker-image"], [38, "build-docker-image"], [44, "build-docker-image"], [45, "build-docker-image"], [50, "build-docker-image"], [61, "build-docker-image"], [63, "build-docker-image"], [67, "build-docker-image"], [70, "build-docker-image"], [71, "build-docker-image"], [72, "build-docker-image"], [73, "build-docker-image"], [74, "build-docker-image"]], "2.2 Consume Embedding Service": [[23, "id1"], [24, "id1"]], "2.2 Consume LLM Service": [[46, "id1"], [47, "id1"]], "2.2 Launch server": [[22, "launch-server"]], "2.2 Option 2. Start Microservice with Docker": [[3, "option-2-start-microservice-with-docker"]], "2.2 Rag mode": [[42, "rag-mode"]], "2.2 Setup Environment Variables": [[14, "id2"], [17, "id2"], [18, "id2"], [41, "id2"]], "2.2 Setup on Gaudi2": [[30, "setup-on-gaudi2"]], "2.2 Start LLM Service with image built from source": [[45, "start-llm-service-with-image-built-from-source"]], "2.2 Start LLaVA and LVM Service": [[55, "start-llava-and-lvm-service"]], "2.2 Start LVM Microservice (Optional)": [[12, "id2"]], "2.2 Start SVD and Image-to-Video Service": [[40, "start-svd-and-image-to-video-service"]], "2.2 Start Service": [[56, "start-service"]], "2.2 Start SpeechT5 and TTS Service": [[75, "start-speecht5-and-tts-service"]], "2.2 Start Whisper and ASR Service": [[6, "start-whisper-and-asr-service"]], "2.2 vLLM on Gaudi": [[51, "vllm-on-gaudi"], [52, "vllm-on-gaudi"]], "2.2.1 Build Docker Image": [[30, "id1"]], "2.2.1 Build Microservices": [[3, "build-microservices"]], "2.2.1 Setup Environment Variables": [[45, "setup-environment-variables"]], "2.2.1 Start LLaVA server": [[55, "start-llava-server"]], "2.2.1 Start SVD server": [[40, "start-svd-server"]], "2.2.1 Start SpeechT5 Server": [[75, "start-speecht5-server"]], "2.2.1 Start Whisper Server": [[6, "start-whisper-server"]], "2.2.1 TGI": [[45, "tgi"]], "2.2.2 Run Docker with CLI": [[30, "id2"]], "2.2.2 Start ASR service": [[6, "start-asr-service"]], "2.2.2 Start Image-to-Video service": [[40, "start-image-to-video-service"]], "2.2.2 Start LVM service": [[55, "start-lvm-service"]], "2.2.2 Start TTS service": [[75, "start-tts-service"]], "2.2.2 Start microservices": [[3, "start-microservices"]], "2.2.2 vLLM": [[45, "vllm"]], "2.2.3 Ray Serve": [[45, "ray-serve"]], "2.2.3 Test": [[6, "test"], [40, "test"], [55, "test"], [75, "test"]], "2.3 Build Docker Image": [[14, "build-docker-image"], [17, "build-docker-image"], [18, "build-docker-image"], [19, "build-docker-image"], [41, "build-docker-image"]], "2.3 Client test": [[22, "client-test"]], "2.3 Query mode": [[42, "query-mode"]], "2.3 Run Docker": [[61, "run-docker"]], "2.3 Run Docker Container with Microservice": [[32, "run-docker-container-with-microservice"], [38, "run-docker-container-with-microservice"]], "2.3 Run Docker with CLI": [[26, "run-docker-with-cli"], [27, "run-docker-with-cli"], [34, "run-docker-with-cli"], [35, "run-docker-with-cli"], [71, "run-docker-with-cli"]], "2.3 Run Docker with CLI (Option A)": [[11, "run-docker-with-cli-option-a"], [44, "run-docker-with-cli-option-a"], [45, "run-docker-with-cli-option-a"], [50, "run-docker-with-cli-option-a"], [63, "run-docker-with-cli-option-a"], [67, "run-docker-with-cli-option-a"], [70, "run-docker-with-cli-option-a"], [72, "run-docker-with-cli-option-a"], [73, "run-docker-with-cli-option-a"], [74, "run-docker-with-cli-option-a"]], "2.3 Run Docker with Docker Compose": [[23, "run-docker-with-docker-compose"]], "2.3 Setup Environment Variables": [[11, "id2"], [12, "id3"]], "2.3 vLLM with OpenVINO": [[51, "vllm-with-openvino"], [52, "vllm-with-openvino"]], "2.3.1 TGI": [[45, "id1"]], "2.3.2 vLLM": [[45, "id2"]], "2.3.3 Ray Serve": [[45, "id3"]], "2.4 Build Docker Image": [[12, "build-docker-image"]], "2.4 Query the service": [[51, "query-the-service"], [52, "query-the-service"]], "2.4 Run Docker Compose": [[19, "run-docker-compose"]], "2.4 Run Docker with CLI": [[18, "run-docker-with-cli"]], "2.4 Run Docker with CLI (Option A)": [[14, "run-docker-with-cli-option-a"], [17, "run-docker-with-cli-option-a"], [41, "run-docker-with-cli-option-a"]], "2.4 Run Docker with Docker Compose": [[26, "run-docker-with-docker-compose"], [27, "run-docker-with-docker-compose"], [34, "run-docker-with-docker-compose"]], "2.4 Run Docker with Docker Compose (Option B)": [[44, "run-docker-with-docker-compose-option-b"], [45, "run-docker-with-docker-compose-option-b"], [50, "run-docker-with-docker-compose-option-b"], [63, "run-docker-with-docker-compose-option-b"], [67, "run-docker-with-docker-compose-option-b"], [70, "run-docker-with-docker-compose-option-b"], [72, "run-docker-with-docker-compose-option-b"], [73, "run-docker-with-docker-compose-option-b"], [74, "run-docker-with-docker-compose-option-b"]], "2.4 Run with Docker Compose (Option B)": [[11, "run-with-docker-compose-option-b"]], "2.4.1 TGI": [[45, "id4"]], "2.4.2 vLLM": [[45, "id5"]], "2.4.3 Ray Serve": [[45, "id6"]], "2.5 Run Docker with CLI (Option A)": [[12, "run-docker-with-cli-option-a"]], "2.5 Run with Docker Compose (Option B - deprecated, will move to genAIExample in future)": [[17, "run-with-docker-compose-option-b-deprecated-will-move-to-genaiexample-in-future"]], "2.5 Run with Docker Compose (Option B)": [[14, "run-with-docker-compose-option-b"], [41, "run-with-docker-compose-option-b"]], "2.6 Run with Docker Compose (Option B - deprecated, will move to genAIExample in future)": [[12, "run-with-docker-compose-option-b-deprecated-will-move-to-genaiexample-in-future"]], "2.Use GMC to compose a ChatQnA Pipeline": [[234, "use-gmc-to-compose-a-chatqna-pipeline"]], "24-05-16 GenAIExamples-001 Using MicroService to Implement ChatQnA": [[245, "genaiexamples-001-using-microservice-to-implement-chatqna"]], "24-05-16 OPEA-001 Overall Design": [[246, "opea-001-overall-design"]], "24-05-24 OPEA-001 Code Structure": [[247, "opea-001-code-structure"]], "24-06-21-OPEA-001-Guardrails-Gateway": [[248, "opea-001-guardrails-gateway"]], "24-08-02-OPEA-AIAvatarChatbot": [[249, "opea-aiavatarchatbot"]], "24-08-07 OPEA-001 OPEA GenAIStudio": [[250, "opea-001-opea-genaistudio"]], "3 Retriever Microservice": [[115, "retriever-microservice"]], "3. Build LLM Image": [[104, "build-llm-image"], [105, "build-llm-image"]], "3. Build LVM Images": [[161, "build-lvm-images"], [162, "build-lvm-images"]], "3. Build MegaService Docker Image": [[141, "build-megaservice-docker-image"], [150, "build-megaservice-docker-image"], [187, "build-megaservice-docker-image"]], "3. Build Rerank Image": [[111, "build-rerank-image"], [112, "build-rerank-image"], [113, "build-rerank-image"], [114, "build-rerank-image"], [164, "build-rerank-image"], [173, "build-rerank-image"], [174, "build-rerank-image"], [184, "build-rerank-image"]], "3. Build Retriever Image": [[116, "build-retriever-image"]], "3. Build UI Docker Image": [[131, "build-ui-docker-image"], [132, "build-ui-docker-image"], [140, "build-ui-docker-image"], [149, "build-ui-docker-image"], [178, "build-ui-docker-image"], [179, "build-ui-docker-image"], [186, "build-ui-docker-image"]], "3. Build the UI Docker Image": [[123, "build-the-ui-docker-image"], [124, "build-the-ui-docker-image"]], "3. Check docker container log": [[115, "check-docker-container-log"]], "3. Create the index in https://app.pinecone.io/": [[82, "create-the-index-in-https-app-pinecone-io"]], "3. Framework Components, Architecture and Flow": [[267, "framework-components-architecture-and-flow"]], "3. Import Grafana Dashboard": [[92, "import-grafana-dashboard"]], "3. Manage fine-tuning job": [[156, "manage-fine-tuning-job"], [169, "manage-fine-tuning-job"]], "3. Metric for OPEA/chatqna": [[223, "metric-for-opea-chatqna"]], "3. Run Pgvector service": [[81, "run-pgvector-service"]], "3. Run tests": [[110, "run-tests"], [110, "id3"], [110, "id8"]], "3. Start all the services Docker Containers": [[137, "start-all-the-services-docker-containers"], [138, "start-all-the-services-docker-containers"]], "3. TSC Voting": [[241, "tsc-voting"]], "3. Temporary Ban": [[237, "temporary-ban"]], "3. Test ChatQnA service": [[234, "test-chatqna-service"]], "3. Test helm charts": [[195, "test-helm-charts"]], "3.1 Check Service Status": [[26, "check-service-status"], [27, "check-service-status"], [34, "check-service-status"], [43, "check-service-status"], [44, "check-service-status"], [45, "check-service-status"], [50, "check-service-status"], [61, "check-service-status"], [63, "check-service-status"], [66, "check-service-status"], [68, "check-service-status"], [70, "check-service-status"], [71, "check-service-status"], [72, "check-service-status"], [73, "check-service-status"], [74, "check-service-status"]], "3.1 Consume Embedding Service": [[67, "consume-embedding-service"]], "3.1 Consume Upload API": [[11, "consume-upload-api"], [14, "consume-upload-api"]], "3.1 Start with CLI (Option 1)": [[58, "start-with-cli-option-1"]], "3.1 Upload Retrieval File": [[110, "upload-retrieval-file"]], "3.1 Upload a training file": [[30, "upload-a-training-file"]], "3.2 Consume Embedding Service": [[26, "id2"], [27, "id2"], [66, "consume-embedding-service"], [68, "consume-embedding-service"], [70, "consume-embedding-service"], [71, "consume-embedding-service"], [72, "consume-embedding-service"], [74, "consume-embedding-service"]], "3.2 Consume FAQGen LLM Service": [[43, "consume-faqgen-llm-service"]], "3.2 Consume Guardrails Service": [[34, "id1"]], "3.2 Consume LLM Service": [[44, "id1"], [50, "id1"]], "3.2 Consume Reranking Service": [[61, "id1"], [63, "id1"]], "3.2 Consume Retriever Service": [[73, "id1"]], "3.2 Consume get_file API": [[11, "consume-get-file-api"], [14, "consume-get-file-api"]], "3.2 Create fine-tuning job": [[30, "create-fine-tuning-job"]], "3.2 Run Benchmark Test": [[110, "run-benchmark-test"]], "3.2 Start with Docker Compose (Option 2)": [[58, "start-with-docker-compose-option-2"]], "3.2 Verify the LLM Service": [[45, "verify-the-llm-service"]], "3.2.1 Instruction Tuning": [[30, "instruction-tuning"]], "3.2.1 Verify the TGI Service": [[45, "verify-the-tgi-service"]], "3.2.2 Reranking Model Training": [[30, "reranking-model-training"]], "3.2.2 Verify the vLLM Service": [[45, "verify-the-vllm-service"]], "3.2.3 Embedding Model Training": [[30, "embedding-model-training"]], "3.2.3 Verify the Ray Service": [[45, "verify-the-ray-service"]], "3.2.4 LLM Pretraining": [[30, "llm-pretraining"]], "3.3 Consume LLM Service": [[45, "id7"]], "3.3 Consume delete_file API": [[11, "consume-delete-file-api"]], "3.3 Manage fine-tuning job": [[30, "manage-fine-tuning-job"]], "3.4 Leverage fine-tuned model": [[30, "leverage-fine-tuned-model"]], "4 TEI Reranking Service": [[115, "tei-reranking-service"]], "4. Assessing GenAI components and flows": [[267, "assessing-genai-components-and-flows"]], "4. Build CodeGen React UI Docker Image (Optional)": [[123, "build-codegen-react-ui-docker-image-optional"], [124, "build-codegen-react-ui-docker-image-optional"]], "4. Build LLM Image": [[111, "build-llm-image"], [112, "build-llm-image"], [113, "build-llm-image"], [114, "build-llm-image"], [164, "build-llm-image"], [173, "build-llm-image"], [174, "build-llm-image"]], "4. Build LVM Image (Xeon)": [[184, "build-lvm-image-xeon"]], "4. Build Nginx Docker Image": [[131, "build-nginx-docker-image"], [132, "build-nginx-docker-image"], [178, "build-nginx-docker-image"], [179, "build-nginx-docker-image"]], "4. Build React UI Docker Image": [[140, "build-react-ui-docker-image"]], "4. Build Rerank Image": [[116, "build-rerank-image"]], "4. Build TTS Image": [[104, "build-tts-image"], [105, "build-tts-image"]], "4. Build UI Docker Image": [[141, "build-ui-docker-image"], [150, "build-ui-docker-image"], [187, "build-ui-docker-image"]], "4. Build dataprep-multimodal-redis Image": [[161, "build-dataprep-multimodal-redis-image"], [162, "build-dataprep-multimodal-redis-image"]], "4. Build react UI Docker Image (Optional)": [[149, "build-react-ui-docker-image-optional"]], "4. Check each micro service used by the Mega Service": [[115, "check-each-micro-service-used-by-the-mega-service"]], "4. Compliance with Policies": [[241, "compliance-with-policies"]], "4. Data collection": [[110, "data-collection"], [110, "id4"], [110, "id9"]], "4. Delete ChatQnA and GMC": [[234, "delete-chatqna-and-gmc"]], "4. Metric for PCM(Intel\u00ae Performance Counter Monitor)": [[223, "metric-for-pcm-intel-performance-counter-monitor"]], "4. Permanent Ban": [[237, "permanent-ban"]], "4. Pull TGI Xeon Image": [[186, "pull-tgi-xeon-image"]], "4. Test GMC": [[195, "test-gmc"]], "4. Validated Model": [[50, "validated-model"]], "4. Validation": [[137, "validation"], [138, "validation"]], "4.1 Consume Upload API": [[17, "consume-upload-api"]], "4.1 Consume videos_with_transcripts API": [[12, "consume-videos-with-transcripts-api"]], "4.1 Use TGI": [[114, "use-tgi"]], "4.2 Consume generate_transcripts API": [[12, "consume-generate-transcripts-api"]], "4.2 Consume get_file API": [[17, "consume-get-file-api"]], "4.2 Use VLLM": [[114, "use-vllm"]], "4.3 Consume delete_file API": [[14, "consume-delete-file-api"], [17, "consume-delete-file-api"]], "4.3 Consume generate_captions API": [[12, "consume-generate-captions-api"]], "4.3 Use VLLM-on-Ray": [[114, "use-vllm-on-ray"]], "4.4 Consume get_videos API": [[12, "consume-get-videos-api"]], "4.5 Consume delete_videos API": [[12, "consume-delete-videos-api"]], "5 Reranking Microservice": [[115, "reranking-microservice"]], "5. Build Dataprep Image": [[111, "build-dataprep-image"], [112, "build-dataprep-image"], [113, "build-dataprep-image"], [114, "build-dataprep-image"], [164, "build-dataprep-image"], [184, "build-dataprep-image"]], "5. Build LLM Image": [[116, "build-llm-image"]], "5. Build MegaService Docker Image": [[161, "build-megaservice-docker-image"], [162, "build-megaservice-docker-image"], [173, "build-megaservice-docker-image"], [174, "build-megaservice-docker-image"]], "5. Build React UI Docker Image": [[141, "build-react-ui-docker-image"]], "5. Build react UI Docker Image (Optional)": [[150, "build-react-ui-docker-image-optional"]], "5. Clean up": [[110, "clean-up"], [110, "id5"], [110, "id10"]], "5. Community Assets": [[241, "community-assets"]], "5. Customize agent strategy": [[3, "customize-agent-strategy"]], "5. Grading Structure": [[267, "grading-structure"]], "5. Publish images": [[195, "publish-images"]], "5. Trouble shooting": [[137, "trouble-shooting"], [138, "trouble-shooting"]], "6 TGI Service": [[115, "tgi-service"]], "6. Build Dataprep Image": [[116, "build-dataprep-image"]], "6. Build Guardrails Docker Image (Optional)": [[114, "build-guardrails-docker-image-optional"]], "6. Build MegaService Docker Image": [[104, "build-megaservice-docker-image"], [105, "build-megaservice-docker-image"], [111, "build-megaservice-docker-image"], [112, "build-megaservice-docker-image"], [113, "build-megaservice-docker-image"], [184, "build-megaservice-docker-image"]], "6. Build Prompt Registry Image": [[164, "build-prompt-registry-image"]], "6. Build UI Docker Image": [[161, "build-ui-docker-image"], [162, "build-ui-docker-image"], [173, "build-ui-docker-image"]], "6. General Rules and Operations.": [[241, "general-rules-and-operations"]], "6. Reference flows": [[267, "reference-flows"]], "7 LLM Microservice": [[115, "llm-microservice"]], "7. Build Chat History Image": [[164, "build-chat-history-image"]], "7. Build MegaService Docker Image": [[114, "build-megaservice-docker-image"], [116, "build-megaservice-docker-image"]], "7. Build UI Docker Image": [[111, "build-ui-docker-image"], [112, "build-ui-docker-image"], [113, "build-ui-docker-image"], [184, "build-ui-docker-image"]], "7. Intellectual Property Policy": [[241, "intellectual-property-policy"]], "8 MegaService": [[115, "megaservice"]], "8. Amendments": [[241, "amendments"]], "8. Build Conversational React UI Docker Image (Optional)": [[112, "build-conversational-react-ui-docker-image-optional"], [113, "build-conversational-react-ui-docker-image-optional"]], "8. Build MegaService Docker Images": [[164, "build-megaservice-docker-images"]], "8. Build UI Docker Image": [[114, "build-ui-docker-image"], [116, "build-ui-docker-image"]], "8.1 Build ChatQnA MegaService Docker Images": [[164, "build-chatqna-megaservice-docker-images"]], "8.2 Build DocSum Megaservice Docker Images": [[164, "build-docsum-megaservice-docker-images"]], "8.3 Build CodeGen Megaservice Docker Images": [[164, "build-codegen-megaservice-docker-images"]], "8.4 Build FAQGen Megaservice Docker Images": [[164, "build-faqgen-megaservice-docker-images"]], "9. Build Conversational React UI Docker Image (Optional)": [[114, "build-conversational-react-ui-docker-image-optional"]], "9. Build Nginx Docker Image": [[112, "build-nginx-docker-image"]], "9. Build React UI Docker Image (Optional)": [[116, "build-react-ui-docker-image-optional"]], "9. Build UI Docker Image": [[164, "build-ui-docker-image"]], "A1: System Components": [[267, "a1-system-components"]], "A2: SW Architecture": [[267, "a2-sw-architecture"]], "A3: System Flows": [[267, "a3-system-flows"]], "A4.1 End-to-end assessment": [[267, "a4-1-end-to-end-assessment"]], "A4.2 Individual Components Assessment": [[267, "a4-2-individual-components-assessment"]], "A4: Select Specifications": [[267, "a4-select-specifications"]], "A5.1 Performance Grading": [[267, "a5-1-performance-grading"]], "A5.2 Features Grading": [[267, "a5-2-features-grading"]], "A5.3 Trustworthiness Grading": [[267, "a5-3-trustworthiness-grading"]], "A5.4 Enterprise-Ready Grading": [[267, "a5-4-enterprise-ready-grading"]], "A5: Grading": [[267, "a5-grading"]], "A6.1 \u2013 Xeon + Gaudi2 LLM RAG flow for Chat QnA": [[267, "a6-1-xeon-gaudi2-llm-rag-flow-for-chat-qna"]], "A6.2 - Multimodal Chat Over Images and Videos": [[267, "a6-2-multimodal-chat-over-images-and-videos"]], "A6.3 \u2013 Optimized Text and Multimodal RAG pipeline": [[267, "a6-3-optimized-text-and-multimodal-rag-pipeline"]], "A6: Reference Flows": [[267, "a6-reference-flows"]], "AI Models": [[284, "ai-models"], [284, "id2"], [284, "id6"], [284, "id10"], [284, "id14"], [284, "id18"], [284, "id22"]], "AI Tools Integration": [[284, "ai-tools-integration"], [284, "id3"], [284, "id7"], [284, "id11"], [284, "id15"], [284, "id19"], [284, "id23"]], "API Services Table of Contents": [[253, "api-services-table-of-contents"]], "API access": [[48, "api-access"]], "APISIX based implementation for cloud native environments": [[196, "apisix-based-implementation-for-cloud-native-environments"]], "ASR": [[102, "asr"]], "ASR Micro Service": [[253, "asr-micro-service"]], "ASR Microservice": [[6, "asr-microservice"]], "Acknowledgements": [[97, "acknowledgements"]], "Adding Edge Labels": [[256, "adding-edge-labels"]], "Additional Content": [[2, "additional-content"], [88, "additional-content"], [168, "additional-content"], [194, "additional-content"]], "Additional steps if your contribution is Hardware Specific": [[238, "additional-steps-if-your-contribution-is-hardware-specific"]], "Agent Microservice": [[3, "agent-microservice"], [277, "agent-microservice"]], "AgentQnA": [[191, "agentqna"]], "AgentQnA Application": [[265, "agentqna-application"]], "Agents for Question Answering": [[100, "agents-for-question-answering"]], "All The Ways To Contribute": [[238, "all-the-ways-to-contribute"]], "Alternative Tabbed Content": [[254, "alternative-tabbed-content"]], "Alternatives Considered": [[245, "alternatives-considered"], [246, "alternatives-considered"], [248, "alternatives-considered"]], "Appendix A \u2013 Draft OPEA Specifications": [[267, "appendix-a-draft-opea-specifications"]], "Architecture": [[168, "architecture"], [226, "architecture"], [232, "architecture"], [259, "architecture"]], "Architecture and Deploy details": [[109, "architecture-and-deploy-details"]], "Asr Microservice": [[277, "asr-microservice"]], "Attribution": [[237, "attribution"]], "AudioQnA": [[108, "audioqna"], [191, "audioqna"]], "AudioQnA Application": [[102, "audioqna-application"], [265, "audioqna-application"]], "AudioQnA accuracy Evaluation": [[103, "audioqna-accuracy-evaluation"]], "Aug 2024": [[284, "aug-2024"]], "Authentication and Authorization": [[252, "authentication-and-authorization"]], "Authentication and Authorization with APISIX and OIDC based Identity provider (Keycloak)": [[197, "authentication-and-authorization-with-apisix-and-oidc-based-identity-provider-keycloak"]], "Authentication and authorization": [[196, "authentication-and-authorization"]], "Author": [[245, "author"], [246, "author"], [247, "author"], [248, "author"], [249, "author"], [250, "author"]], "Auto-Tuning for ChatQnA: Optimizing Accuracy by Tuning Model Related Parameters": [[91, "auto-tuning-for-chatqna-optimizing-accuracy-by-tuning-model-related-parameters"]], "Auto-Tuning for ChatQnA: Optimizing Resource Allocation in Kubernetes": [[91, "auto-tuning-for-chatqna-optimizing-resource-allocation-in-kubernetes"]], "AutoRAG to evaluate the RAG system performance": [[96, "autorag-to-evaluate-the-rag-system-performance"]], "Avatar Chatbot design": [[249, "avatar-chatbot-design"]], "AvatarChatbot megaservice": [[249, "avatarchatbot-megaservice"]], "Background Colors": [[254, "background-colors"]], "Basic UI": [[260, "basic-ui"], [261, "basic-ui"], [261, "id4"], [263, "basic-ui"], [264, "basic-ui"]], "Basic Usage": [[94, "basic-usage"]], "Benchmark": [[88, "benchmark"]], "Benchmark tool preparation": [[110, "benchmark-tool-preparation"]], "Benchmark with Docker": [[110, "benchmark-with-docker"]], "Bias Detection Microservice": [[32, "bias-detection-microservice"]], "Binaries building": [[226, "binaries-building"]], "Binaries deleting": [[226, "binaries-deleting"]], "Branch-Specific File Links": [[254, "branch-specific-file-links"]], "Build": [[231, "build"]], "Build Dataprep Image": [[260, "build-dataprep-image"], [261, "build-dataprep-image"], [263, "build-dataprep-image"], [264, "build-dataprep-image"]], "Build Docker Image": [[8, "build-docker-image"], [13, "build-docker-image"], [15, "build-docker-image"], [16, "build-docker-image"], [29, "build-docker-image"], [48, "build-docker-image"], [49, "build-docker-image"], [51, "build-docker-image"], [52, "build-docker-image"], [60, "build-docker-image"], [66, "build-docker-image"], [68, "build-docker-image"], [86, "build-docker-image"]], "Build Docker Images": [[25, "build-docker-images"], [33, "build-docker-images"], [36, "build-docker-images"], [37, "build-docker-images"], [39, "build-docker-images"]], "Build Embedding Image": [[260, "build-embedding-image"], [261, "build-embedding-image"], [263, "build-embedding-image"], [264, "build-embedding-image"]], "Build LLM Image": [[260, "build-llm-image"], [263, "build-llm-image"], [264, "build-llm-image"]], "Build Langchain Docker": [[23, "build-langchain-docker"], [24, "build-langchain-docker"]], "Build Mega Service images": [[260, "build-mega-service-images"], [261, "build-mega-service-images"], [263, "build-mega-service-images"], [264, "build-mega-service-images"]], "Build Mega Service of AudioQnA on Gaudi": [[105, "build-mega-service-of-audioqna-on-gaudi"]], "Build Mega Service of AudioQnA on Xeon": [[104, "build-mega-service-of-audioqna-on-xeon"]], "Build Mega Service of ChatQnA (with Qdrant) on Xeon": [[113, "build-mega-service-of-chatqna-with-qdrant-on-xeon"]], "Build Mega Service of ChatQnA on AIPC": [[111, "build-mega-service-of-chatqna-on-aipc"]], "Build Mega Service of ChatQnA on Xeon": [[112, "build-mega-service-of-chatqna-on-xeon"]], "Build Mega Service of CodeTrans on Gaudi": [[132, "build-mega-service-of-codetrans-on-gaudi"]], "Build Mega Service of CodeTrans on Xeon": [[131, "build-mega-service-of-codetrans-on-xeon"]], "Build Mega Service of Document Summarization on Intel Xeon Processor": [[140, "build-mega-service-of-document-summarization-on-intel-xeon-processor"]], "Build Mega Service of FAQ Generation on Intel Xeon Processor": [[149, "build-mega-service-of-faq-generation-on-intel-xeon-processor"]], "Build Mega Service of MultimodalQnA on Gaudi": [[162, "build-mega-service-of-multimodalqna-on-gaudi"]], "Build Mega Service of MultimodalQnA on Xeon": [[161, "build-mega-service-of-multimodalqna-on-xeon"]], "Build Mega Service of Productivity Suite on Xeon": [[164, "build-mega-service-of-productivity-suite-on-xeon"]], "Build Mega Service of SearchQnA on Gaudi": [[174, "build-mega-service-of-searchqna-on-gaudi"]], "Build Mega Service of SearchQnA on Xeon": [[173, "build-mega-service-of-searchqna-on-xeon"]], "Build Mega Service of Translation on Xeon": [[178, "build-mega-service-of-translation-on-xeon"]], "Build Mega Service of VideoQnA on Xeon": [[184, "build-mega-service-of-videoqna-on-xeon"]], "Build Mega Service of VisualQnA on Xeon": [[186, "build-mega-service-of-visualqna-on-xeon"]], "Build MegaService of ChatQnA on Gaudi": [[114, "build-megaservice-of-chatqna-on-gaudi"]], "Build MegaService of ChatQnA on NVIDIA GPU": [[116, "build-megaservice-of-chatqna-on-nvidia-gpu"]], "Build MegaService of CodeGen on Gaudi": [[124, "build-megaservice-of-codegen-on-gaudi"]], "Build MegaService of CodeGen on Xeon": [[123, "build-megaservice-of-codegen-on-xeon"]], "Build MegaService of Document Summarization on Gaudi": [[141, "build-megaservice-of-document-summarization-on-gaudi"]], "Build MegaService of FAQ Generation on Gaudi": [[150, "build-megaservice-of-faq-generation-on-gaudi"]], "Build MegaService of Translation on Gaudi": [[179, "build-megaservice-of-translation-on-gaudi"]], "Build MegaService of VisualQnA on Gaudi": [[187, "build-megaservice-of-visualqna-on-gaudi"]], "Build Other Service images": [[260, "build-other-service-images"], [261, "build-other-service-images"], [263, "build-other-service-images"], [264, "build-other-service-images"]], "Build Rerank Image": [[260, "build-rerank-image"], [261, "build-rerank-image"], [263, "build-rerank-image"], [264, "build-rerank-image"]], "Build Retriever Image": [[260, "build-retriever-image"], [261, "build-retriever-image"], [263, "build-retriever-image"], [264, "build-retriever-image"]], "Build TEI Gaudi Image": [[261, "build-tei-gaudi-image"]], "Build docker": [[51, "build-docker"], [51, "id1"], [51, "id3"], [52, "build-docker"], [52, "id1"], [52, "id3"], [53, "build-docker"], [53, "id1"], [261, "build-docker"]], "Build the UI Image": [[260, "build-the-ui-image"], [261, "build-the-ui-image"], [263, "build-the-ui-image"], [264, "build-the-ui-image"]], "Build/Pull Microservice images": [[260, "build-pull-microservice-images"], [261, "build-pull-microservice-images"], [263, "build-pull-microservice-images"], [264, "build-pull-microservice-images"]], "Building and running": [[80, "building-and-running"]], "CHAT QNA": [[167, "chat-qna"]], "CODEGEN": [[167, "codegen"]], "CPU": [[88, "cpu"]], "CPU service": [[54, "cpu-service"]], "CRAG Benchmark for Agent QnA systems": [[95, "crag-benchmark-for-agent-qna-systems"]], "CRAG dataset": [[95, "crag-dataset"]], "CRUD (Chinese dataset)": [[97, "crud-chinese-dataset"]], "Chat": [[253, "chat"]], "Chat History with MongoDB": [[7, "chat-history-with-mongodb"]], "Chat with AI assistant": [[123, "chat-with-ai-assistant"], [124, "chat-with-ai-assistant"]], "ChatQnA": [[191, "chatqna"], [201, "chatqna"]], "ChatQnA Application": [[109, "chatqna-application"], [265, "chatqna-application"]], "ChatQnA Benchmarking": [[110, "chatqna-benchmarking"]], "ChatQnA Conversational UI": [[119, "chatqna-conversational-ui"]], "ChatQnA Customized UI": [[120, "chatqna-customized-ui"]], "ChatQnA Example Deployment Options": [[262, "chatqna-example-deployment-options"]], "ChatQnA Sample Guide": [[259, "chatqna-sample-guide"]], "ChatQnA Troubleshooting": [[202, "chatqna-troubleshooting"]], "ChatQnA Use Cases in Kubernetes Cluster via GMC": [[227, "chatqna-use-cases-in-kubernetes-cluster-via-gmc"]], "ChatQnA supports multiple LLM models": [[227, "chatqna-supports-multiple-llm-models"]], "ChatQnA with data preparation": [[227, "chatqna-with-data-preparation"]], "Chathistory Microservice": [[277, "chathistory-microservice"]], "Check Env Variables": [[260, "check-env-variables"], [261, "check-env-variables"], [263, "check-env-variables"], [264, "check-env-variables"]], "Check Service Status": [[109, "check-service-status"]], "Check docker container log": [[260, "check-docker-container-log"], [261, "check-docker-container-log"], [263, "check-docker-container-log"], [264, "check-docker-container-log"]], "Check microservice status": [[51, "check-microservice-status"]], "Check the container status": [[260, "check-the-container-status"], [261, "check-the-container-status"], [263, "check-the-container-status"], [264, "check-the-container-status"]], "Check the installation result": [[228, "check-the-installation-result"]], "Citation": [[1, "citation"], [87, "citation"], [98, "citation"], [159, "citation"], [193, "citation"]], "Clean Microservices": [[184, "clean-microservices"]], "Clean up": [[110, "id13"]], "Clone OPEA GenAIComps": [[45, "clone-opea-genaicomps"]], "Cloud Native": [[262, "cloud-native"]], "Code Gen": [[128, "code-gen"], [129, "code-gen"]], "Code Generation Application": [[121, "code-generation-application"]], "Code Suggestion": [[123, "code-suggestion"], [124, "code-suggestion"]], "Code Translation": [[135, "code-translation"]], "Code Translation Application": [[130, "code-translation-application"]], "Code and Command Examples": [[254, "code-and-command-examples"]], "CodeGen": [[191, "codegen"], [203, "codegen"]], "CodeGen Application": [[265, "codegen-application"]], "CodeGen accuracy Evaluation": [[122, "codegen-accuracy-evaluation"]], "CodeTrans": [[191, "codetrans"], [204, "codetrans"]], "CodeTrans Application": [[265, "codetrans-application"]], "Coding Guides": [[257, "coding-guides"]], "Community Discussions": [[238, "community-discussions"]], "Community Support": [[243, "community-support"]], "Compatibility": [[245, "compatibility"], [246, "compatibility"], [248, "compatibility"], [249, "compatibility"], [250, "compatibility"]], "Components": [[200, "components"]], "Configuration": [[80, "configuration"], [90, "configuration"]], "Configuration Files": [[91, "configuration-files"]], "Configuration file": [[94, "configuration-file"]], "Configure": [[89, "configure"]], "Configuring the ingress gateway": [[232, "configuring-the-ingress-gateway"]], "Constructing Services with yaml": [[245, "constructing-services-with-yaml"]], "Consume Chat Service": [[109, "consume-chat-service"]], "Consume ChatQnA Service with RAG": [[109, "consume-chatqna-service-with-rag"]], "Consume Code Translation Service": [[130, "consume-code-translation-service"]], "Consume CodeGen Service": [[121, "consume-codegen-service"]], "Consume Document Summarization Service": [[139, "consume-document-summarization-service"]], "Consume Instruction Tuning Service": [[156, "consume-instruction-tuning-service"]], "Consume Rerank Model Finetuning Service": [[169, "consume-rerank-model-finetuning-service"]], "Consume SearchQnA Service": [[172, "consume-searchqna-service"]], "Consume Web Retriever Service": [[86, "consume-web-retriever-service"]], "Consume retrieval tool": [[101, "consume-retrieval-tool"]], "Consume the Ollama Microservice": [[48, "consume-the-ollama-microservice"]], "Consume the Prediction Guard Microservice": [[49, "consume-the-prediction-guard-microservice"]], "Consume the microservice": [[51, "consume-the-microservice"]], "Consume vLLM Service": [[51, "consume-vllm-service"]], "Content Highlighting": [[254, "content-highlighting"]], "Continuous Integration (CICD) owners": [[242, "continuous-integration-cicd-owners"]], "Contribute a GenAI Component": [[238, "contribute-a-genai-component"]], "Contribute a GenAI Example": [[238, "contribute-a-genai-example"]], "Contributing Guides": [[243, "contributing-guides"]], "Contributing to OPEA": [[2, "contributing-to-opea"], [168, "contributing-to-opea"]], "Contribution": [[284, "contribution"], [284, "id1"], [284, "id5"], [284, "id9"], [284, "id13"], [284, "id17"], [284, "id21"]], "Contribution Guidelines": [[238, "contribution-guidelines"]], "Contributor Covenant Code of Conduct": [[237, "contributor-covenant-code-of-conduct"], [238, "contributor-covenant-code-of-conduct"]], "Conversational UI": [[260, "conversational-ui"], [261, "conversational-ui"], [261, "id5"], [263, "conversational-ui"], [264, "conversational-ui"]], "Cores Microservice": [[277, "cores-microservice"]], "Create AWS EKS Cluster in AWS Console": [[272, "create-aws-eks-cluster-in-aws-console"]], "Create Pull Request": [[238, "create-pull-request"]], "Create a new index from a loader": [[78, "create-a-new-index-from-a-loader"]], "Create a new index from texts": [[78, "create-a-new-index-from-texts"]], "Current Approach": [[250, "current-approach"]], "Customize": [[123, "customize"], [124, "customize"]], "DATA SOURCE": [[167, "data-source"]], "DOC SUMMARY": [[167, "doc-summary"]], "Data collection": [[110, "id12"]], "Dataprep": [[260, "dataprep"], [261, "dataprep"], [263, "dataprep"], [264, "dataprep"]], "Dataprep Microservice": [[10, "dataprep-microservice"], [277, "dataprep-microservice"]], "Dataprep Microservice for Multimodal Data with Redis": [[12, "dataprep-microservice-for-multimodal-data-with-redis"]], "Dataprep Microservice with Milvus": [[10, "dataprep-microservice-with-milvus"], [11, "dataprep-microservice-with-milvus"]], "Dataprep Microservice with Multimodal": [[10, "dataprep-microservice-with-multimodal"]], "Dataprep Microservice with Neo4J": [[13, "dataprep-microservice-with-neo4j"]], "Dataprep Microservice with PGVector": [[10, "dataprep-microservice-with-pgvector"], [14, "dataprep-microservice-with-pgvector"]], "Dataprep Microservice with Pinecone": [[10, "dataprep-microservice-with-pinecone"], [15, "dataprep-microservice-with-pinecone"]], "Dataprep Microservice with Qdrant": [[10, "dataprep-microservice-with-qdrant"], [16, "dataprep-microservice-with-qdrant"]], "Dataprep Microservice with Redis": [[10, "dataprep-microservice-with-redis"], [17, "dataprep-microservice-with-redis"]], "Dataprep Microservice with VDMS": [[10, "dataprep-microservice-with-vdms"], [18, "dataprep-microservice-with-vdms"]], "Dataprep Microservice\uff08Optional\uff09": [[260, "dataprep-microservice-optional"], [261, "dataprep-microservice-optional"], [263, "dataprep-microservice-optional"], [264, "dataprep-microservice-optional"]], "Dataset": [[103, "dataset"], [148, "dataset"]], "Delete Ray Cluster with Autoscaling": [[235, "delete-ray-cluster-with-autoscaling"]], "Delete all uploaded files and links": [[260, "delete-all-uploaded-files-and-links"], [261, "delete-all-uploaded-files-and-links"], [263, "delete-all-uploaded-files-and-links"], [264, "delete-all-uploaded-files-and-links"]], "Delete file": [[260, "delete-file"], [261, "delete-file"], [263, "delete-file"], [264, "delete-file"]], "Delete link": [[260, "delete-link"], [261, "delete-link"], [263, "delete-link"], [264, "delete-link"]], "Deploy AudioQnA Service": [[102, "deploy-audioqna-service"]], "Deploy AudioQnA in Kubernetes Cluster on Xeon and Gaudi": [[107, "deploy-audioqna-in-kubernetes-cluster-on-xeon-and-gaudi"]], "Deploy AudioQnA in a Kubernetes Cluster": [[106, "deploy-audioqna-in-a-kubernetes-cluster"]], "Deploy AudioQnA on Gaudi": [[102, "deploy-audioqna-on-gaudi"]], "Deploy AudioQnA on Xeon": [[102, "deploy-audioqna-on-xeon"]], "Deploy AudioQnA pipeline": [[107, "deploy-audioqna-pipeline"]], "Deploy Autoscaling Ray Cluster with KubeRay in Kubernetes Cluster": [[235, "deploy-autoscaling-ray-cluster-with-kuberay-in-kubernetes-cluster"]], "Deploy ChatQnA Megaservice and Microservices": [[268, "deploy-chatqna-megaservice-and-microservices"]], "Deploy ChatQnA Service": [[109, "deploy-chatqna-service"]], "Deploy ChatQnA in Kubernetes Cluster": [[117, "deploy-chatqna-in-kubernetes-cluster"]], "Deploy ChatQnA in Kubernetes Cluster on Xeon and Gaudi": [[118, "deploy-chatqna-in-kubernetes-cluster-on-xeon-and-gaudi"]], "Deploy ChatQnA into Kubernetes on Xeon & Gaudi with GMC": [[109, "deploy-chatqna-into-kubernetes-on-xeon-gaudi-with-gmc"]], "Deploy ChatQnA into Kubernetes on Xeon & Gaudi without GMC": [[109, "deploy-chatqna-into-kubernetes-on-xeon-gaudi-without-gmc"]], "Deploy ChatQnA into Kubernetes using Helm Chart": [[109, "deploy-chatqna-into-kubernetes-using-helm-chart"]], "Deploy ChatQnA on AI PC": [[109, "deploy-chatqna-on-ai-pc"]], "Deploy ChatQnA on Gaudi": [[109, "deploy-chatqna-on-gaudi"], [110, "deploy-chatqna-on-gaudi"]], "Deploy ChatQnA on NVIDIA GPU": [[109, "deploy-chatqna-on-nvidia-gpu"], [110, "deploy-chatqna-on-nvidia-gpu"]], "Deploy ChatQnA on Red Hat OpenShift Container Platform (RHOCP)": [[109, "deploy-chatqna-on-red-hat-openshift-container-platform-rhocp"]], "Deploy ChatQnA on Xeon": [[109, "deploy-chatqna-on-xeon"], [110, "deploy-chatqna-on-xeon"]], "Deploy ChatQnA pipeline": [[118, "deploy-chatqna-pipeline"], [227, "deploy-chatqna-pipeline"]], "Deploy ChatQnA service with Docker": [[110, "deploy-chatqna-service-with-docker"]], "Deploy Code Translation Service": [[130, "deploy-code-translation-service"]], "Deploy Code Translation on Gaudi": [[130, "deploy-code-translation-on-gaudi"]], "Deploy Code Translation on Xeon": [[130, "deploy-code-translation-on-xeon"]], "Deploy CodeGen Service": [[121, "deploy-codegen-service"]], "Deploy CodeGen in Kubernetes Cluster": [[125, "deploy-codegen-in-kubernetes-cluster"]], "Deploy CodeGen in a Kubernetes Cluster": [[126, "deploy-codegen-in-a-kubernetes-cluster"]], "Deploy CodeGen into Kubernetes using Helm Chart": [[121, "deploy-codegen-into-kubernetes-using-helm-chart"]], "Deploy CodeGen on Gaudi": [[121, "deploy-codegen-on-gaudi"]], "Deploy CodeGen on Xeon": [[121, "deploy-codegen-on-xeon"]], "Deploy CodeGen using Docker": [[121, "deploy-codegen-using-docker"]], "Deploy CodeGen using Kubernetes": [[121, "deploy-codegen-using-kubernetes"]], "Deploy CodeGen with ReactUI": [[127, "deploy-codegen-with-reactui"]], "Deploy CodeTrans in Kubernetes Cluster": [[133, "deploy-codetrans-in-kubernetes-cluster"]], "Deploy CodeTrans in a Kubernetes Cluster": [[134, "deploy-codetrans-in-a-kubernetes-cluster"]], "Deploy CodeTrans into Kubernetes using Helm Chart": [[130, "deploy-codetrans-into-kubernetes-using-helm-chart"]], "Deploy DocSum in Kubernetes Cluster": [[142, "deploy-docsum-in-kubernetes-cluster"], [143, "deploy-docsum-in-kubernetes-cluster"]], "Deploy DocSum into Kubernetes using Helm Chart": [[139, "deploy-docsum-into-kubernetes-using-helm-chart"]], "Deploy DocSum with ReactUI": [[144, "deploy-docsum-with-reactui"]], "Deploy Document Summarization Service": [[139, "deploy-document-summarization-service"]], "Deploy Examples": [[168, "deploy-examples"]], "Deploy FAQ Generation Service": [[147, "deploy-faq-generation-service"]], "Deploy FAQ Generation on Gaudi": [[147, "deploy-faq-generation-on-gaudi"]], "Deploy FAQ Generation on Xeon": [[147, "deploy-faq-generation-on-xeon"]], "Deploy FaqGen in Kubernetes Cluster": [[151, "deploy-faqgen-in-kubernetes-cluster"]], "Deploy FaqGen with ReactUI": [[153, "deploy-faqgen-with-reactui"]], "Deploy Instruction Tuning Service": [[156, "deploy-instruction-tuning-service"]], "Deploy Instruction Tuning Service on Gaudi": [[156, "deploy-instruction-tuning-service-on-gaudi"], [158, "deploy-instruction-tuning-service-on-gaudi"]], "Deploy Instruction Tuning Service on Xeon": [[156, "deploy-instruction-tuning-service-on-xeon"], [157, "deploy-instruction-tuning-service-on-xeon"]], "Deploy Kubernetes add-ons for OPEA": [[224, "deploy-kubernetes-add-ons-for-opea"]], "Deploy MultimodalQnA Service": [[160, "deploy-multimodalqna-service"]], "Deploy MultimodalQnA on Gaudi": [[160, "deploy-multimodalqna-on-gaudi"]], "Deploy MultimodalQnA on Xeon": [[160, "deploy-multimodalqna-on-xeon"]], "Deploy On Gaudi": [[106, "deploy-on-gaudi"], [117, "deploy-on-gaudi"], [125, "deploy-on-gaudi"], [133, "deploy-on-gaudi"], [142, "deploy-on-gaudi"], [151, "deploy-on-gaudi"], [180, "deploy-on-gaudi"], [188, "deploy-on-gaudi"]], "Deploy On Xeon": [[106, "deploy-on-xeon"], [117, "deploy-on-xeon"], [125, "deploy-on-xeon"], [133, "deploy-on-xeon"], [142, "deploy-on-xeon"], [151, "deploy-on-xeon"], [180, "deploy-on-xeon"], [188, "deploy-on-xeon"]], "Deploy Rerank Model Finetuning Service": [[169, "deploy-rerank-model-finetuning-service"]], "Deploy Rerank Model Finetuning Service on Gaudi": [[169, "deploy-rerank-model-finetuning-service-on-gaudi"], [171, "deploy-rerank-model-finetuning-service-on-gaudi"]], "Deploy Rerank Model Finetuning Service on Xeon": [[169, "deploy-rerank-model-finetuning-service-on-xeon"], [170, "deploy-rerank-model-finetuning-service-on-xeon"]], "Deploy SearchQnA Service": [[172, "deploy-searchqna-service"]], "Deploy SearchQnA in a Kubernetes Cluster": [[175, "deploy-searchqna-in-a-kubernetes-cluster"]], "Deploy SearchQnA on Gaudi": [[172, "deploy-searchqna-on-gaudi"]], "Deploy SearchQnA on Xeon": [[172, "deploy-searchqna-on-xeon"]], "Deploy Translation Service": [[177, "deploy-translation-service"]], "Deploy Translation in Kubernetes Cluster": [[180, "deploy-translation-in-kubernetes-cluster"]], "Deploy Translation in a Kubernetes Cluster": [[181, "deploy-translation-in-a-kubernetes-cluster"]], "Deploy Translation on Gaudi": [[177, "deploy-translation-on-gaudi"]], "Deploy Translation on Xeon": [[177, "deploy-translation-on-xeon"]], "Deploy UI": [[151, "deploy-ui"]], "Deploy VideoQnA Service": [[183, "deploy-videoqna-service"]], "Deploy VideoQnA on Xeon": [[183, "deploy-videoqna-on-xeon"]], "Deploy VisualQnA Service": [[185, "deploy-visualqna-service"]], "Deploy VisualQnA in Kubernetes Cluster": [[188, "deploy-visualqna-in-kubernetes-cluster"]], "Deploy VisualQnA in a Kubernetes Cluster": [[189, "deploy-visualqna-in-a-kubernetes-cluster"]], "Deploy VisualQnA on Gaudi": [[185, "deploy-visualqna-on-gaudi"]], "Deploy VisualQnA on Xeon": [[185, "deploy-visualqna-on-xeon"]], "Deploy on Gaudi": [[139, "deploy-on-gaudi"]], "Deploy on Xeon": [[139, "deploy-on-xeon"]], "Deploy the RAG application": [[126, "deploy-the-rag-application"], [134, "deploy-the-rag-application"], [175, "deploy-the-rag-application"], [181, "deploy-the-rag-application"]], "Deploy the RAG pipeline": [[143, "deploy-the-rag-pipeline"]], "Deploy the VisualQnA application": [[189, "deploy-the-visualqna-application"]], "Deploy the use case": [[260, "deploy-the-use-case"], [261, "deploy-the-use-case"], [263, "deploy-the-use-case"], [264, "deploy-the-use-case"]], "Deploy using Docker": [[139, "deploy-using-docker"]], "Deploy using Kubernetes with GMC": [[130, "deploy-using-kubernetes-with-gmc"], [139, "deploy-using-kubernetes-with-gmc"]], "Deploy using Kubernetes without GMC": [[130, "deploy-using-kubernetes-without-gmc"], [139, "deploy-using-kubernetes-without-gmc"]], "Deploy using native kubectl": [[226, "deploy-using-native-kubectl"]], "Deploy via helm chart": [[226, "deploy-via-helm-chart"]], "Deploy with Docker": [[130, "deploy-with-docker"]], "Deploy with helm charts": [[200, "deploy-with-helm-charts"]], "Deploying GenAI": [[252, "deploying-genai"]], "Deployment": [[231, "deployment"], [232, "deployment"], [259, "deployment"]], "Deployment Guide": [[168, "deployment-guide"]], "Deployment Type": [[284, "deployment-type"], [284, "id4"], [284, "id8"], [284, "id12"], [284, "id16"], [284, "id20"], [284, "id24"]], "Description": [[226, "description"]], "Design Proposal": [[245, "design-proposal"], [246, "design-proposal"], [247, "design-proposal"], [248, "design-proposal"], [249, "design-proposal"], [250, "design-proposal"]], "Design Space": [[250, "design-space"]], "Details": [[281, "details"], [282, "details"], [283, "details"]], "Developer Guides": [[257, "developer-guides"]], "Development": [[192, "development"], [231, "development"]], "Do I need to be a Linux Foundation member to join?": [[266, "do-i-need-to-be-a-linux-foundation-member-to-join"]], "Doc Summary": [[146, "doc-summary"]], "Doc Summary React": [[145, "doc-summary-react"], [154, "doc-summary-react"]], "DocIndexRetriever": [[191, "docindexretriever"]], "DocIndexRetriever Application": [[265, "docindexretriever-application"]], "DocRetriever Application": [[136, "docretriever-application"]], "DocRetriever Application with Docker": [[137, "docretriever-application-with-docker"], [138, "docretriever-application-with-docker"]], "DocSum": [[191, "docsum"], [221, "docsum"]], "DocSum Application": [[265, "docsum-application"]], "Docker Images": [[190, "docker-images"]], "Docker images building": [[226, "docker-images-building"]], "Document Summarization Application": [[139, "document-summarization-application"]], "Document Summary TGI Microservice": [[44, "document-summary-tgi-microservice"]], "Document Versioning": [[255, "document-versioning"]], "Documentation": [[238, "documentation"]], "Documentation Generation": [[254, "documentation-generation"]], "Documentation Guidelines": [[254, "documentation-guidelines"]], "Documentation Guides": [[257, "documentation-guides"]], "Documentation Organization": [[254, "documentation-organization"]], "Documentation Overview": [[255, "documentation-overview"]], "Documentation Presentation Theme": [[255, "documentation-presentation-theme"]], "Drawings": [[254, "drawings"]], "Drawings Using Graphviz": [[256, "drawings-using-graphviz"]], "Dump the configuration": [[93, "dump-the-configuration"]], "Embedding": [[253, "embedding"]], "Embedding Generation Prediction Guard Microservice": [[25, "embedding-generation-prediction-guard-microservice"]], "Embedding Micro Service": [[253, "embedding-micro-service"]], "Embedding Microservice": [[260, "embedding-microservice"], [261, "embedding-microservice"], [263, "embedding-microservice"], [264, "embedding-microservice"]], "Embedding Server": [[22, "embedding-server"]], "Embedding Service": [[260, "embedding-service"], [261, "embedding-service"], [263, "embedding-service"], [264, "embedding-service"]], "Embeddings Microservice": [[20, "embeddings-microservice"], [277, "embeddings-microservice"]], "Embeddings Microservice with Langchain TEI": [[26, "embeddings-microservice-with-langchain-tei"]], "Embeddings Microservice with Llama Index TEI": [[27, "embeddings-microservice-with-llama-index-tei"]], "Embeddings Microservice with Mosec": [[20, "embeddings-microservice-with-mosec"]], "Embeddings Microservice with Multimodal": [[20, "embeddings-microservice-with-multimodal"]], "Embeddings Microservice with Multimodal Clip": [[20, "embeddings-microservice-with-multimodal-clip"]], "Embeddings Microservice with Prediction Guard": [[20, "embeddings-microservice-with-prediction-guard"]], "Embeddings Microservice with TEI": [[20, "embeddings-microservice-with-tei"]], "Enable HPA": [[199, "enable-hpa"]], "Enable NRI in Containerd": [[225, "enable-nri-in-containerd"]], "Enable RDT": [[225, "enable-rdt"]], "Enforcement": [[237, "enforcement"]], "Enforcement Guidelines": [[237, "enforcement-guidelines"]], "Enforcement Responsibilities": [[237, "enforcement-responsibilities"]], "Enterprise Readiness Grade": [[267, "enterprise-readiness-grade"]], "Enterprise readiness": [[267, "enterprise-readiness"]], "Environment": [[97, "environment"]], "Evaluate": [[103, "evaluate"], [148, "evaluate"]], "Evaluate with Ragas": [[148, "evaluate-with-ragas"]], "Evaluating GenAI": [[258, "evaluating-genai"]], "Evaluation": [[88, "evaluation"], [97, "evaluation"], [97, "id3"], [103, "evaluation"]], "Evaluation FAQs": [[122, "evaluation-faqs"]], "Evaluation Framework": [[122, "evaluation-framework"]], "Evaluation Methodology": [[97, "evaluation-methodology"]], "Example Code for Customizing Gateway": [[245, "example-code-for-customizing-gateway"]], "Example Python Code for Constructing Services": [[245, "example-python-code-for-constructing-services"]], "Example images": [[190, "example-images"]], "Examples": [[98, "examples"], [200, "examples"]], "Expected Output": [[259, "expected-output"]], "FAQ Generation": [[155, "faq-generation"]], "FAQ Generation Application": [[147, "faq-generation-application"]], "FAQ Generator": [[167, "faq-generator"]], "FAQ and Troubleshooting": [[234, "faq-and-troubleshooting"]], "Factuality Check Prediction Guard Microservice": [[33, "factuality-check-prediction-guard-microservice"]], "FaqGen": [[191, "faqgen"]], "FaqGen Application": [[265, "faqgen-application"]], "FaqGen Evaluation": [[148, "faqgen-evaluation"]], "Features": [[88, "features"], [90, "features"], [231, "features"]], "Features / Functionality": [[267, "features-functionality"]], "Features Grade": [[267, "features-grade"]], "Feedback Management with MongoDB": [[28, "feedback-management-with-mongodb"]], "Feedback_management Microservice": [[277, "feedback-management-microservice"]], "File Names and Commands": [[254, "file-names-and-commands"]], "Filter Expected Warnings": [[255, "filter-expected-warnings"]], "Fine-tuning Microservice": [[30, "fine-tuning-microservice"]], "Finetuning Microservice": [[277, "finetuning-microservice"]], "Finite-State Machine": [[256, "finite-state-machine"]], "First Instruction Step": [[254, "first-instruction-step"]], "Four node test": [[110, "four-node-test"]], "From Source Code": [[200, "from-source-code"]], "Frontend UI": [[249, "frontend-ui"]], "Further References": [[98, "further-references"]], "Future Development": [[32, "future-development"], [38, "future-development"]], "GMC Deployment on K8s cluster": [[226, "gmc-deployment-on-k8s-cluster"]], "GMC build": [[226, "gmc-build"]], "Gateway": [[2, "gateway"], [245, "gateway"]], "Gateways: Customized Access to Mega- and Microservices": [[276, "gateways-customized-access-to-mega-and-microservices"]], "Gaudi2": [[88, "gaudi2"]], "GenAI Examples": [[265, "genai-examples"]], "GenAI Microservices": [[277, "genai-microservices"]], "GenAI Studio Approach": [[250, "genai-studio-approach"]], "GenAI Studio High Level Architecture": [[250, "genai-studio-high-level-architecture"]], "GenAI-microservices-connector(GMC)": [[270, "genai-microservices-connector-gmc"]], "GenAI-microservices-connector(GMC) Installation": [[270, "genai-microservices-connector-gmc-installation"]], "GenAIComps": [[2, "genaicomps"], [279, "genaicomps"], [280, "genaicomps"]], "GenAIComps Repository Code Owners": [[242, "genaicomps-repository-code-owners"]], "GenAIEval": [[88, "genaieval"]], "GenAIEval Repository Code Owners": [[242, "genaieval-repository-code-owners"]], "GenAIEvals": [[279, "genaievals"], [280, "genaievals"]], "GenAIExamples": [[279, "genaiexamples"], [280, "genaiexamples"]], "GenAIExamples Repository Code Owners": [[242, "genaiexamples-repository-code-owners"]], "GenAIInfra": [[194, "genaiinfra"], [279, "genaiinfra"], [280, "genaiinfra"]], "GenAIInfra Repository Code Owners": [[242, "genaiinfra-repository-code-owners"]], "General ChatQnA with preset RAG data": [[227, "general-chatqna-with-preset-rag-data"]], "General Metrics": [[9, "general-metrics"]], "Generate FAQs": [[148, "generate-faqs"]], "Generate FAQs with microservice": [[148, "generate-faqs-with-microservice"]], "Generate manifests from Helm Charts": [[200, "generate-manifests-from-helm-charts"]], "Generate the test output report": [[93, "generate-the-test-output-report"]], "Generation and Evaluation": [[122, "generation-and-evaluation"]], "Generative AI Components (GenAIComps)": [[2, "generative-ai-components-genaicomps"]], "Generative AI Examples": [[168, "generative-ai-examples"]], "Get Started": [[48, "get-started"], [49, "get-started"]], "Getting Started": [[77, "getting-started"], [110, "getting-started"], [168, "getting-started"], [226, "getting-started"]], "Getting Started with OPEA": [[268, "getting-started-with-opea"]], "Getting started": [[95, "getting-started"], [100, "getting-started"]], "Glossary of Terms": [[269, "glossary-of-terms"]], "Gotchas": [[199, "gotchas"]], "Grafana Dashboards": [[88, "grafana-dashboards"]], "Guardrail Microservice": [[261, "guardrail-microservice"]], "Guardrails": [[232, "guardrails"]], "Guardrails (optional)": [[261, "guardrails-optional"]], "Guardrails Microservice": [[34, "guardrails-microservice"], [277, "guardrails-microservice"]], "Hardrware_info.json": [[91, "hardrware-info-json"]], "Headings": [[254, "headings"]], "Health check the vector store": [[80, "health-check-the-vector-store"]], "Helm Charts": [[200, "helm-charts"], [252, "helm-charts"]], "Helm Charts Options": [[200, "helm-charts-options"]], "Helm chart for genai-microservices-connector(GMC)": [[228, "helm-chart-for-genai-microservices-connector-gmc"]], "Helm charts for deploying GenAI Components and Examples": [[200, "helm-charts-for-deploying-genai-components-and-examples"]], "HorizontalPodAutoscaler (HPA) support": [[199, "horizontalpodautoscaler-hpa-support"]], "How It Works": [[259, "how-it-works"]], "How do I pronounce OPEA?": [[266, "how-do-i-pronounce-opea"]], "How does it compare to other options for deploying Gen AI solutions within the enterprise?": [[266, "how-does-it-compare-to-other-options-for-deploying-gen-ai-solutions-within-the-enterprise"]], "How to Check and Validate Micro Service in the GenAI Example": [[115, "how-to-check-and-validate-micro-service-in-the-genai-example"]], "How to Use": [[98, "how-to-use"], [123, "how-to-use"], [124, "how-to-use"]], "How to build the binary and setup?": [[225, "how-to-build-the-binary-and-setup"]], "How to build the docker image and setup?": [[225, "how-to-build-the-docker-image-and-setup"]], "How to config proxy?": [[274, "how-to-config-proxy"]], "How to delete binary?": [[225, "how-to-delete-binary"]], "How to deploy a single node Kubernetes?": [[274, "how-to-deploy-a-single-node-kubernetes"]], "How to deploy on the K8s cluster?": [[225, "how-to-deploy-on-the-k8s-cluster"]], "How to register your own tools with agent": [[100, "how-to-register-your-own-tools-with-agent"]], "How to scale Kubernetes cluster to add more nodes?": [[274, "how-to-scale-kubernetes-cluster-to-add-more-nodes"]], "How to use": [[88, "how-to-use"]], "How-To Setup Observability for OPEA Workload in Kubernetes": [[223, "how-to-setup-observability-for-opea-workload-in-kubernetes"]], "IMPORTANT NOTE": [[201, "important-note"], [203, "important-note"]], "Image-to-Video Microservice": [[40, "image-to-video-microservice"]], "Image2video Microservice": [[277, "image2video-microservice"]], "Images": [[254, "images"]], "In the terminal": [[48, "in-the-terminal"]], "Index data into vector database": [[101, "index-data-into-vector-database"]], "Inference In Place": [[248, "inference-in-place"]], "Input and output": [[35, "input-and-output"]], "Inputs": [[98, "inputs"]], "Install": [[89, "install"], [197, "install"], [199, "install"]], "Install Copilot VSCode extension from Plugin Marketplace as the frontend": [[123, "install-copilot-vscode-extension-from-plugin-marketplace-as-the-frontend"], [124, "install-copilot-vscode-extension-from-plugin-marketplace-as-the-frontend"]], "Install GMC": [[270, "install-gmc"]], "Install KubeRay": [[235, "install-kuberay"]], "Install Requirements": [[10, "install-requirements"], [13, "install-requirements"], [15, "install-requirements"], [16, "install-requirements"], [66, "install-requirements"], [68, "install-requirements"]], "Install the Chart": [[210, "install-the-chart"]], "Install the Documentation Tools": [[255, "install-the-documentation-tools"]], "Installation": [[2, "installation"], [88, "installation"], [90, "installation"], [93, "installation"]], "Installation Guides": [[252, "installation-guides"]], "Installing the Chart": [[201, "installing-the-chart"], [203, "installing-the-chart"], [204, "installing-the-chart"], [213, "installing-the-chart"], [214, "installing-the-chart"], [215, "installing-the-chart"], [216, "installing-the-chart"], [218, "installing-the-chart"], [220, "installing-the-chart"], [221, "installing-the-chart"]], "Installing the GMC Helm Chart": [[228, "installing-the-gmc-helm-chart"]], "Instruction Steps": [[254, "instruction-steps"]], "Instruction Tuning": [[156, "instruction-tuning"]], "InstructionTuning": [[191, "instructiontuning"]], "InstructionTuning Application": [[265, "instructiontuning-application"]], "Integrating Guardrails in the ingress gateway": [[232, "integrating-guardrails-in-the-ingress-gateway"]], "Intel\u00ae Gaudi\u00ae Base Operator for Kubernetes": [[222, "intel-gaudi-base-operator-for-kubernetes"]], "Intended Uses": [[98, "intended-uses"]], "Intent Detection Microservice by TGI": [[41, "intent-detection-microservice-by-tgi"]], "Intent_detection Microservice": [[277, "intent-detection-microservice"]], "Interact with ChatQnA Megaservice and Microservice": [[268, "interact-with-chatqna-megaservice-and-microservice"]], "Interacting with ChatQnA deployment": [[260, "interacting-with-chatqna-deployment"], [261, "interacting-with-chatqna-deployment"], [263, "interacting-with-chatqna-deployment"], [264, "interacting-with-chatqna-deployment"]], "Internal Cross-Reference Linking": [[254, "internal-cross-reference-linking"]], "Introduction": [[32, "introduction"], [38, "introduction"], [48, "introduction"], [77, "introduction"], [89, "introduction"], [97, "introduction"], [168, "introduction"], [199, "introduction"], [226, "introduction"]], "Invoke Microservice": [[13, "invoke-microservice"], [15, "invoke-microservice"], [16, "invoke-microservice"]], "Is there a cost for joining?": [[266, "is-there-a-cost-for-joining"]], "Istio based implementation for cloud native environments": [[196, "istio-based-implementation-for-cloud-native-environments"]], "July 2024": [[284, "july-2024"]], "June 2024": [[284, "june-2024"]], "Key Features": [[91, "key-features"]], "Key Implementation Details": [[259, "key-implementation-details"]], "Knowledge Graph Microservice": [[42, "knowledge-graph-microservice"]], "Knowledgegraphs Microservice": [[277, "knowledgegraphs-microservice"]], "Kubernetes": [[262, "kubernetes"]], "Kubernetes Addons": [[252, "kubernetes-addons"]], "Kubernetes Cluster Example": [[110, "kubernetes-cluster-example"]], "Kubernetes Installation Options": [[271, "kubernetes-installation-options"]], "Kubernetes Installation using AWS EKS Cluster": [[272, "kubernetes-installation-using-aws-eks-cluster"]], "Kubernetes Platform Optimization with Resource Management": [[89, "kubernetes-platform-optimization-with-resource-management"]], "Kubernetes installation demo using kubeadm": [[273, "kubernetes-installation-demo-using-kubeadm"]], "Kubernetes installation using Kubespray": [[274, "kubernetes-installation-using-kubespray"]], "Kubernetes platform optimization": [[88, "kubernetes-platform-optimization"]], "LLM Generation Micro Service": [[253, "llm-generation-micro-service"]], "LLM Microservice": [[45, "llm-microservice"], [260, "llm-microservice"], [261, "llm-microservice"], [263, "llm-microservice"], [264, "llm-microservice"]], "LLM Native Microservice": [[46, "llm-native-microservice"], [47, "llm-native-microservice"]], "LLM Service": [[260, "llm-service"], [261, "llm-service"], [261, "id1"], [263, "llm-service"], [264, "llm-service"]], "LM-Eval Microservice": [[54, "lm-eval-microservice"]], "LVM Microservice": [[55, "lvm-microservice"], [57, "lvm-microservice"]], "LVM Prediction Guard Microservice": [[56, "lvm-prediction-guard-microservice"]], "Language Translation": [[182, "language-translation"], [191, "language-translation"]], "Launch ASR microservice": [[103, "launch-asr-microservice"]], "Launch CodeGen microservice": [[122, "launch-codegen-microservice"]], "Launch FaQGen microservice": [[148, "launch-faqgen-microservice"]], "Launch HuggingFace endpoint on Intel\u2019s Gaudi machines": [[99, "launch-huggingface-endpoint-on-intel-s-gaudi-machines"]], "Launch Service of LLM-as-a-Judge": [[97, "launch-service-of-llm-as-a-judge"]], "Launch Service of RAG System": [[97, "launch-service-of-rag-system"], [97, "id2"]], "Launch TGI service": [[148, "launch-tgi-service"]], "Launch UI": [[260, "launch-ui"], [261, "launch-ui"], [261, "id3"], [263, "launch-ui"], [264, "launch-ui"]], "Launch agent QnA system": [[95, "launch-agent-qna-system"]], "Launch microservices": [[101, "launch-microservices"]], "Launch the microservice": [[51, "launch-the-microservice"], [52, "launch-the-microservice"], [53, "launch-the-microservice"]], "Launch the service": [[53, "launch-the-service"]], "Launch vLLM service": [[51, "launch-vllm-service"], [51, "id2"], [52, "launch-vllm-service"], [52, "id2"]], "Launch vLLM service on multiple nodes": [[51, "launch-vllm-service-on-multiple-nodes"], [52, "launch-vllm-service-on-multiple-nodes"]], "Launch vLLM service on single node": [[51, "launch-vllm-service-on-single-node"], [52, "launch-vllm-service-on-single-node"]], "Launch with Nginx": [[112, "launch-with-nginx"], [114, "launch-with-nginx"], [116, "launch-with-nginx"], [131, "launch-with-nginx"], [132, "launch-with-nginx"]], "Launch with origin port": [[112, "launch-with-origin-port"], [114, "launch-with-origin-port"], [116, "launch-with-origin-port"], [131, "launch-with-origin-port"], [132, "launch-with-origin-port"]], "Legal Information": [[1, "legal-information"], [87, "legal-information"], [159, "legal-information"], [193, "legal-information"]], "Leveraging Istio to compose an OPEA Pipeline with authentication and authorization enabled": [[198, "leveraging-istio-to-compose-an-opea-pipeline-with-authentication-and-authorization-enabled"]], "License": [[1, "license"], [87, "license"], [159, "license"], [193, "license"]], "Limitations and Bias": [[98, "limitations-and-bias"]], "List Configurable Parameters": [[253, "list-configurable-parameters"]], "List Services": [[253, "list-services"]], "Lists": [[254, "lists"]], "Llms Microservice": [[277, "llms-microservice"]], "Lvms Microservice": [[277, "lvms-microservice"]], "ML strategy": [[35, "ml-strategy"]], "Manifest preparation": [[110, "manifest-preparation"]], "Markdown vs. RestructuredText": [[254, "markdown-vs-restructuredtext"]], "May 2024": [[284, "may-2024"]], "MegaService": [[2, "megaservice"], [260, "id1"], [261, "id2"], [263, "id1"], [264, "id1"]], "Megaservice": [[245, "megaservice"], [260, "megaservice"], [261, "megaservice"], [263, "megaservice"], [264, "megaservice"]], "Megaservices: A Comprehensive Solution": [[276, "megaservices-a-comprehensive-solution"]], "Member companies at launch:": [[236, "member-companies-at-launch"]], "Metric Card for BLEU": [[98, "metric-card-for-bleu"]], "Metric Description": [[98, "metric-description"]], "Metrics": [[9, "metrics"], [103, "metrics"], [110, "metrics"]], "MicroService": [[2, "microservice"]], "Microservice": [[245, "microservice"]], "Microservice Outline and Diagram": [[259, "microservice-outline-and-diagram"]], "Microservice images": [[190, "microservice-images"]], "Microservices Connector": [[252, "microservices-connector"]], "Microservices: Flexible and Scalable Architecture": [[276, "microservices-flexible-and-scalable-architecture"]], "Milestone 1 (May, Done)": [[285, "milestone-1-may-done"]], "Milestone 2 (June)": [[285, "milestone-2-june"]], "Milestone 3 (July)": [[285, "milestone-3-july"]], "Milestone 4 (Aug)": [[285, "milestone-4-aug"]], "Miscs": [[245, "miscs"], [246, "miscs"], [247, "miscs"], [248, "miscs"], [249, "miscs"]], "Monitoring": [[259, "monitoring"]], "Monitoring OPEA Service with Prometheus and Grafana dashboard": [[109, "monitoring-opea-service-with-prometheus-and-grafana-dashboard"]], "More flags about memory bandwidth exporter": [[225, "more-flags-about-memory-bandwidth-exporter"]], "Motivation": [[245, "motivation"], [246, "motivation"], [247, "motivation"], [248, "motivation"], [249, "motivation"], [250, "motivation"]], "Mounting models in the container": [[232, "mounting-models-in-the-container"]], "Multi-Column Lists": [[254, "multi-column-lists"]], "Multi-Services Deployment": [[248, "multi-services-deployment"]], "MultiHop (English dataset)": [[97, "multihop-english-dataset"]], "Multimodal CLIP Embeddings Microservice": [[24, "multimodal-clip-embeddings-microservice"]], "Multimodal Dataprep Microservice with VDMS": [[19, "multimodal-dataprep-microservice-with-vdms"]], "Multimodal Embeddings Microservice": [[23, "multimodal-embeddings-microservice"]], "MultimodalQnA": [[191, "multimodalqna"]], "MultimodalQnA Application": [[160, "multimodalqna-application"], [265, "multimodalqna-application"]], "MultimodalQnA Demo on Gaudi2": [[160, "multimodalqna-demo-on-gaudi2"]], "Multiple video upload": [[12, "multiple-video-upload"]], "Multiple video-transcript pair upload": [[12, "multiple-video-transcript-pair-upload"]], "NER strategy": [[35, "ner-strategy"]], "NOTES": [[273, "notes"]], "NRI Plugins": [[89, "nri-plugins"]], "NRI topology-aware resource policy": [[89, "nri-topology-aware-resource-policy"]], "NVIDIA GPU Quick-Start Guide": [[234, "nvidia-gpu-quick-start-guide"]], "Network Port & Security": [[112, "network-port-security"]], "Neural Chat": [[176, "neural-chat"]], "Next Step": [[226, "next-step"], [276, "next-step"]], "Next step": [[228, "next-step"]], "Nginx Microservice": [[277, "nginx-microservice"]], "Nginx for Microservice Forwarding": [[58, "nginx-for-microservice-forwarding"]], "Node configuration": [[273, "node-configuration"]], "Node preparation": [[274, "node-preparation"]], "Non-ASCII Characters": [[254, "non-ascii-characters"]], "Notes": [[96, "notes"]], "OPEA 2024 - 2025 Roadmap": [[284, "opea-2024-2025-roadmap"]], "OPEA API Service Spec (v0.9)": [[253, "opea-api-service-spec-v0-9"]], "OPEA Benchmark Tool": [[90, "opea-benchmark-tool"]], "OPEA CI/CD Roadmap": [[285, "opea-ci-cd-roadmap"]], "OPEA Community": [[243, "opea-community"]], "OPEA Documentation Generation": [[255, "opea-documentation-generation"]], "OPEA Frequently Asked Questions": [[266, "opea-frequently-asked-questions"]], "OPEA Highlight": [[279, "opea-highlight"]], "OPEA Highlights": [[280, "opea-highlights"]], "OPEA Mega Service API": [[253, "opea-mega-service-api"]], "OPEA Micro Service API": [[253, "opea-micro-service-api"]], "OPEA Overview": [[276, "opea-overview"]], "OPEA Pipeline Proxy": [[231, "opea-pipeline-proxy"]], "OPEA Project": [[236, "opea-project"]], "OPEA Project Architecture": [[276, "opea-project-architecture"]], "OPEA Project Code Owners": [[242, "opea-project-code-owners"]], "OPEA Project Documentation": [[275, "opea-project-documentation"]], "OPEA Release Notes v0.6": [[279, "opea-release-notes-v0-6"]], "OPEA Release Notes v0.7": [[280, "opea-release-notes-v0-7"]], "OPEA Release Notes v0.8": [[281, "opea-release-notes-v0-8"]], "OPEA Release Notes v0.9": [[282, "opea-release-notes-v0-9"]], "OPEA Release Notes v1.0": [[283, "opea-release-notes-v1-0"]], "OPEA adaption of ragas (LLM-as-a-judge evaluation of Retrieval Augmented Generation)": [[99, "opea-adaption-of-ragas-llm-as-a-judge-evaluation-of-retrieval-augmented-generation"]], "Objective": [[245, "objective"], [246, "objective"], [247, "objective"], [248, "objective"], [249, "objective"], [250, "objective"]], "Observability": [[248, "observability"]], "Ollama Service": [[260, "ollama-service"]], "Open Platform for Enterprise AI (OPEA) Framework Draft Proposal": [[267, "open-platform-for-enterprise-ai-opea-framework-draft-proposal"]], "Open an existing dataset": [[78, "open-an-existing-dataset"]], "Other Operations": [[253, "other-operations"]], "Other configs (parser, splitter and the embedder)": [[80, "other-configs-parser-splitter-and-the-embedder"]], "Our Pledge": [[237, "our-pledge"]], "Our Standards": [[237, "our-standards"]], "Output": [[91, "output"]], "Output Values": [[98, "output-values"]], "Overview": [[95, "overview"], [100, "overview"], [194, "overview"], [259, "overview"], [260, "overview"], [261, "overview"], [263, "overview"], [264, "overview"]], "PII Detection Microservice": [[35, "pii-detection-microservice"]], "PII Detection Prediction Guard Microservice": [[36, "pii-detection-prediction-guard-microservice"]], "Page Not Found": [[0, "page-not-found"]], "Part 1: Application Build and Configuration": [[250, "part-1-application-build-and-configuration"]], "Part 2: Benchmark and Evaluation": [[250, "part-2-benchmark-and-evaluation"]], "Part 3: Enterprise Deployment": [[250, "part-3-enterprise-deployment"]], "Perform authentication and authorization via Bearer JWT tokens and curl": [[198, "perform-authentication-and-authorization-via-bearer-jwt-tokens-and-curl"]], "Perform authentication and authorization via JWT tokens generated by OIDC provider": [[198, "perform-authentication-and-authorization-via-jwt-tokens-generated-by-oidc-provider"]], "Perform authentication and authorization via fake JWT tokens": [[198, "perform-authentication-and-authorization-via-fake-jwt-tokens"]], "Perform authentication and authorization via oauth2-proxy and OIDC provider and UI": [[198, "perform-authentication-and-authorization-via-oauth2-proxy-and-oidc-provider-and-ui"]], "Performance": [[267, "performance"]], "Performance Grade": [[267, "performance-grade"]], "Performance Result": [[103, "performance-result"], [148, "performance-result"]], "Performance tips": [[51, "performance-tips"], [52, "performance-tips"]], "Persona": [[250, "persona"]], "Personas": [[226, "personas"]], "Pinecone setup": [[82, "pinecone-setup"]], "Pipeline Proxy": [[252, "pipeline-proxy"]], "Plan Execute": [[4, "plan-execute"]], "Post-install": [[199, "post-install"]], "Pre-conditions": [[199, "pre-conditions"]], "Prediction Guard Introduction": [[49, "prediction-guard-introduction"]], "Prepare": [[223, "prepare"]], "Prepare (Building / Pulling) Docker images": [[260, "prepare-building-pulling-docker-images"], [261, "prepare-building-pulling-docker-images"], [263, "prepare-building-pulling-docker-images"], [264, "prepare-building-pulling-docker-images"]], "Prepare Dataset": [[91, "prepare-dataset"], [97, "prepare-dataset"], [97, "id1"]], "Preparing the model used in Guardrails": [[232, "preparing-the-model-used-in-guardrails"]], "Prerequirements": [[93, "prerequirements"]], "Prerequisite": [[97, "prerequisite"], [168, "prerequisite"], [194, "prerequisite"], [198, "prerequisite"], [234, "prerequisite"]], "Prerequisites": [[90, "prerequisites"], [110, "prerequisites"], [192, "prerequisites"], [197, "prerequisites"], [226, "prerequisites"], [260, "prerequisites"], [261, "prerequisites"], [263, "prerequisites"], [264, "prerequisites"], [268, "prerequisites"], [272, "prerequisites"], [274, "prerequisites"]], "Prerequisites for Deploying CodeGen with ReactUI": [[127, "prerequisites-for-deploying-codegen-with-reactui"]], "Prerequisites for Deploying DocSum with ReactUI": [[144, "prerequisites-for-deploying-docsum-with-reactui"]], "Prerequisites for Deploying FaqGen with ReactUI": [[153, "prerequisites-for-deploying-faqgen-with-reactui"]], "Productivity Suite Application": [[163, "productivity-suite-application"]], "Productivity Suite React UI": [[167, "productivity-suite-react-ui"]], "ProductivitySuite": [[191, "productivitysuite"]], "ProductivitySuite Application": [[265, "productivitysuite-application"]], "Project Governance": [[243, "project-governance"]], "Prometheus": [[199, "prometheus"]], "Prompt Injection Detection Prediction Guard Microservice": [[37, "prompt-injection-detection-prediction-guard-microservice"]], "Prompt Registry with MongoDB": [[59, "prompt-registry-with-mongodb"]], "Prompt_registry Microservice": [[277, "prompt-registry-microservice"]], "Proposal": [[245, "proposal"]], "Proposing New Features": [[238, "proposing-new-features"]], "Publish Content": [[255, "publish-content"]], "Pull Request Acceptance Criteria": [[238, "pull-request-acceptance-criteria"]], "Pull Request Review": [[238, "pull-request-review"]], "Pull Request Status Checks Overview": [[238, "pull-request-status-checks-overview"]], "Pull Request Template": [[238, "pull-request-template"]], "Purpose": [[110, "purpose"], [259, "purpose"]], "Q1 2025": [[284, "q1-2025"]], "Q4 2024": [[284, "q4-2024"]], "Query the microservice": [[52, "query-the-microservice"], [53, "query-the-microservice"]], "Query the service": [[53, "query-the-service"]], "Quick Start: 1.Setup Environment Variable": [[109, "quick-start-1-setup-environment-variable"], [112, "quick-start-1-setup-environment-variable"], [114, "quick-start-1-setup-environment-variable"], [116, "quick-start-1-setup-environment-variable"]], "Quick Start: 2.Run Docker Compose": [[109, "quick-start-2-run-docker-compose"], [112, "quick-start-2-run-docker-compose"], [114, "quick-start-2-run-docker-compose"], [116, "quick-start-2-run-docker-compose"]], "Quick reference": [[274, "quick-reference"]], "QuickStart: 3.Consume the ChatQnA Service": [[109, "quickstart-3-consume-the-chatqna-service"], [112, "quickstart-3-consume-the-chatqna-service"], [114, "quickstart-3-consume-the-chatqna-service"], [116, "quickstart-3-consume-the-chatqna-service"]], "RAG Agent": [[5, "rag-agent"]], "RAG Reranking Micro Service": [[253, "rag-reranking-micro-service"]], "RAG Retrieval Micro Service": [[253, "rag-retrieval-micro-service"]], "RAG evaluation": [[96, "rag-evaluation"]], "REF": [[202, "ref"]], "RFC Archive": [[251, "rfc-archive"]], "RFC Content": [[250, "rfc-content"]], "RFC Proposals": [[243, "rfc-proposals"]], "RFC Template": [[244, "rfc-template"]], "Ragas Microservice": [[277, "ragas-microservice"]], "React UI (Optional)": [[140, "react-ui-optional"]], "Real-time demo": [[249, "real-time-demo"]], "Release Branches": [[195, "release-branches"]], "Release Notes": [[278, "release-notes"]], "Remove a policy": [[89, "remove-a-policy"]], "Reporting Issues": [[238, "reporting-issues"]], "Reporting a Vulnerability": [[239, "reporting-a-vulnerability"]], "Request": [[253, "request"], [253, "id2"], [253, "id4"], [253, "id6"], [253, "id8"], [253, "id10"], [253, "id12"], [253, "id14"], [253, "id16"]], "Request for Comments (RFCs)": [[244, "request-for-comments-rfcs"]], "Required Models": [[109, "required-models"], [112, "required-models"], [113, "required-models"], [114, "required-models"], [116, "required-models"], [121, "required-models"], [130, "required-models"], [131, "required-models"], [132, "required-models"], [133, "required-models"], [134, "required-models"], [139, "required-models"], [140, "required-models"], [141, "required-models"], [149, "required-models"], [150, "required-models"], [151, "required-models"], [160, "required-models"], [161, "required-models"], [162, "required-models"], [178, "required-models"], [179, "required-models"], [183, "required-models"], [185, "required-models"]], "Rerank Microservice": [[64, "rerank-microservice"]], "Rerank Model Finetuning": [[169, "rerank-model-finetuning"]], "RerankFinetuning": [[191, "rerankfinetuning"]], "RerankFinetuning Application": [[265, "rerankfinetuning-application"]], "Reranking Microservice": [[61, "reranking-microservice"], [63, "reranking-microservice"], [260, "reranking-microservice"], [261, "reranking-microservice"], [263, "reranking-microservice"], [264, "reranking-microservice"]], "Reranking Service": [[260, "reranking-service"], [261, "reranking-service"], [263, "reranking-service"], [264, "reranking-service"]], "Reranks Microservice": [[277, "reranks-microservice"]], "Resource requests": [[199, "resource-requests"]], "Resources": [[243, "resources"]], "Response": [[253, "response"], [253, "id3"], [253, "id5"], [253, "id7"], [253, "id9"], [253, "id11"], [253, "id13"], [253, "id15"], [253, "id17"]], "Retrieval tool for agent": [[101, "retrieval-tool-for-agent"]], "Retriever Microservice": [[65, "retriever-microservice"], [67, "retriever-microservice"], [70, "retriever-microservice"], [72, "retriever-microservice"], [73, "retriever-microservice"], [74, "retriever-microservice"], [260, "retriever-microservice"], [261, "retriever-microservice"], [263, "retriever-microservice"], [264, "retriever-microservice"]], "Retriever Microservice with Milvus": [[65, "retriever-microservice-with-milvus"], [66, "retriever-microservice-with-milvus"]], "Retriever Microservice with Multimodal": [[65, "retriever-microservice-with-multimodal"]], "Retriever Microservice with Neo4J": [[68, "retriever-microservice-with-neo4j"]], "Retriever Microservice with PGVector": [[65, "retriever-microservice-with-pgvector"]], "Retriever Microservice with Pathway": [[65, "retriever-microservice-with-pathway"], [69, "retriever-microservice-with-pathway"]], "Retriever Microservice with QDrant": [[65, "retriever-microservice-with-qdrant"]], "Retriever Microservice with Qdrant": [[71, "retriever-microservice-with-qdrant"]], "Retriever Microservice with Redis": [[65, "retriever-microservice-with-redis"]], "Retriever Microservice with VDMS": [[65, "retriever-microservice-with-vdms"]], "Retrievers Microservice": [[277, "retrievers-microservice"]], "Roadmap": [[100, "roadmap"]], "Roadmaps": [[243, "roadmaps"]], "Run CRAG benchmark": [[95, "run-crag-benchmark"]], "Run Docker with CLI": [[8, "run-docker-with-cli"], [13, "run-docker-with-cli"], [15, "run-docker-with-cli"], [16, "run-docker-with-cli"], [29, "run-docker-with-cli"], [60, "run-docker-with-cli"], [66, "run-docker-with-cli"], [68, "run-docker-with-cli"]], "Run Docker with Docker Compose": [[13, "run-docker-with-docker-compose"], [15, "run-docker-with-docker-compose"], [16, "run-docker-with-docker-compose"]], "Run OPEA ragas pipeline using your desired list of metrics": [[99, "run-opea-ragas-pipeline-using-your-desired-list-of-metrics"]], "Run a test": [[93, "run-a-test"]], "Run tests": [[110, "id11"]], "Run the Documentation Processors": [[255, "run-the-documentation-processors"]], "Run the Ollama Microservice": [[48, "run-the-ollama-microservice"]], "Run the Predictionguard Microservice": [[49, "run-the-predictionguard-microservice"]], "Run the Tuning script": [[91, "run-the-tuning-script"]], "Sanity Check": [[260, "sanity-check"], [261, "sanity-check"], [263, "sanity-check"], [264, "sanity-check"]], "Scope": [[237, "scope"]], "Screen Shot": [[167, "screen-shot"], [167, "id1"], [167, "id2"]], "Screen Shots": [[167, "screen-shots"]], "Screenshots": [[164, "screenshots"], [164, "id1"], [164, "id2"], [164, "id3"], [164, "id4"]], "Script Usage Notice": [[239, "script-usage-notice"]], "Scripts": [[252, "scripts"]], "Scripts and tools": [[233, "scripts-and-tools"]], "SearchQnA": [[191, "searchqna"]], "SearchQnA Application": [[172, "searchqna-application"], [265, "searchqna-application"]], "Second Instruction Step": [[254, "second-instruction-step"]], "Sep 2024": [[284, "sep-2024"]], "Service URL Setting": [[123, "service-url-setting"], [124, "service-url-setting"]], "Service preparation": [[96, "service-preparation"]], "Set Up the Documentation Working Folders": [[255, "set-up-the-documentation-working-folders"]], "Set Up the Grafana Dashboard": [[259, "set-up-the-grafana-dashboard"]], "Set Up the Prometheus Server": [[259, "set-up-the-prometheus-server"]], "Set the required environment variables:": [[268, "set-the-required-environment-variables"]], "Set up OPEA microservice": [[53, "set-up-opea-microservice"]], "Set up VLLM Ray Gaudi Service": [[53, "set-up-vllm-ray-gaudi-service"]], "Set up environment": [[53, "set-up-environment"]], "Setting up the Pathway data sources": [[80, "setting-up-the-pathway-data-sources"]], "Setup": [[48, "setup"], [78, "setup"], [225, "setup"]], "Setup ChatQnA Parameters": [[268, "setup-chatqna-parameters"]], "Setup Environment Variable": [[121, "setup-environment-variable"], [130, "setup-environment-variable"], [139, "setup-environment-variable"], [160, "setup-environment-variable"], [172, "setup-environment-variable"], [185, "setup-environment-variable"]], "Setup Environment Variables": [[8, "setup-environment-variables"], [13, "setup-environment-variables"], [13, "id1"], [15, "setup-environment-variables"], [15, "id1"], [16, "setup-environment-variables"], [16, "id1"], [25, "setup-environment-variables"], [29, "setup-environment-variables"], [33, "setup-environment-variables"], [36, "setup-environment-variables"], [37, "setup-environment-variables"], [39, "setup-environment-variables"], [60, "setup-environment-variables"], [66, "setup-environment-variables"], [68, "setup-environment-variables"], [111, "setup-environment-variables"], [112, "setup-environment-variables"], [113, "setup-environment-variables"], [114, "setup-environment-variables"], [116, "setup-environment-variables"], [123, "setup-environment-variables"], [124, "setup-environment-variables"], [131, "setup-environment-variables"], [132, "setup-environment-variables"], [140, "setup-environment-variables"], [141, "setup-environment-variables"], [149, "setup-environment-variables"], [150, "setup-environment-variables"], [161, "setup-environment-variables"], [162, "setup-environment-variables"], [164, "setup-environment-variables"], [178, "setup-environment-variables"], [179, "setup-environment-variables"], [184, "setup-environment-variables"], [186, "setup-environment-variables"], [187, "setup-environment-variables"]], "Setup Kubernetes cluster": [[194, "setup-kubernetes-cluster"], [234, "setup-kubernetes-cluster"]], "Setup Prometheus and Grafana to visualize microservice metrics": [[92, "setup-prometheus-and-grafana-to-visualize-microservice-metrics"]], "Setup memory bandwidth exporter": [[225, "setup-memory-bandwidth-exporter"]], "Simple Directed Graph": [[256, "simple-directed-graph"]], "Single Node": [[262, "single-node"]], "Single node on-prem deployment with Ollama on AIPC": [[260, "single-node-on-prem-deployment-with-ollama-on-aipc"]], "Single node on-prem deployment with TGI on Nvidia gpu": [[263, "single-node-on-prem-deployment-with-tgi-on-nvidia-gpu"]], "Single node on-prem deployment with vLLM or TGI on Gaudi AI Accelerator": [[261, "single-node-on-prem-deployment-with-vllm-or-tgi-on-gaudi-ai-accelerator"]], "Single node on-prem deployment with vLLM or TGI on Xeon Scalable processors": [[264, "single-node-on-prem-deployment-with-vllm-or-tgi-on-xeon-scalable-processors"]], "Single node test": [[110, "single-node-test"]], "Single video upload": [[12, "single-video-upload"]], "Single video-transcript pair upload": [[12, "single-video-transcript-pair-upload"]], "Specific Metrics": [[9, "specific-metrics"]], "Start Chroma Server": [[77, "id1"]], "Start Chroma server": [[77, "start-chroma-server"]], "Start Document Preparation Microservice for Neo4J with Python Script": [[13, "start-document-preparation-microservice-for-neo4j-with-python-script"]], "Start Document Preparation Microservice for Pinecone with Python Script": [[15, "start-document-preparation-microservice-for-pinecone-with-python-script"]], "Start Document Preparation Microservice for Qdrant with Python Script": [[16, "start-document-preparation-microservice-for-qdrant-with-python-script"]], "Start Embedding Service with Local Model": [[26, "start-embedding-service-with-local-model"], [27, "start-embedding-service-with-local-model"]], "Start Embedding Service with TEI": [[26, "start-embedding-service-with-tei"], [27, "start-embedding-service-with-tei"]], "Start LanceDB Server": [[78, "start-lancedb-server"]], "Start Log Output": [[77, "start-log-output"]], "Start Microservice Docker Containers": [[131, "start-microservice-docker-containers"], [132, "start-microservice-docker-containers"], [140, "start-microservice-docker-containers"], [141, "start-microservice-docker-containers"], [149, "start-microservice-docker-containers"], [150, "start-microservice-docker-containers"], [178, "start-microservice-docker-containers"], [179, "start-microservice-docker-containers"]], "Start Microservice with Docker": [[86, "start-microservice-with-docker"]], "Start Milvus Server": [[66, "start-milvus-server"]], "Start Milvus server": [[79, "start-milvus-server"]], "Start Neo4J Server": [[13, "start-neo4j-server"], [68, "start-neo4j-server"]], "Start PGVector server": [[81, "start-pgvector-server"]], "Start Pinecone Server": [[15, "start-pinecone-server"]], "Start Qdrant Server": [[16, "start-qdrant-server"]], "Start Qdrant server": [[83, "start-qdrant-server"]], "Start Ray Cluster with Autoscaling": [[235, "start-ray-cluster-with-autoscaling"]], "Start Redis server": [[84, "start-redis-server"]], "Start Retriever Service": [[66, "start-retriever-service"], [68, "start-retriever-service"], [69, "start-retriever-service"]], "Start Service": [[25, "start-service"], [33, "start-service"], [36, "start-service"], [37, "start-service"], [39, "start-service"]], "Start TEI Service": [[86, "start-tei-service"]], "Start VDMS server": [[85, "start-vdms-server"]], "Start Web Retriever Service": [[86, "start-web-retriever-service"]], "Start all the services Docker Containers": [[111, "start-all-the-services-docker-containers"], [112, "start-all-the-services-docker-containers"], [113, "start-all-the-services-docker-containers"], [114, "start-all-the-services-docker-containers"], [116, "start-all-the-services-docker-containers"], [161, "start-all-the-services-docker-containers"], [162, "start-all-the-services-docker-containers"], [164, "start-all-the-services-docker-containers"], [186, "start-all-the-services-docker-containers"], [187, "start-all-the-services-docker-containers"]], "Start all the services with Docker Containers": [[184, "start-all-the-services-with-docker-containers"]], "Start the Docker Containers for All Services": [[123, "start-the-docker-containers-for-all-services"], [124, "start-the-docker-containers-for-all-services"]], "Start the Pathway Vector DB Server": [[80, "start-the-pathway-vector-db-server"]], "Stateful Guardrails": [[248, "stateful-guardrails"]], "Status": [[245, "status"], [246, "status"], [247, "status"], [248, "status"], [249, "status"], [250, "status"]], "Step 0. Clean up the environment": [[273, "step-0-clean-up-the-environment"]], "Step 1. Install relevant components": [[273, "step-1-install-relevant-components"]], "Step 1. Set up Kubespray and Ansible": [[274, "step-1-set-up-kubespray-and-ansible"]], "Step 1: Install ChatQnA by Helm": [[223, "step-1-install-chatqna-by-helm"]], "Step 1: Install PCM": [[223, "step-1-install-pcm"]], "Step 1: Install Prometheus&Grafana": [[223, "step-1-install-prometheus-grafana"]], "Step 1: Install daemonset": [[223, "step-1-install-daemonset"]], "Step 2. Build your own inventory": [[274, "step-2-build-your-own-inventory"]], "Step 2. Create the k8s cluster": [[273, "step-2-create-the-k8s-cluster"]], "Step 2: Install all the serviceMonitor": [[223, "step-2-install-all-the-servicemonitor"]], "Step 2: Install metric-exporter": [[223, "step-2-install-metric-exporter"]], "Step 2: Modify & Install pcm-service": [[223, "step-2-modify-install-pcm-service"]], "Step 2: Verify the installation": [[223, "step-2-verify-the-installation"]], "Step 3 (optional) Reset Kubernetes cluster": [[273, "step-3-optional-reset-kubernetes-cluster"]], "Step 3. Define Kubernetes configuration": [[274, "step-3-define-kubernetes-configuration"]], "Step 3: Install pcm serviceMonitor": [[223, "step-3-install-pcm-servicemonitor"]], "Step 3: Install service-monitor": [[223, "step-3-install-service-monitor"]], "Step 3: Install the dashboard": [[223, "step-3-install-the-dashboard"]], "Step 3: Port-forward to access Grafana": [[223, "step-3-port-forward-to-access-grafana"]], "Step 4. Deploy Kubernetes": [[274, "step-4-deploy-kubernetes"]], "Step 4: Access Grafana": [[223, "step-4-access-grafana"]], "Step 4: Install the pcm dashboard": [[223, "step-4-install-the-pcm-dashboard"]], "Step 4: Verify the metrics": [[223, "step-4-verify-the-metrics"]], "Step 5. Create kubectl configuration": [[274, "step-5-create-kubectl-configuration"]], "Step 5: Import the dashboard into Grafana": [[223, "step-5-import-the-dashboard-into-grafana"]], "Step-by-Step guidelines": [[238, "step-by-step-guidelines"], [238, "id1"]], "Stop the services": [[260, "stop-the-services"], [261, "stop-the-services"], [263, "stop-the-services"], [264, "stop-the-services"]], "Stragegy and Scope of Work": [[250, "stragegy-and-scope-of-work"]], "StressCli": [[93, "stresscli"]], "Submitting Pull Requests": [[238, "submitting-pull-requests"]], "Summary and Next Steps": [[259, "summary-and-next-steps"]], "Support": [[238, "support"]], "Supported Examples": [[168, "supported-examples"], [191, "supported-examples"]], "Supported Models": [[102, "supported-models"]], "Svelte UI": [[140, "svelte-ui"]], "TEI Embedding Service": [[260, "tei-embedding-service"], [261, "tei-embedding-service"], [263, "tei-embedding-service"], [264, "tei-embedding-service"]], "TEI Reranking Service": [[260, "tei-reranking-service"], [261, "tei-reranking-service"], [263, "tei-reranking-service"], [264, "tei-reranking-service"]], "TGI FAQGen LLM Microservice": [[43, "tgi-faqgen-llm-microservice"]], "TGI LLM Microservice": [[50, "tgi-llm-microservice"]], "TGI Q and A": [[202, "tgi-q-and-a"]], "TGI Service": [[263, "tgi-service"]], "TSC Members (as of September 6, 2024)": [[240, "id1"]], "TTS": [[102, "tts"]], "TTS Microservice": [[75, "tts-microservice"]], "Table of Contents": [[90, "table-of-contents"], [199, "table-of-contents"], [200, "table-of-contents"]], "Table title": [[254, "id2"]], "Tables": [[254, "tables"], [256, "tables"]], "Tabs, Spaces, and Indenting": [[254, "tabs-spaces-and-indenting"]], "Technical Charter (the \u201cCharter\u201d) for OPEA a Series of LF Projects, LLC": [[241, "technical-charter-the-charter-for-opea-a-series-of-lf-projects-llc"]], "Technical Steering Committee": [[236, "technical-steering-committee"]], "Technical Steering Committee (TSC)": [[240, "technical-steering-committee-tsc"]], "Technical Steering Committee Members": [[240, "technical-steering-committee-members"]], "Telemetry for OPEA": [[9, "telemetry-for-opea"]], "Test Cases": [[90, "test-cases"]], "Test Configurations": [[110, "test-configurations"]], "Test Steps": [[110, "test-steps"]], "Test Suite Configuration": [[90, "test-suite-configuration"]], "Testing": [[192, "testing"]], "Thanks to these contributors": [[281, "thanks-to-these-contributors"]], "To run GenAIInfra on NVIDIA GPUs": [[234, "to-run-genaiinfra-on-nvidia-gpus"]], "Toxicity Checking Prediction Guard Microservice": [[39, "toxicity-checking-prediction-guard-microservice"]], "Toxicity Detection Microservice": [[38, "toxicity-detection-microservice"]], "Tracing": [[9, "tracing"]], "Translation Application": [[177, "translation-application"], [265, "translation-application"]], "Troubleshooting": [[99, "troubleshooting"], [109, "troubleshooting"], [121, "troubleshooting"], [130, "troubleshooting"], [139, "troubleshooting"], [172, "troubleshooting"], [201, "troubleshooting"], [259, "troubleshooting"]], "Troubleshooting GMC Custom Resource\uff08CR\uff09": [[229, "troubleshooting-gmc-custom-resource-cr"]], "Troubleshooting guide": [[226, "troubleshooting-guide"]], "Trust and Safety with LLM": [[31, "trust-and-safety-with-llm"]], "Trustworthiness Grade": [[267, "trustworthiness-grade"]], "Tts Microservice": [[277, "tts-microservice"]], "Tuning Config Parameters": [[91, "tuning-config-parameters"]], "Two node test": [[110, "two-node-test"]], "Understanding OPEA\u2019s Core Components": [[268, "understanding-opea-s-core-components"]], "Uninstall": [[197, "uninstall"], [228, "uninstall"]], "Uninstall KubeRay": [[235, "uninstall-kuberay"]], "Update a file to database": [[202, "update-a-file-to-database"]], "Update values": [[197, "update-values"]], "Upload RAG Files (Optional)": [[109, "upload-rag-files-optional"]], "Uploading images to an AWS Private Registry": [[272, "uploading-images-to-an-aws-private-registry"]], "Usage": [[48, "usage"], [78, "usage"], [90, "usage"], [91, "usage"], [93, "usage"], [197, "usage"]], "Usage guide for genai-microservices-connector(GMC)": [[230, "usage-guide-for-genai-microservices-connector-gmc"]], "Usages": [[194, "usages"], [234, "usages"]], "Use Case Setup": [[260, "use-case-setup"], [261, "use-case-setup"], [263, "use-case-setup"], [264, "use-case-setup"]], "Use GMC and Istio to compose an OPEA Pipeline with authentication and authorization enabled": [[230, "use-gmc-and-istio-to-compose-an-opea-pipeline-with-authentication-and-authorization-enabled"]], "Use GMC to adjust the chatQnA Pipeline": [[230, "use-gmc-to-adjust-the-chatqna-pipeline"]], "Use GMC to compose a chatQnA Pipeline": [[230, "use-gmc-to-compose-a-chatqna-pipeline"], [270, "use-gmc-to-compose-a-chatqna-pipeline"]], "Use GMC to delete the chatQnA Pipeline": [[230, "use-gmc-to-delete-the-chatqna-pipeline"]], "Use GenAI Microservices Connector (GMC) to deploy and adjust GenAIExamples": [[194, "use-genai-microservices-connector-gmc-to-deploy-and-adjust-genaiexamples"]], "Use GenAI Microservices Connector (GMC) to deploy and adjust GenAIExamples on NVIDIA GPUs": [[234, "use-genai-microservices-connector-gmc-to-deploy-and-adjust-genaiexamples-on-nvidia-gpus"]], "Use LLM-as-judge to grade the answers": [[95, "use-llm-as-judge-to-grade-the-answers"]], "Use LVM (Large Vision Model) for Summarizing Image Data": [[10, "use-lvm-large-vision-model-for-summarizing-image-data"]], "Use TGI as backend": [[112, "use-tgi-as-backend"], [164, "use-tgi-as-backend"]], "Use helm charts to deploy": [[194, "use-helm-charts-to-deploy"]], "Use vLLM as backend": [[112, "use-vllm-as-backend"]], "User data": [[99, "user-data"]], "Using Helm Charts repository": [[200, "using-helm-charts-repository"]], "Using Persistent Volume": [[200, "using-persistent-volume"]], "Using Private Docker Hub": [[200, "using-private-docker-hub"]], "Using prebuilt images": [[107, "using-prebuilt-images"], [118, "using-prebuilt-images"], [227, "using-prebuilt-images"]], "VLLM-Ray Endpoint Service": [[53, "vllm-ray-endpoint-service"]], "Validate CPU affinity and hardware alignment in containers": [[89, "validate-cpu-affinity-and-hardware-alignment-in-containers"]], "Validate MicroServices and MegaService": [[114, "validate-microservices-and-megaservice"], [116, "validate-microservices-and-megaservice"], [187, "validate-microservices-and-megaservice"]], "Validate Microservices": [[111, "validate-microservices"], [112, "validate-microservices"], [113, "validate-microservices"], [131, "validate-microservices"], [132, "validate-microservices"], [140, "validate-microservices"], [141, "validate-microservices"], [149, "validate-microservices"], [150, "validate-microservices"], [161, "validate-microservices"], [162, "validate-microservices"], [178, "validate-microservices"], [179, "validate-microservices"], [184, "validate-microservices"], [186, "validate-microservices"]], "Validate against the spec": [[93, "validate-against-the-spec"]], "Validate microservice": [[260, "validate-microservice"], [261, "validate-microservice"], [263, "validate-microservice"], [264, "validate-microservice"]], "Validate policy status": [[89, "validate-policy-status"]], "Validate services": [[100, "validate-services"], [101, "validate-services"]], "Validate the MicroServices and MegaService": [[123, "validate-the-microservices-and-megaservice"], [124, "validate-the-microservices-and-megaservice"]], "Validated LLM Models": [[45, "validated-llm-models"]], "Validating the result": [[232, "validating-the-result"]], "Validation Matrix and Prerequisites": [[259, "validation-matrix-and-prerequisites"]], "Value Proposition": [[250, "value-proposition"]], "Values": [[201, "values"], [203, "values"], [204, "values"], [205, "values"], [206, "values"], [207, "values"], [208, "values"], [209, "values"], [210, "values"], [211, "values"], [212, "values"], [213, "values"], [214, "values"], [215, "values"], [216, "values"], [217, "values"], [218, "values"], [219, "values"], [220, "values"], [221, "values"]], "Values from Popular Papers": [[98, "values-from-popular-papers"]], "VectorDB": [[260, "vectordb"], [261, "vectordb"], [263, "vectordb"], [264, "vectordb"]], "Vectorstores Microservice": [[76, "vectorstores-microservice"], [277, "vectorstores-microservice"]], "Vectorstores Microservice with Chroma": [[76, "vectorstores-microservice-with-chroma"]], "Vectorstores Microservice with LanceDB": [[76, "vectorstores-microservice-with-lancedb"]], "Vectorstores Microservice with Milvus": [[76, "vectorstores-microservice-with-milvus"]], "Vectorstores Microservice with PGVector": [[76, "vectorstores-microservice-with-pgvector"]], "Vectorstores Microservice with Pathway": [[76, "vectorstores-microservice-with-pathway"]], "Vectorstores Microservice with Pinecone": [[76, "vectorstores-microservice-with-pinecone"]], "Vectorstores Microservice with Qdrant": [[76, "vectorstores-microservice-with-qdrant"]], "Vectorstores Microservice with Redis": [[76, "vectorstores-microservice-with-redis"]], "Vectorstores Microservice with VDMS": [[76, "vectorstores-microservice-with-vdms"]], "Verify": [[199, "verify"], [201, "verify"], [203, "verify"], [204, "verify"], [205, "verify"], [206, "verify"], [207, "verify"], [208, "verify"], [209, "verify"], [210, "verify"], [211, "verify"], [212, "verify"], [213, "verify"], [214, "verify"], [215, "verify"], [216, "verify"], [217, "verify"], [218, "verify"], [219, "verify"], [220, "verify"], [221, "verify"]], "Verify Services": [[106, "verify-services"], [117, "verify-services"], [125, "verify-services"], [127, "verify-services"], [133, "verify-services"], [142, "verify-services"], [144, "verify-services"], [151, "verify-services"], [153, "verify-services"], [180, "verify-services"], [188, "verify-services"]], "Verify the workload through UI": [[201, "verify-the-workload-through-ui"], [203, "verify-the-workload-through-ui"], [204, "verify-the-workload-through-ui"], [221, "verify-the-workload-through-ui"]], "Verify the workload through curl command": [[201, "verify-the-workload-through-curl-command"], [203, "verify-the-workload-through-curl-command"], [204, "verify-the-workload-through-curl-command"], [221, "verify-the-workload-through-curl-command"]], "VideoQnA": [[191, "videoqna"]], "VideoQnA Application": [[183, "videoqna-application"], [265, "videoqna-application"]], "Visual Data Management System (VDMS)": [[74, "visual-data-management-system-vdms"]], "Visual Guide to Deployment": [[268, "visual-guide-to-deployment"]], "Visual Question and Answering": [[185, "visual-question-and-answering"]], "VisualQnA": [[191, "visualqna"]], "VisualQnA Application": [[265, "visualqna-application"]], "Visualization": [[9, "visualization"]], "Visualize metrics": [[9, "visualize-metrics"]], "Visualize tracing": [[9, "visualize-tracing"]], "We provided DocRetriever with different deployment infra": [[136, "we-provided-docretriever-with-different-deployment-infra"]], "Web Retriever Microservice": [[86, "web-retriever-microservice"]], "Web_retrievers Microservice": [[277, "web-retrievers-microservice"]], "What are the different ways partners can contribute to OPEA?": [[266, "what-are-the-different-ways-partners-can-contribute-to-opea"]], "What does OPEA acronym stand for?": [[266, "what-does-opea-acronym-stand-for"]], "What initial companies and open-source projects joined OPEA?": [[266, "what-initial-companies-and-open-source-projects-joined-opea"]], "What is Intel contributing?": [[266, "what-is-intel-contributing"]], "What is OPEA?": [[266, "what-is-opea"]], "What is OPEA\u2019s mission?": [[266, "what-is-opea-s-mission"]], "What problems are faced by GenAI deployments within the enterprise?": [[266, "what-problems-are-faced-by-genai-deployments-within-the-enterprise"]], "What\u2019s New in OPEA v0.8": [[281, "whats-new-in-opea-v0-8"]], "What\u2019s New in OPEA v0.9": [[282, "whats-new-in-opea-v0-9"]], "What\u2019s New in OPEA v1.0": [[283, "whats-new-in-opea-v1-0"]], "What\u2019s Next": [[268, "whats-next"]], "When you say Technical Conceptual Framework, what components are included?": [[266, "when-you-say-technical-conceptual-framework-what-components-are-included"]], "Where can I report a bug or vulnerability?": [[266, "where-can-i-report-a-bug-or-vulnerability"]], "Where can partners see the latest draft of the Conceptual Framework spec?": [[266, "where-can-partners-see-the-latest-draft-of-the-conceptual-framework-spec"]], "Why Agent for question answering?": [[100, "why-agent-for-question-answering"]], "Why now?": [[266, "why-now"]], "Will OPEA reference implementations work with proprietary components?": [[266, "will-opea-reference-implementations-work-with-proprietary-components"]], "With streaming": [[49, "with-streaming"]], "With the Docker CLI": [[69, "with-the-docker-cli"]], "With the Docker compose": [[69, "with-the-docker-compose"]], "Without streaming": [[49, "without-streaming"]], "Workflow of the deployed Document Summarization Service": [[139, "workflow-of-the-deployed-document-summarization-service"]], "a function to get the endpoint of service": [[202, "a-function-to-get-the-endpoint-of-service"]], "accuracy Result": [[122, "accuracy-result"]], "animation microservice": [[249, "animation-microservice"]], "asr": [[205, "asr"]], "bigcode-evaluation-harness": [[88, "bigcode-evaluation-harness"]], "build Mosec endpoint docker image": [[21, "build-mosec-endpoint-docker-image"]], "build cpu docker": [[54, "build-cpu-docker"]], "build embedding microservice docker image": [[21, "build-embedding-microservice-docker-image"]], "build reranking Mosec endpoint docker image": [[62, "build-reranking-mosec-endpoint-docker-image"]], "build reranking microservice docker image": [[62, "build-reranking-microservice-docker-image"]], "chatqna_neuralchat_rerank_latest.yaml": [[91, "chatqna-neuralchat-rerank-latest-yaml"]], "command line usage": [[88, "command-line-usage"], [88, "id1"], [122, "command-line-usage"]], "data-prep": [[206, "data-prep"]], "define the namespace of service": [[202, "define-the-namespace-of-service"]], "docs Repository Code Owners": [[242, "docs-repository-code-owners"]], "embedding-usvc": [[207, "embedding-usvc"]], "evaluate the model": [[54, "evaluate-the-model"]], "function call usage": [[88, "function-call-usage"], [88, "id2"]], "genai-microservices-connector(GMC)": [[226, "genai-microservices-connector-gmc"]], "get the embedding of input": [[202, "get-the-embedding-of-input"]], "get the retriever docs": [[202, "get-the-retriever-docs"]], "guardrails-usvc": [[208, "guardrails-usvc"]], "launch Mosec endpoint docker container": [[21, "launch-mosec-endpoint-docker-container"], [62, "launch-mosec-endpoint-docker-container"]], "launch embedding microservice docker container": [[21, "launch-embedding-microservice-docker-container"], [62, "launch-embedding-microservice-docker-container"]], "llm-uservice": [[209, "llm-uservice"]], "lm-evaluation-harness": [[88, "lm-evaluation-harness"]], "locust scripts for OPEA ChatQnA": [[94, "locust-scripts-for-opea-chatqna"]], "memory bandwidth exporter": [[225, "memory-bandwidth-exporter"]], "pre-commit testing": [[192, "pre-commit-testing"]], "redis-vector-db": [[210, "redis-vector-db"]], "remote service usage": [[88, "remote-service-usage"]], "reranking the docs": [[202, "reranking-the-docs"]], "reranking-usvc": [[211, "reranking-usvc"]], "retriever-usvc": [[212, "retriever-usvc"]], "run client test": [[21, "run-client-test"], [62, "run-client-test"]], "speecht5": [[213, "speecht5"]], "start the server": [[54, "start-the-server"]], "stresscli.py": [[93, "stresscli-py"]], "tei": [[214, "tei"]], "teirerank": [[215, "teirerank"]], "tgi": [[216, "tgi"]], "tts": [[217, "tts"]], "vLLM Endpoint Service": [[51, "vllm-endpoint-service"], [52, "vllm-endpoint-service"]], "vLLM and TGI Service": [[264, "vllm-and-tgi-service"]], "vllm": [[218, "vllm"]], "web-retriever": [[219, "web-retriever"]], "whisper": [[220, "whisper"]], "\u267b\ufe0f 3. Clean": [[57, "clean"], [64, "clean"]], "\u2699\ufe0f Implementation": [[7, "implementation"], [28, "implementation"], [59, "implementation"]], "\u26a0\ufe0f Prerequisites for Deploying ProductivitySuite with ReactUI": [[166, "prerequisites-for-deploying-productivitysuite-with-reactui"]], "\u2705 2. Test": [[57, "test"], [64, "test"]], "\u2705 Invoke Microservice": [[8, "invoke-microservice"], [29, "invoke-microservice"], [60, "invoke-microservice"]], "\u2705 Validate Microservices": [[164, "validate-microservices"]], "\u2705 Verify Services": [[166, "verify-services"]], "\u2753 FAQ Generation": [[163, "faq-generation"]], "\u2753 FAQ Generator": [[164, "faq-generator"]], "\ud83c\udf10 Deploying ProductivitySuite": [[166, "deploying-productivitysuite"]], "\ud83c\udf9b\ufe0f Data Source": [[164, "data-source"]], "\ud83c\udf9b\ufe0f User Context Management": [[163, "user-context-management"]], "\ud83d\udc33 Build Docker Images": [[164, "build-docker-images"]], "\ud83d\udcac Chat with Documents": [[163, "chat-with-documents"]], "\ud83d\udcacChatQnA": [[164, "chatqna"]], "\ud83d\udcbb Code Generation": [[163, "code-generation"]], "\ud83d\udcbb Codegen": [[164, "codegen"]], "\ud83d\udcc4 Content Summarization": [[163, "content-summarization"]], "\ud83d\udcda Document Summarization": [[164, "document-summarization"]], "\ud83d\udcda Setup Guide": [[163, "setup-guide"]], "\ud83d\udcdd Chat History Microservice": [[7, "chat-history-microservice"]], "\ud83d\udcdd Chat History Microservice with MongoDB": [[8, "chat-history-microservice-with-mongodb"]], "\ud83d\udcf8 Project Screenshots": [[108, "project-screenshots"], [119, "project-screenshots"], [120, "project-screenshots"], [128, "project-screenshots"], [129, "project-screenshots"], [135, "project-screenshots"], [145, "project-screenshots"], [146, "project-screenshots"], [154, "project-screenshots"], [155, "project-screenshots"], [167, "project-screenshots"], [176, "project-screenshots"], [182, "project-screenshots"]], "\ud83d\udd10 Identity and Access Management": [[163, "identity-and-access-management"]], "\ud83d\udd10 Keycloak Configuration Setup": [[165, "keycloak-configuration-setup"]], "\ud83d\udd10 Setup Keycloak": [[164, "setup-keycloak"]], "\ud83d\udd10 User Management via Keycloak Configuration": [[166, "user-management-via-keycloak-configuration"]], "\ud83d\udde8 Feedback Management Microservice": [[28, "feedback-management-microservice"]], "\ud83d\udde8 Feedback Management Microservice with MongoDB": [[29, "feedback-management-microservice-with-mongodb"]], "\ud83d\ude80 3. Validate Microservice": [[3, "validate-microservice"]], "\ud83d\ude80 4. Provide your own tools": [[3, "provide-your-own-tools"]], "\ud83d\ude80 Apply Intel Xeon Server on AWS": [[140, "apply-intel-xeon-server-on-aws"], [149, "apply-intel-xeon-server-on-aws"]], "\ud83d\ude80 Apply Xeon Server on AWS": [[112, "apply-xeon-server-on-aws"], [113, "apply-xeon-server-on-aws"], [161, "apply-xeon-server-on-aws"], [178, "apply-xeon-server-on-aws"], [186, "apply-xeon-server-on-aws"]], "\ud83d\ude80 Build Docker Images": [[111, "build-docker-images"], [112, "build-docker-images"], [113, "build-docker-images"], [114, "build-docker-images"], [116, "build-docker-images"], [124, "build-docker-images"], [131, "build-docker-images"], [132, "build-docker-images"], [140, "build-docker-images"], [141, "build-docker-images"], [149, "build-docker-images"], [150, "build-docker-images"], [157, "build-docker-images"], [158, "build-docker-images"], [161, "build-docker-images"], [162, "build-docker-images"], [170, "build-docker-images"], [171, "build-docker-images"], [174, "build-docker-images"], [184, "build-docker-images"], [186, "build-docker-images"], [187, "build-docker-images"]], "\ud83d\ude80 Build Docker images": [[104, "build-docker-images"], [105, "build-docker-images"], [173, "build-docker-images"]], "\ud83d\ude80 Consume Embeddings Service": [[25, "consume-embeddings-service"]], "\ud83d\ude80 Consume Factuality Check Service": [[33, "consume-factuality-check-service"]], "\ud83d\ude80 Consume PII Detection Service": [[36, "consume-pii-detection-service"]], "\ud83d\ude80 Consume Prompt Injection Detection Service": [[37, "consume-prompt-injection-detection-service"]], "\ud83d\ude80 Consume Toxicity Check Service": [[39, "consume-toxicity-check-service"]], "\ud83d\ude80 Create an AWS Xeon Instance": [[123, "create-an-aws-xeon-instance"], [131, "create-an-aws-xeon-instance"]], "\ud83d\ude80 Deploy ProductivitySuite with ReactUI": [[166, "deploy-productivitysuite-with-reactui"]], "\ud83d\ude80 Download or Build Docker Images": [[123, "download-or-build-docker-images"]], "\ud83d\ude80 Launch the Conversational UI (Optional)": [[112, "launch-the-conversational-ui-optional"], [114, "launch-the-conversational-ui-optional"], [116, "launch-the-conversational-ui-optional"]], "\ud83d\ude80 Launch the Conversational UI (react)": [[113, "launch-the-conversational-ui-react"]], "\ud83d\ude80 Launch the React Based UI (Optional)": [[123, "launch-the-react-based-ui-optional"], [124, "launch-the-react-based-ui-optional"]], "\ud83d\ude80 Launch the React UI (Optional)": [[141, "launch-the-react-ui-optional"], [149, "launch-the-react-ui-optional"], [150, "launch-the-react-ui-optional"]], "\ud83d\ude80 Launch the Svelte Based UI": [[124, "launch-the-svelte-based-ui"]], "\ud83d\ude80 Launch the Svelte UI": [[141, "launch-the-svelte-ui"]], "\ud83d\ude80 Launch the UI": [[111, "launch-the-ui"], [112, "launch-the-ui"], [113, "launch-the-ui"], [114, "launch-the-ui"], [116, "launch-the-ui"], [123, "launch-the-ui"], [131, "launch-the-ui"], [132, "launch-the-ui"], [140, "launch-the-ui"], [149, "launch-the-ui"], [150, "launch-the-ui"], [164, "launch-the-ui"], [178, "launch-the-ui"], [179, "launch-the-ui"], [184, "launch-the-ui"], [186, "launch-the-ui"], [187, "launch-the-ui"]], "\ud83d\ude80 Port used for the microservices": [[184, "port-used-for-the-microservices"]], "\ud83d\ude80 Prepare Docker Images": [[178, "prepare-docker-images"], [179, "prepare-docker-images"]], "\ud83d\ude80 Set the environment variables": [[104, "set-the-environment-variables"], [105, "set-the-environment-variables"], [173, "set-the-environment-variables"], [174, "set-the-environment-variables"]], "\ud83d\ude80 Start MicroServices and MegaService": [[114, "start-microservices-and-megaservice"], [116, "start-microservices-and-megaservice"], [124, "start-microservices-and-megaservice"], [187, "start-microservices-and-megaservice"]], "\ud83d\ude80 Start Microservice with Docker": [[25, "start-microservice-with-docker"], [33, "start-microservice-with-docker"], [36, "start-microservice-with-docker"], [37, "start-microservice-with-docker"], [39, "start-microservice-with-docker"]], "\ud83d\ude80 Start Microservices": [[111, "start-microservices"], [112, "start-microservices"], [113, "start-microservices"], [131, "start-microservices"], [132, "start-microservices"], [161, "start-microservices"], [162, "start-microservices"], [164, "start-microservices"], [178, "start-microservices"], [179, "start-microservices"], [184, "start-microservices"], [186, "start-microservices"]], "\ud83d\ude80 Start Microservices and MegaService": [[123, "start-microservices-and-megaservice"], [140, "start-microservices-and-megaservice"], [141, "start-microservices-and-megaservice"], [149, "start-microservices-and-megaservice"], [150, "start-microservices-and-megaservice"]], "\ud83d\ude80 Start the MegaService": [[104, "start-the-megaservice"], [105, "start-the-megaservice"], [173, "start-the-megaservice"], [174, "start-the-megaservice"]], "\ud83d\ude80 Test MegaService": [[104, "test-megaservice"], [105, "test-megaservice"], [173, "test-megaservice"], [174, "test-megaservice"]], "\ud83d\ude80 Test MicroServices": [[104, "test-microservices"], [105, "test-microservices"], [173, "test-microservices"], [174, "test-microservices"]], "\ud83d\ude801. Build Docker Image": [[58, "build-docker-image"]], "\ud83d\ude801. Set up Environment Variables": [[51, "set-up-environment-variables"], [52, "set-up-environment-variables"]], "\ud83d\ude801. Start Microservice": [[46, "start-microservice"], [47, "start-microservice"]], "\ud83d\ude801. Start Microservice with Docker": [[24, "start-microservice-with-docker"], [42, "start-microservice-with-docker"], [43, "start-microservice-with-docker"], [57, "start-microservice-with-docker"], [64, "start-microservice-with-docker"]], "\ud83d\ude801. Start Microservice with Python": [[56, "start-microservice-with-python"]], "\ud83d\ude801. Start Microservice with Python (Option 1)": [[6, "start-microservice-with-python-option-1"], [11, "start-microservice-with-python-option-1"], [18, "start-microservice-with-python-option-1"], [19, "start-microservice-with-python-option-1"], [23, "start-microservice-with-python-option-1"], [26, "start-microservice-with-python-option-1"], [27, "start-microservice-with-python-option-1"], [34, "start-microservice-with-python-option-1"], [40, "start-microservice-with-python-option-1"], [45, "start-microservice-with-python-option-1"], [50, "start-microservice-with-python-option-1"], [55, "start-microservice-with-python-option-1"], [61, "start-microservice-with-python-option-1"], [63, "start-microservice-with-python-option-1"], [67, "start-microservice-with-python-option-1"], [70, "start-microservice-with-python-option-1"], [72, "start-microservice-with-python-option-1"], [73, "start-microservice-with-python-option-1"], [74, "start-microservice-with-python-option-1"]], "\ud83d\ude801. Start Microservice with Python (Optional 1)": [[30, "start-microservice-with-python-optional-1"]], "\ud83d\ude801. Start Microservice with Python \ud83d\udc0d (Option 1)": [[44, "start-microservice-with-python-option-1"]], "\ud83d\ude801. Start Microservice with Python\uff08Option 1\uff09": [[12, "start-microservice-with-python-option-1"], [14, "start-microservice-with-python-option-1"], [17, "start-microservice-with-python-option-1"], [32, "start-microservice-with-python-option-1"], [35, "start-microservice-with-python-option-1"], [38, "start-microservice-with-python-option-1"], [41, "start-microservice-with-python-option-1"]], "\ud83d\ude802. Consume Embedding Service": [[24, "consume-embedding-service"]], "\ud83d\ude802. Consume Knowledge Graph Service": [[42, "consume-knowledge-graph-service"]], "\ud83d\ude802. Consume LLM Service": [[46, "consume-llm-service"], [47, "consume-llm-service"]], "\ud83d\ude802. Environment Settings": [[58, "environment-settings"]], "\ud83d\ude802. Set up vLLM Service": [[51, "set-up-vllm-service"], [52, "set-up-vllm-service"]], "\ud83d\ude802. Start Agent Microservice": [[3, "start-agent-microservice"]], "\ud83d\ude802. Start Microservice with Docker (Option 2)": [[6, "start-microservice-with-docker-option-2"], [11, "start-microservice-with-docker-option-2"], [12, "start-microservice-with-docker-option-2"], [14, "start-microservice-with-docker-option-2"], [17, "start-microservice-with-docker-option-2"], [18, "start-microservice-with-docker-option-2"], [19, "start-microservice-with-docker-option-2"], [23, "start-microservice-with-docker-option-2"], [32, "start-microservice-with-docker-option-2"], [34, "start-microservice-with-docker-option-2"], [35, "start-microservice-with-docker-option-2"], [38, "start-microservice-with-docker-option-2"], [40, "start-microservice-with-docker-option-2"], [41, "start-microservice-with-docker-option-2"], [45, "start-microservice-with-docker-option-2"], [50, "start-microservice-with-docker-option-2"], [55, "start-microservice-with-docker-option-2"], [56, "start-microservice-with-docker-option-2"], [61, "start-microservice-with-docker-option-2"], [63, "start-microservice-with-docker-option-2"], [67, "start-microservice-with-docker-option-2"], [70, "start-microservice-with-docker-option-2"], [72, "start-microservice-with-docker-option-2"], [73, "start-microservice-with-docker-option-2"], [74, "start-microservice-with-docker-option-2"], [75, "start-microservice-with-docker-option-2"]], "\ud83d\ude802. Start Microservice with Docker (Optional 2)": [[26, "start-microservice-with-docker-optional-2"], [27, "start-microservice-with-docker-optional-2"], [30, "start-microservice-with-docker-optional-2"]], "\ud83d\ude802. Start Microservice with Docker \ud83d\udc33 (Option 2)": [[44, "start-microservice-with-docker-option-2"]], "\ud83d\ude803. Consume Embedding Service": [[23, "consume-embedding-service"], [26, "consume-embedding-service"], [27, "consume-embedding-service"]], "\ud83d\ude803. Consume Finetuning Service": [[30, "consume-finetuning-service"]], "\ud83d\ude803. Consume Guardrails Service": [[34, "consume-guardrails-service"]], "\ud83d\ude803. Consume LLM Service": [[43, "consume-llm-service"], [44, "consume-llm-service"], [45, "consume-llm-service"], [50, "consume-llm-service"]], "\ud83d\ude803. Consume LVM Service": [[56, "consume-lvm-service"]], "\ud83d\ude803. Consume Microservice": [[11, "consume-microservice"], [14, "consume-microservice"], [41, "consume-microservice"]], "\ud83d\ude803. Consume Reranking Service": [[61, "consume-reranking-service"], [63, "consume-reranking-service"]], "\ud83d\ude803. Consume Retriever Service": [[66, "consume-retriever-service"], [67, "consume-retriever-service"], [68, "consume-retriever-service"], [70, "consume-retriever-service"], [71, "consume-retriever-service"], [72, "consume-retriever-service"], [73, "consume-retriever-service"], [74, "consume-retriever-service"]], "\ud83d\ude803. Get Status of Microservice": [[32, "get-status-of-microservice"], [35, "get-status-of-microservice"], [38, "get-status-of-microservice"]], "\ud83d\ude803. Set up LLM microservice": [[51, "set-up-llm-microservice"], [52, "set-up-llm-microservice"]], "\ud83d\ude803. Start Nginx Service": [[58, "start-nginx-service"]], "\ud83d\ude803. Status Microservice": [[12, "status-microservice"], [17, "status-microservice"], [18, "status-microservice"], [19, "status-microservice"]], "\ud83d\ude804. Consume Forwarded Service": [[58, "consume-forwarded-service"]], "\ud83d\ude804. Consume Microservice": [[12, "consume-microservice"], [17, "consume-microservice"], [18, "consume-microservice"], [19, "consume-microservice"], [35, "consume-microservice"]], "\ud83d\ude804. Consume Microservice Pre-LLM/Post-LLM": [[32, "consume-microservice-pre-llm-post-llm"], [38, "consume-microservice-pre-llm-post-llm"]], "\ud83d\ude804. Descriptions for Finetuning parameters": [[30, "descriptions-for-finetuning-parameters"]], "\ud83d\ude804. Troubleshooting": [[11, "troubleshooting"]], "\ud83d\ude80Start Microservice with Docker": [[8, "start-microservice-with-docker"], [13, "start-microservice-with-docker"], [15, "start-microservice-with-docker"], [16, "start-microservice-with-docker"], [29, "start-microservice-with-docker"], [60, "start-microservice-with-docker"], [66, "start-microservice-with-docker"], [68, "start-microservice-with-docker"]], "\ud83d\ude80Start Microservice with Python": [[13, "start-microservice-with-python"], [15, "start-microservice-with-python"], [16, "start-microservice-with-python"], [66, "start-microservice-with-python"], [68, "start-microservice-with-python"]], "\ud83d\ude80Start Microservices": [[69, "start-microservices"]], "\ud83d\udee0\ufe0f Features": [[7, "features"], [28, "features"], [59, "features"]], "\ud83d\udee0\ufe0f Get it Running": [[108, "get-it-running"], [119, "get-it-running"], [120, "get-it-running"], [128, "get-it-running"], [129, "get-it-running"], [135, "get-it-running"], [145, "get-it-running"], [146, "get-it-running"], [154, "get-it-running"], [155, "get-it-running"], [167, "get-it-running"], [176, "get-it-running"], [182, "get-it-running"]], "\ud83d\udee0\ufe0f Key Features": [[163, "key-features"], [164, "key-features"]], "\ud83e\uddd0 Features": [[108, "features"], [119, "features"], [120, "features"], [128, "features"], [129, "features"], [135, "features"], [145, "features"], [146, "features"], [154, "features"], [155, "features"], [167, "features"], [176, "features"], [182, "features"]], "\ud83e\uddfe Prompt Registry Microservice": [[59, "prompt-registry-microservice"]], "\ud83e\uddfe Prompt Registry Microservice with MongoDB": [[60, "prompt-registry-microservice-with-mongodb"]]}, "docnames": ["404", "GenAIComps/LEGAL_INFORMATION", "GenAIComps/README", "GenAIComps/comps/agent/langchain/README", "GenAIComps/comps/agent/langchain/src/strategy/planexec/README", "GenAIComps/comps/agent/langchain/src/strategy/ragagent/README", "GenAIComps/comps/asr/whisper/README", "GenAIComps/comps/chathistory/README", "GenAIComps/comps/chathistory/mongo/README", "GenAIComps/comps/cores/telemetry/README", "GenAIComps/comps/dataprep/README", "GenAIComps/comps/dataprep/milvus/langchain/README", "GenAIComps/comps/dataprep/multimodal/redis/langchain/README", "GenAIComps/comps/dataprep/neo4j/langchain/README", "GenAIComps/comps/dataprep/pgvector/langchain/README", "GenAIComps/comps/dataprep/pinecone/langchain/README", "GenAIComps/comps/dataprep/qdrant/langchain/README", "GenAIComps/comps/dataprep/redis/README", "GenAIComps/comps/dataprep/vdms/README", "GenAIComps/comps/dataprep/vdms/multimodal_langchain/README", "GenAIComps/comps/embeddings/README", "GenAIComps/comps/embeddings/mosec/langchain/README", "GenAIComps/comps/embeddings/mosec/langchain/dependency/README", "GenAIComps/comps/embeddings/multimodal/README", "GenAIComps/comps/embeddings/multimodal_clip/README", "GenAIComps/comps/embeddings/predictionguard/README", "GenAIComps/comps/embeddings/tei/langchain/README", "GenAIComps/comps/embeddings/tei/llama_index/README", "GenAIComps/comps/feedback_management/README", "GenAIComps/comps/feedback_management/mongo/README", "GenAIComps/comps/finetuning/README", "GenAIComps/comps/guardrails/README", "GenAIComps/comps/guardrails/bias_detection/README", "GenAIComps/comps/guardrails/factuality/predictionguard/README", "GenAIComps/comps/guardrails/llama_guard/langchain/README", "GenAIComps/comps/guardrails/pii_detection/README", "GenAIComps/comps/guardrails/pii_detection/predictionguard/README", "GenAIComps/comps/guardrails/prompt_injection/predictionguard/README", "GenAIComps/comps/guardrails/toxicity_detection/README", "GenAIComps/comps/guardrails/toxicity_detection/predictionguard/README", "GenAIComps/comps/image2video/README", "GenAIComps/comps/intent_detection/langchain/README", "GenAIComps/comps/knowledgegraphs/langchain/README", "GenAIComps/comps/llms/faq-generation/tgi/langchain/README", "GenAIComps/comps/llms/summarization/tgi/langchain/README", "GenAIComps/comps/llms/text-generation/README", "GenAIComps/comps/llms/text-generation/native/langchain/README", "GenAIComps/comps/llms/text-generation/native/llama_index/README", "GenAIComps/comps/llms/text-generation/ollama/langchain/README", "GenAIComps/comps/llms/text-generation/predictionguard/README", "GenAIComps/comps/llms/text-generation/tgi/README", "GenAIComps/comps/llms/text-generation/vllm/langchain/README", "GenAIComps/comps/llms/text-generation/vllm/llama_index/README", "GenAIComps/comps/llms/text-generation/vllm/ray/README", "GenAIComps/comps/llms/utils/lm-eval/README", "GenAIComps/comps/lvms/llava/README", "GenAIComps/comps/lvms/predictionguard/README", "GenAIComps/comps/lvms/video-llama/README", "GenAIComps/comps/nginx/README", "GenAIComps/comps/prompt_registry/README", "GenAIComps/comps/prompt_registry/mongo/README", "GenAIComps/comps/reranks/fastrag/README", "GenAIComps/comps/reranks/mosec/langchain/README", "GenAIComps/comps/reranks/tei/README", "GenAIComps/comps/reranks/videoqna/README", "GenAIComps/comps/retrievers/README", "GenAIComps/comps/retrievers/milvus/langchain/README", "GenAIComps/comps/retrievers/multimodal/redis/langchain/README", "GenAIComps/comps/retrievers/neo4j/langchain/README", "GenAIComps/comps/retrievers/pathway/langchain/README", "GenAIComps/comps/retrievers/pgvector/langchain/README", "GenAIComps/comps/retrievers/qdrant/haystack/README", "GenAIComps/comps/retrievers/redis/langchain/README", "GenAIComps/comps/retrievers/redis/llama_index/README", "GenAIComps/comps/retrievers/vdms/langchain/README", "GenAIComps/comps/tts/speecht5/README", "GenAIComps/comps/vectorstores/README", "GenAIComps/comps/vectorstores/chroma/README", "GenAIComps/comps/vectorstores/lancedb/README", "GenAIComps/comps/vectorstores/milvus/README", "GenAIComps/comps/vectorstores/pathway/README", "GenAIComps/comps/vectorstores/pgvector/README", "GenAIComps/comps/vectorstores/pinecone/README", "GenAIComps/comps/vectorstores/qdrant/README", "GenAIComps/comps/vectorstores/redis/README", "GenAIComps/comps/vectorstores/vdms/README", "GenAIComps/comps/web_retrievers/chroma/langchain/README", "GenAIEval/LEGAL_INFORMATION", "GenAIEval/README", "GenAIEval/doc/platform-optimization/README", "GenAIEval/evals/benchmark/README", "GenAIEval/evals/benchmark/auto_tuning/README", "GenAIEval/evals/benchmark/grafana/README", "GenAIEval/evals/benchmark/stresscli/README", "GenAIEval/evals/benchmark/stresscli/locust/README", "GenAIEval/evals/evaluation/agent_eval/crag_eval/README", "GenAIEval/evals/evaluation/autorag/evaluation/README", "GenAIEval/evals/evaluation/rag_eval/README", "GenAIEval/evals/metrics/bleu/README", "GenAIEval/evals/metrics/ragas/README", "GenAIExamples/AgentQnA/README", "GenAIExamples/AgentQnA/retrieval_tool/README", "GenAIExamples/AudioQnA/README", "GenAIExamples/AudioQnA/benchmark/accuracy/README", "GenAIExamples/AudioQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/AudioQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/AudioQnA/kubernetes/intel/README", "GenAIExamples/AudioQnA/kubernetes/intel/README_gmc", "GenAIExamples/AudioQnA/ui/svelte/README", "GenAIExamples/ChatQnA/README", "GenAIExamples/ChatQnA/benchmark/performance/README", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/aipc/README", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README_qdrant", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/how_to_validate_service", "GenAIExamples/ChatQnA/docker_compose/nvidia/gpu/README", "GenAIExamples/ChatQnA/kubernetes/intel/README", "GenAIExamples/ChatQnA/kubernetes/intel/README_gmc", "GenAIExamples/ChatQnA/ui/react/README", "GenAIExamples/ChatQnA/ui/svelte/README", "GenAIExamples/CodeGen/README", "GenAIExamples/CodeGen/benchmark/accuracy/README", "GenAIExamples/CodeGen/docker_compose/intel/cpu/xeon/README", "GenAIExamples/CodeGen/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/CodeGen/kubernetes/intel/README", "GenAIExamples/CodeGen/kubernetes/intel/README_gmc", "GenAIExamples/CodeGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui", "GenAIExamples/CodeGen/ui/react/README", "GenAIExamples/CodeGen/ui/svelte/README", "GenAIExamples/CodeTrans/README", "GenAIExamples/CodeTrans/docker_compose/intel/cpu/xeon/README", "GenAIExamples/CodeTrans/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/CodeTrans/kubernetes/intel/README", "GenAIExamples/CodeTrans/kubernetes/intel/README_gmc", "GenAIExamples/CodeTrans/ui/svelte/README", "GenAIExamples/DocIndexRetriever/README", "GenAIExamples/DocIndexRetriever/docker_compose/intel/cpu/xeon/README", "GenAIExamples/DocIndexRetriever/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/DocSum/README", "GenAIExamples/DocSum/docker_compose/intel/cpu/xeon/README", "GenAIExamples/DocSum/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/DocSum/kubernetes/intel/README", "GenAIExamples/DocSum/kubernetes/intel/README_gmc", "GenAIExamples/DocSum/kubernetes/intel/cpu/xeon/manifest/ui/README", "GenAIExamples/DocSum/ui/react/README", "GenAIExamples/DocSum/ui/svelte/README", "GenAIExamples/FaqGen/README", "GenAIExamples/FaqGen/benchmark/accuracy/README", "GenAIExamples/FaqGen/docker_compose/intel/cpu/xeon/README", "GenAIExamples/FaqGen/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/FaqGen/kubernetes/intel/README", "GenAIExamples/FaqGen/kubernetes/intel/README_gmc", "GenAIExamples/FaqGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui", "GenAIExamples/FaqGen/ui/react/README", "GenAIExamples/FaqGen/ui/svelte/README", "GenAIExamples/InstructionTuning/README", "GenAIExamples/InstructionTuning/docker_compose/intel/cpu/xeon/README", "GenAIExamples/InstructionTuning/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/LEGAL_INFORMATION", "GenAIExamples/MultimodalQnA/README", "GenAIExamples/MultimodalQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/MultimodalQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/ProductivitySuite/README", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/README", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/keycloak_setup_guide", "GenAIExamples/ProductivitySuite/kubernetes/intel/README", "GenAIExamples/ProductivitySuite/ui/react/README", "GenAIExamples/README", "GenAIExamples/RerankFinetuning/README", "GenAIExamples/RerankFinetuning/docker_compose/intel/cpu/xeon/README", "GenAIExamples/RerankFinetuning/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/SearchQnA/README", "GenAIExamples/SearchQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/SearchQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/SearchQnA/kubernetes/intel/README_gmc", "GenAIExamples/SearchQnA/ui/svelte/README", "GenAIExamples/Translation/README", "GenAIExamples/Translation/docker_compose/intel/cpu/xeon/README", "GenAIExamples/Translation/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/Translation/kubernetes/intel/README", "GenAIExamples/Translation/kubernetes/intel/README_gmc", "GenAIExamples/Translation/ui/svelte/README", "GenAIExamples/VideoQnA/README", "GenAIExamples/VideoQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/VisualQnA/README", "GenAIExamples/VisualQnA/docker_compose/intel/cpu/xeon/README", "GenAIExamples/VisualQnA/docker_compose/intel/hpu/gaudi/README", "GenAIExamples/VisualQnA/kubernetes/intel/README", "GenAIExamples/VisualQnA/kubernetes/intel/README_gmc", "GenAIExamples/docker_images_list", "GenAIExamples/supported_examples", "GenAIInfra/DEVELOPMENT", "GenAIInfra/LEGAL_INFORMATION", "GenAIInfra/README", "GenAIInfra/RELEASE_BRANCHES", "GenAIInfra/authN-authZ/README", "GenAIInfra/authN-authZ/auth-apisix/README", "GenAIInfra/authN-authZ/auth-istio/README", "GenAIInfra/helm-charts/HPA", "GenAIInfra/helm-charts/README", "GenAIInfra/helm-charts/chatqna/README", "GenAIInfra/helm-charts/chatqna/troubleshooting", "GenAIInfra/helm-charts/codegen/README", "GenAIInfra/helm-charts/codetrans/README", "GenAIInfra/helm-charts/common/asr/README", "GenAIInfra/helm-charts/common/data-prep/README", "GenAIInfra/helm-charts/common/embedding-usvc/README", "GenAIInfra/helm-charts/common/guardrails-usvc/README", "GenAIInfra/helm-charts/common/llm-uservice/README", "GenAIInfra/helm-charts/common/redis-vector-db/README", "GenAIInfra/helm-charts/common/reranking-usvc/README", "GenAIInfra/helm-charts/common/retriever-usvc/README", "GenAIInfra/helm-charts/common/speecht5/README", "GenAIInfra/helm-charts/common/tei/README", "GenAIInfra/helm-charts/common/teirerank/README", "GenAIInfra/helm-charts/common/tgi/README", "GenAIInfra/helm-charts/common/tts/README", "GenAIInfra/helm-charts/common/vllm/README", "GenAIInfra/helm-charts/common/web-retriever/README", "GenAIInfra/helm-charts/common/whisper/README", "GenAIInfra/helm-charts/docsum/README", "GenAIInfra/kubernetes-addons/Intel-Gaudi-Base-Operator/README", "GenAIInfra/kubernetes-addons/Observability/README", "GenAIInfra/kubernetes-addons/README", "GenAIInfra/kubernetes-addons/memory-bandwidth-exporter/README", "GenAIInfra/microservices-connector/README", "GenAIInfra/microservices-connector/config/samples/ChatQnA/use_cases", "GenAIInfra/microservices-connector/helm/README", "GenAIInfra/microservices-connector/troubleshooting_guide", "GenAIInfra/microservices-connector/usage_guide", "GenAIInfra/proxy/README", "GenAIInfra/proxy/deployments/guardrails/README", "GenAIInfra/scripts/README", "GenAIInfra/scripts/nvidia/README", "GenAIInfra/scripts/ray/README", "README", "community/CODE_OF_CONDUCT", "community/CONTRIBUTING", "community/SECURITY", "community/TSC", "community/charter", "community/codeowner", "community/index", "community/rfcs", "community/rfcs/24-05-16-GenAIExamples-001-Using_MicroService_to_implement_ChatQnA", "community/rfcs/24-05-16-OPEA-001-Overall-Design", "community/rfcs/24-05-24-OPEA-001-Code-Structure", "community/rfcs/24-06-21-OPEA-001-Guardrails-Gateway", "community/rfcs/24-08-02-OPEA-AIAvatarChatbot", "community/rfcs/24-08-07-OPEA-GenAIStudio", "community/rfcs/README", "deploy/index", "developer-guides/OPEA_API", "developer-guides/doc_guidelines", "developer-guides/docbuild", "developer-guides/graphviz", "developer-guides/index", "eval/index", "examples/ChatQnA/ChatQnA_Guide", "examples/ChatQnA/deploy/aipc", "examples/ChatQnA/deploy/gaudi", "examples/ChatQnA/deploy/index", "examples/ChatQnA/deploy/nvidia", "examples/ChatQnA/deploy/xeon", "examples/index", "faq", "framework/framework", "getting-started/README", "glossary", "guide/installation/gmc_install/gmc_install", "guide/installation/k8s_install/README", "guide/installation/k8s_install/k8s_instal_aws_eks", "guide/installation/k8s_install/k8s_install_kubeadm", "guide/installation/k8s_install/k8s_install_kubespray", "index", "introduction/index", "microservices/index", "release_notes/index", "release_notes/v0.6", "release_notes/v0.7", "release_notes/v0.8", "release_notes/v0.9", "release_notes/v1.0", "roadmap/2024-2025", "roadmap/CICD"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["404.rst", "GenAIComps/LEGAL_INFORMATION.md", "GenAIComps/README.md", "GenAIComps/comps/agent/langchain/README.md", "GenAIComps/comps/agent/langchain/src/strategy/planexec/README.md", "GenAIComps/comps/agent/langchain/src/strategy/ragagent/README.md", "GenAIComps/comps/asr/whisper/README.md", "GenAIComps/comps/chathistory/README.md", "GenAIComps/comps/chathistory/mongo/README.md", "GenAIComps/comps/cores/telemetry/README.md", "GenAIComps/comps/dataprep/README.md", "GenAIComps/comps/dataprep/milvus/langchain/README.md", "GenAIComps/comps/dataprep/multimodal/redis/langchain/README.md", "GenAIComps/comps/dataprep/neo4j/langchain/README.md", "GenAIComps/comps/dataprep/pgvector/langchain/README.md", "GenAIComps/comps/dataprep/pinecone/langchain/README.md", "GenAIComps/comps/dataprep/qdrant/langchain/README.md", "GenAIComps/comps/dataprep/redis/README.md", "GenAIComps/comps/dataprep/vdms/README.md", "GenAIComps/comps/dataprep/vdms/multimodal_langchain/README.md", "GenAIComps/comps/embeddings/README.md", "GenAIComps/comps/embeddings/mosec/langchain/README.md", "GenAIComps/comps/embeddings/mosec/langchain/dependency/README.md", "GenAIComps/comps/embeddings/multimodal/README.md", "GenAIComps/comps/embeddings/multimodal_clip/README.md", "GenAIComps/comps/embeddings/predictionguard/README.md", "GenAIComps/comps/embeddings/tei/langchain/README.md", "GenAIComps/comps/embeddings/tei/llama_index/README.md", "GenAIComps/comps/feedback_management/README.md", "GenAIComps/comps/feedback_management/mongo/README.md", "GenAIComps/comps/finetuning/README.md", "GenAIComps/comps/guardrails/README.md", "GenAIComps/comps/guardrails/bias_detection/README.md", "GenAIComps/comps/guardrails/factuality/predictionguard/README.md", "GenAIComps/comps/guardrails/llama_guard/langchain/README.md", "GenAIComps/comps/guardrails/pii_detection/README.md", "GenAIComps/comps/guardrails/pii_detection/predictionguard/README.md", "GenAIComps/comps/guardrails/prompt_injection/predictionguard/README.md", "GenAIComps/comps/guardrails/toxicity_detection/README.md", "GenAIComps/comps/guardrails/toxicity_detection/predictionguard/README.md", "GenAIComps/comps/image2video/README.md", "GenAIComps/comps/intent_detection/langchain/README.md", "GenAIComps/comps/knowledgegraphs/langchain/README.md", "GenAIComps/comps/llms/faq-generation/tgi/langchain/README.md", "GenAIComps/comps/llms/summarization/tgi/langchain/README.md", "GenAIComps/comps/llms/text-generation/README.md", "GenAIComps/comps/llms/text-generation/native/langchain/README.md", "GenAIComps/comps/llms/text-generation/native/llama_index/README.md", "GenAIComps/comps/llms/text-generation/ollama/langchain/README.md", "GenAIComps/comps/llms/text-generation/predictionguard/README.md", "GenAIComps/comps/llms/text-generation/tgi/README.md", "GenAIComps/comps/llms/text-generation/vllm/langchain/README.md", "GenAIComps/comps/llms/text-generation/vllm/llama_index/README.md", "GenAIComps/comps/llms/text-generation/vllm/ray/README.md", "GenAIComps/comps/llms/utils/lm-eval/README.md", "GenAIComps/comps/lvms/llava/README.md", "GenAIComps/comps/lvms/predictionguard/README.md", "GenAIComps/comps/lvms/video-llama/README.md", "GenAIComps/comps/nginx/README.md", "GenAIComps/comps/prompt_registry/README.md", "GenAIComps/comps/prompt_registry/mongo/README.md", "GenAIComps/comps/reranks/fastrag/README.md", "GenAIComps/comps/reranks/mosec/langchain/README.md", "GenAIComps/comps/reranks/tei/README.md", "GenAIComps/comps/reranks/videoqna/README.md", "GenAIComps/comps/retrievers/README.md", "GenAIComps/comps/retrievers/milvus/langchain/README.md", "GenAIComps/comps/retrievers/multimodal/redis/langchain/README.md", "GenAIComps/comps/retrievers/neo4j/langchain/README.md", "GenAIComps/comps/retrievers/pathway/langchain/README.md", "GenAIComps/comps/retrievers/pgvector/langchain/README.md", "GenAIComps/comps/retrievers/qdrant/haystack/README.md", "GenAIComps/comps/retrievers/redis/langchain/README.md", "GenAIComps/comps/retrievers/redis/llama_index/README.md", "GenAIComps/comps/retrievers/vdms/langchain/README.md", "GenAIComps/comps/tts/speecht5/README.md", "GenAIComps/comps/vectorstores/README.md", "GenAIComps/comps/vectorstores/chroma/README.md", "GenAIComps/comps/vectorstores/lancedb/README.md", "GenAIComps/comps/vectorstores/milvus/README.md", "GenAIComps/comps/vectorstores/pathway/README.md", "GenAIComps/comps/vectorstores/pgvector/README.md", "GenAIComps/comps/vectorstores/pinecone/README.md", "GenAIComps/comps/vectorstores/qdrant/README.md", "GenAIComps/comps/vectorstores/redis/README.md", "GenAIComps/comps/vectorstores/vdms/README.md", "GenAIComps/comps/web_retrievers/chroma/langchain/README.md", "GenAIEval/LEGAL_INFORMATION.md", "GenAIEval/README.md", "GenAIEval/doc/platform-optimization/README.md", "GenAIEval/evals/benchmark/README.md", "GenAIEval/evals/benchmark/auto_tuning/README.md", "GenAIEval/evals/benchmark/grafana/README.md", "GenAIEval/evals/benchmark/stresscli/README.md", "GenAIEval/evals/benchmark/stresscli/locust/README.md", "GenAIEval/evals/evaluation/agent_eval/crag_eval/README.md", "GenAIEval/evals/evaluation/autorag/evaluation/README.md", "GenAIEval/evals/evaluation/rag_eval/README.md", "GenAIEval/evals/metrics/bleu/README.md", "GenAIEval/evals/metrics/ragas/README.md", "GenAIExamples/AgentQnA/README.md", "GenAIExamples/AgentQnA/retrieval_tool/README.md", "GenAIExamples/AudioQnA/README.md", "GenAIExamples/AudioQnA/benchmark/accuracy/README.md", "GenAIExamples/AudioQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/AudioQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/AudioQnA/kubernetes/intel/README.md", "GenAIExamples/AudioQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/AudioQnA/ui/svelte/README.md", "GenAIExamples/ChatQnA/README.md", "GenAIExamples/ChatQnA/benchmark/performance/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/aipc/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/README_qdrant.md", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/how_to_validate_service.md", "GenAIExamples/ChatQnA/docker_compose/nvidia/gpu/README.md", "GenAIExamples/ChatQnA/kubernetes/intel/README.md", "GenAIExamples/ChatQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/ChatQnA/ui/react/README.md", "GenAIExamples/ChatQnA/ui/svelte/README.md", "GenAIExamples/CodeGen/README.md", "GenAIExamples/CodeGen/benchmark/accuracy/README.md", "GenAIExamples/CodeGen/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/CodeGen/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/CodeGen/kubernetes/intel/README.md", "GenAIExamples/CodeGen/kubernetes/intel/README_gmc.md", "GenAIExamples/CodeGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui.md", "GenAIExamples/CodeGen/ui/react/README.md", "GenAIExamples/CodeGen/ui/svelte/README.md", "GenAIExamples/CodeTrans/README.md", "GenAIExamples/CodeTrans/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/CodeTrans/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/CodeTrans/kubernetes/intel/README.md", "GenAIExamples/CodeTrans/kubernetes/intel/README_gmc.md", "GenAIExamples/CodeTrans/ui/svelte/README.md", "GenAIExamples/DocIndexRetriever/README.md", "GenAIExamples/DocIndexRetriever/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/DocIndexRetriever/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/DocSum/README.md", "GenAIExamples/DocSum/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/DocSum/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/DocSum/kubernetes/intel/README.md", "GenAIExamples/DocSum/kubernetes/intel/README_gmc.md", "GenAIExamples/DocSum/kubernetes/intel/cpu/xeon/manifest/ui/README.md", "GenAIExamples/DocSum/ui/react/README.md", "GenAIExamples/DocSum/ui/svelte/README.md", "GenAIExamples/FaqGen/README.md", "GenAIExamples/FaqGen/benchmark/accuracy/README.md", "GenAIExamples/FaqGen/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/FaqGen/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/FaqGen/kubernetes/intel/README.md", "GenAIExamples/FaqGen/kubernetes/intel/README_gmc.md", "GenAIExamples/FaqGen/kubernetes/intel/cpu/xeon/manifest/README_react_ui.md", "GenAIExamples/FaqGen/ui/react/README.md", "GenAIExamples/FaqGen/ui/svelte/README.md", "GenAIExamples/InstructionTuning/README.md", "GenAIExamples/InstructionTuning/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/InstructionTuning/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/LEGAL_INFORMATION.md", "GenAIExamples/MultimodalQnA/README.md", "GenAIExamples/MultimodalQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/ProductivitySuite/README.md", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/ProductivitySuite/docker_compose/intel/cpu/xeon/keycloak_setup_guide.md", "GenAIExamples/ProductivitySuite/kubernetes/intel/README.md", "GenAIExamples/ProductivitySuite/ui/react/README.md", "GenAIExamples/README.md", "GenAIExamples/RerankFinetuning/README.md", "GenAIExamples/RerankFinetuning/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/RerankFinetuning/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/SearchQnA/README.md", "GenAIExamples/SearchQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/SearchQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/SearchQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/SearchQnA/ui/svelte/README.md", "GenAIExamples/Translation/README.md", "GenAIExamples/Translation/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/Translation/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/Translation/kubernetes/intel/README.md", "GenAIExamples/Translation/kubernetes/intel/README_gmc.md", "GenAIExamples/Translation/ui/svelte/README.md", "GenAIExamples/VideoQnA/README.md", "GenAIExamples/VideoQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/VisualQnA/README.md", "GenAIExamples/VisualQnA/docker_compose/intel/cpu/xeon/README.md", "GenAIExamples/VisualQnA/docker_compose/intel/hpu/gaudi/README.md", "GenAIExamples/VisualQnA/kubernetes/intel/README.md", "GenAIExamples/VisualQnA/kubernetes/intel/README_gmc.md", "GenAIExamples/docker_images_list.md", "GenAIExamples/supported_examples.md", "GenAIInfra/DEVELOPMENT.md", "GenAIInfra/LEGAL_INFORMATION.md", "GenAIInfra/README.md", "GenAIInfra/RELEASE_BRANCHES.md", "GenAIInfra/authN-authZ/README.md", "GenAIInfra/authN-authZ/auth-apisix/README.md", "GenAIInfra/authN-authZ/auth-istio/README.md", "GenAIInfra/helm-charts/HPA.md", "GenAIInfra/helm-charts/README.md", "GenAIInfra/helm-charts/chatqna/README.md", "GenAIInfra/helm-charts/chatqna/troubleshooting.md", "GenAIInfra/helm-charts/codegen/README.md", "GenAIInfra/helm-charts/codetrans/README.md", "GenAIInfra/helm-charts/common/asr/README.md", "GenAIInfra/helm-charts/common/data-prep/README.md", "GenAIInfra/helm-charts/common/embedding-usvc/README.md", "GenAIInfra/helm-charts/common/guardrails-usvc/README.md", "GenAIInfra/helm-charts/common/llm-uservice/README.md", "GenAIInfra/helm-charts/common/redis-vector-db/README.md", "GenAIInfra/helm-charts/common/reranking-usvc/README.md", "GenAIInfra/helm-charts/common/retriever-usvc/README.md", "GenAIInfra/helm-charts/common/speecht5/README.md", "GenAIInfra/helm-charts/common/tei/README.md", "GenAIInfra/helm-charts/common/teirerank/README.md", "GenAIInfra/helm-charts/common/tgi/README.md", "GenAIInfra/helm-charts/common/tts/README.md", "GenAIInfra/helm-charts/common/vllm/README.md", "GenAIInfra/helm-charts/common/web-retriever/README.md", "GenAIInfra/helm-charts/common/whisper/README.md", "GenAIInfra/helm-charts/docsum/README.md", "GenAIInfra/kubernetes-addons/Intel-Gaudi-Base-Operator/README.md", "GenAIInfra/kubernetes-addons/Observability/README.md", "GenAIInfra/kubernetes-addons/README.md", "GenAIInfra/kubernetes-addons/memory-bandwidth-exporter/README.md", "GenAIInfra/microservices-connector/README.md", "GenAIInfra/microservices-connector/config/samples/ChatQnA/use_cases.md", "GenAIInfra/microservices-connector/helm/README.md", "GenAIInfra/microservices-connector/troubleshooting_guide.md", "GenAIInfra/microservices-connector/usage_guide.md", "GenAIInfra/proxy/README.md", "GenAIInfra/proxy/deployments/guardrails/README.md", "GenAIInfra/scripts/README.md", "GenAIInfra/scripts/nvidia/README.md", "GenAIInfra/scripts/ray/README.md", "README.md", "community/CODE_OF_CONDUCT.md", "community/CONTRIBUTING.md", "community/SECURITY.md", "community/TSC.rst", "community/charter.md", "community/codeowner.md", "community/index.rst", "community/rfcs.rst", "community/rfcs/24-05-16-GenAIExamples-001-Using_MicroService_to_implement_ChatQnA.md", "community/rfcs/24-05-16-OPEA-001-Overall-Design.md", "community/rfcs/24-05-24-OPEA-001-Code-Structure.md", "community/rfcs/24-06-21-OPEA-001-Guardrails-Gateway.md", "community/rfcs/24-08-02-OPEA-AIAvatarChatbot.md", "community/rfcs/24-08-07-OPEA-GenAIStudio.md", "community/rfcs/README.md", "deploy/index.rst", "developer-guides/OPEA_API.rst", "developer-guides/doc_guidelines.rst", "developer-guides/docbuild.rst", "developer-guides/graphviz.rst", "developer-guides/index.rst", "eval/index.rst", "examples/ChatQnA/ChatQnA_Guide.rst", "examples/ChatQnA/deploy/aipc.md", "examples/ChatQnA/deploy/gaudi.md", "examples/ChatQnA/deploy/index.rst", "examples/ChatQnA/deploy/nvidia.md", "examples/ChatQnA/deploy/xeon.md", "examples/index.rst", "faq.md", "framework/framework.md", "getting-started/README.md", "glossary.rst", "guide/installation/gmc_install/gmc_install.md", "guide/installation/k8s_install/README.md", "guide/installation/k8s_install/k8s_instal_aws_eks.md", "guide/installation/k8s_install/k8s_install_kubeadm.md", "guide/installation/k8s_install/k8s_install_kubespray.md", "index.rst", "introduction/index.rst", "microservices/index.rst", "release_notes/index.rst", "release_notes/v0.6.md", "release_notes/v0.7.md", "release_notes/v0.8.md", "release_notes/v0.9.md", "release_notes/v1.0.md", "roadmap/2024-2025.md", "roadmap/CICD.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 2, 3, 5, 9, 12, 32, 34, 37, 38, 40, 42, 45, 48, 51, 52, 57, 59, 65, 67, 70, 72, 73, 74, 78, 89, 92, 93, 94, 98, 100, 106, 107, 108, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 139, 142, 143, 144, 145, 146, 147, 151, 153, 154, 155, 163, 164, 166, 167, 168, 172, 175, 176, 180, 181, 182, 183, 184, 186, 187, 188, 189, 190, 191, 196, 197, 198, 199, 200, 202, 226, 227, 228, 229, 230, 236, 237, 238, 240, 241, 243, 244, 245, 248, 249, 250, 251, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 270, 273, 274], "0": [1, 2, 9, 22, 23, 32, 33, 34, 37, 38, 39, 41, 42, 44, 45, 48, 49, 50, 51, 52, 53, 57, 62, 63, 64, 66, 67, 68, 69, 70, 72, 73, 74, 77, 78, 80, 81, 84, 87, 89, 90, 91, 92, 94, 96, 97, 98, 99, 100, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 141, 143, 148, 150, 159, 160, 161, 162, 164, 172, 173, 174, 178, 179, 184, 185, 186, 187, 193, 197, 198, 199, 200, 201, 202, 203, 204, 209, 210, 218, 221, 223, 225, 226, 227, 228, 229, 230, 232, 234, 238, 241, 245, 250, 253, 255, 259, 260, 261, 263, 264, 267, 268, 270, 274, 278, 281, 282], "00": [94, 225], "000": 273, "0000": [115, 260, 263, 264], "000015000000000000002": 9, "000022500000000000005": 9, "00003375000000000001": 9, "00030903306": 115, "000a9": 254, "000ae": 254, "000b0": 254, "000b1": 254, "000b5": 254, "001": [41, 244, 251], "002": 253, "00227b8": 283, "0023064255": 253, "0025720573": 115, "0028842222": 253, "0049176104": 115, "00532a": 281, "006806653": 115, "009327292": 253, "0094f52": 283, "009c96": 281, "01": [45, 48, 50, 51, 52, 90, 96, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "012404448": 115, "0125": 253, "015a2b1": 282, "0160026": 115, "01886fe": 283, "01c1b75": 282, "01eed8": 280, "02": [77, 244], "020899": 280, "02122": 254, "021343587": 115, "02192": 254, "02261455": 115, "022785513": 115, "022948774": [115, 260, 261, 263, 264], "02295": 254, "02412e7": 283, "0246678": 115, "02714": 254, "02776986": 115, "0292355": 283, "029969815": 115, "02a1536": 282, "02b60b5": 283, "03": [45, 48, 50, 51, 77, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "032ddbc": 283, "033122733": 115, "0343a2f": 283, "034541": 281, "0355d705484a": 261, "035f39f": 283, "037477136": 115, "0379aeb": 283, "039014f": 282, "03999176": 115, "03t02": [109, 112, 113, 114, 116], "04": [194, 200, 234, 244, 251, 273, 274], "040d2b7": 282, "04385c9": 283, "04570737": 115, "0458443": 283, "047c479": 283, "04986c1": 282, "04d7f2": 280, "04ff8bf": 282, "05": 244, "050649878": 115, "051e0d68e263": 260, "0527": 98, "053251z": 115, "053279z": 115, "053352819z": 115, "053373989z": 115, "053385371z": 115, "055404a": 282, "0584b45": 282, "05c40b636239": 115, "05f9828": 283, "05t01": [115, 261, 263, 264], "05t05": [115, 261, 263, 264], "05t08": 260, "06": [115, 244, 261, 263, 264], "0611707": 283, "0614fc2": 282, "0629696": 283, "06356524": 115, "0657cb66df78": 261, "066555829z": 260, "06696c8": 283, "068527d": 282, "06c4484": 282, "06cb308": 282, "06d5a5cefc06cf9a9e0b5fa74a9f233c": [137, 138], "07": [77, 94, 223, 244], "07494c": 281, "075e84f": 282, "076bca3": 282, "076e81": 282, "07baa8f": 283, "08": [77, 94, 244], "0869029": 283, "08eb269": 282, "08f57fa": 282, "09": [109, 112, 113, 114, 116, 223, 260], "09a3196": 282, "0a3e006": 283, "0a6bad0": 282, "0ac732": 281, "0af532a": 283, "0bb0abb": 283, "0bb69ac": 283, "0bd8215": 282, "0c1dd04b31ab87a5468d65f98e33a9f6": [115, 260, 261, 263, 264], "0c39b7b": 282, "0d49244": 283, "0de5535": 283, "0dedc2": 280, "0e686efd33175ce0ebcf7e0ed7431673": 6, "0f2c2b1": 283, "0f5cef1": 283, "0m": 273, "0r": 283, "1": [10, 13, 16, 33, 37, 39, 48, 53, 62, 69, 77, 78, 80, 86, 89, 90, 91, 95, 96, 97, 98, 99, 100, 101, 107, 118, 121, 122, 130, 139, 148, 160, 172, 185, 194, 197, 198, 202, 209, 210, 212, 214, 215, 216, 219, 225, 226, 227, 228, 229, 230, 231, 232, 249, 253, 254, 255, 256, 260, 261, 263, 264, 268, 270, 272, 277, 281, 282, 283, 284], "10": [17, 18, 19, 41, 45, 48, 50, 51, 64, 88, 89, 91, 94, 97, 104, 105, 111, 112, 113, 115, 123, 124, 161, 162, 164, 166, 173, 174, 199, 209, 225, 227, 230, 249, 253, 255, 256, 260, 261, 263, 264, 267, 273, 274, 279], "100": [11, 13, 16, 17, 18, 49, 51, 52, 57, 88, 94, 97, 115, 200, 227, 253, 261, 263, 264], "1000": [17, 88, 122, 254], "100000": [88, 90], "1004d5b": 282, "100gb": 270, "100gi": 200, "100m": 94, "1024": [34, 42, 90, 94, 110, 114, 115, 202, 260, 261, 263, 264, 282], "102fcdd": 283, "103": 89, "104": [89, 115, 122, 261, 263, 264], "1043336": 282, "1048576": 110, "1072": 98, "10b908": 281, "10c81f1": 283, "10ee6dec7d37": 261, "10fe3c6": 283, "10gb": 117, "10k": [109, 111, 112, 114, 116, 164, 202, 260, 261, 263, 264, 283], "10m": 273, "11": [92, 93, 94, 115, 225, 226, 259, 260, 261, 263, 264, 283], "11074": 94, "111": [89, 255], "112": 89, "112295a": 282, "11434": [48, 111, 260], "1144fae": 283, "1161": 115, "116c": [161, 162], "119": 89, "119941e": 282, "11a56": 281, "12": [35, 89, 94, 115, 241, 253, 256, 260, 261, 263, 264, 273], "120": [89, 90], "1204": 148, "121": [273, 274], "123": [35, 122, 253], "1234": [213, 220], "123f3f8ebaf62f8dfc4542360e5103842408a6cdf630af159e2abc260201ba99": 273, "1249c4f": 283, "125": 223, "125m": [38, 218], "126": 89, "127": [22, 34, 48, 62, 63, 69, 70, 72, 74, 80, 89, 109, 110, 112, 114, 116, 121, 130, 131, 132, 139, 160, 172, 178, 179, 185, 198, 210, 268, 273, 274], "128": [9, 30, 42, 51, 52, 90, 110, 148, 188, 189, 253, 261], "1280": [97, 110], "128g": 264, "129254135z": 260, "12fd97a": 283, "13": [107, 118, 126, 134, 143, 175, 181, 189, 198, 227, 230, 270, 273], "133": [273, 274], "134": 274, "136": 89, "13b": [160, 162, 178, 179, 185, 191, 267, 284], "14": [94, 115, 279], "14621f8": 282, "15": [89, 109, 121, 130, 139, 168, 223, 227, 228, 254, 267], "150": [57, 184], "1500": [11, 13, 16, 17, 18], "1513998": 283, "1536": [78, 253], "1566047": 282, "15fc6f": 281, "15x": 17, "16": [89, 90, 94, 109, 115, 121, 130, 139, 162, 172, 185, 227, 244, 270, 273, 281, 282], "160752424z": 260, "161c338": 283, "1666666666666667": 98, "16686": 9, "1677652288": 253, "168": [109, 110, 112, 114, 115, 116, 121, 122, 130, 131, 132, 139, 160, 172, 178, 179, 185, 200, 261, 263, 264, 268, 273, 274], "16c5fd": 280, "17": [41, 44, 45, 50, 51, 52, 53, 104, 105, 111, 112, 113, 114, 115, 116, 118, 130, 131, 132, 139, 140, 149, 160, 164, 173, 174, 178, 197, 198, 209, 216, 227, 230, 260, 261, 263, 264, 270], "171816f0a789": 261, "172": 273, "1724317365": 80, "1724325093": 80, "1724915247": 29, "1724915249": 29, "1726269914": 261, "174bd43fa6b5": 115, "1785149": 283, "17b9676": 282, "17d35e3": 283, "18": [260, 267, 273], "18092f3": 283, "182183e": [282, 283], "184": 200, "18688": 9, "1874dfd": 283, "19": [77, 223, 260], "191061b": 283, "192": [109, 110, 112, 114, 116, 121, 122, 130, 131, 132, 139, 160, 172, 178, 179, 185, 200, 268, 273, 274], "194": 273, "19530": [11, 66], "199": 273, "19fe1a2": 283, "1_build_imag": 95, "1_stat": 110, "1a934af": 283, "1b48e5": 281, "1b50b73": 282, "1b654d": 280, "1b69897": 283, "1b7001": 280, "1c07a38": 282, "1c23d87": 282, "1d1e1f9": 283, "1d3a502": 283, "1d4664": 281, "1d742199fb1a86aa8c3f7bcd580d94af": [115, 260, 261, 263, 264], "1d761fa": 283, "1dd7d4": 281, "1e13031": 283, "1e47444": 283, "1e4c382": 283, "1eaf6b7": 282, "1eb6f5ad6f85": 261, "1ff81da": 282, "1g": [41, 43, 44, 45, 50, 112, 263, 264], "1gb": [214, 215, 216], "1i": 198, "1k": 110, "1m": [184, 284], "1st": [230, 250], "2": [1, 9, 13, 16, 29, 49, 53, 54, 77, 78, 87, 88, 89, 90, 91, 97, 98, 99, 103, 107, 118, 122, 143, 159, 191, 193, 198, 199, 202, 208, 210, 226, 227, 230, 248, 249, 253, 254, 255, 259, 260, 261, 263, 264, 266, 277, 281, 282, 283, 284], "20": [64, 66, 67, 68, 72, 74, 90, 95, 97, 184, 253, 254, 255], "200": [137, 138, 197, 223, 249, 253], "2001": 254, "2002": 98, "2004": 98, "2008": 254, "2014": 98, "2017": 98, "2023": [66, 67, 68, 69, 70, 71, 72, 73, 74, 109, 111, 112, 113, 114, 115, 116, 117, 118, 161, 162, 164, 197, 198, 201, 202, 212, 227, 230, 260, 261, 263, 264, 268, 270, 283], "2024": [1, 77, 87, 94, 95, 109, 112, 113, 114, 115, 116, 159, 173, 174, 193, 234, 241, 243, 249, 260, 261, 263, 264, 267, 275], "20240710_004105": 93, "2025": 243, "204128984z": 260, "2048": [34, 42, 51, 52, 90, 97, 114, 122, 253, 261], "2080": [216, 218], "2081": 214, "2082": 215, "2093558": 283, "2098b91": 282, "20dce6": 280, "20do": [57, 184], "20fc8ca": 282, "20i": [57, 184], "20person": [57, 184], "20th": 98, "20the": [57, 184], "21": [234, 244, 253, 255, 260], "211b560": 283, "21b7d1": 281, "21d": 202, "21e215c": 283, "21fab71": 282, "22": [194, 197, 198, 200, 234, 260, 273, 274], "2207503": 282, "221": [115, 261, 263, 264], "229472564z": 260, "22d012e": 283, "22d066a": 283, "23": [35, 89, 94, 98, 232], "2311": [109, 112, 113, 114, 116], "231884525z": 260, "232468605z": 260, "233": 94, "235": 273, "236": 166, "2360e5a": 283, "236381": 281, "239": 91, "2390920": 282, "23cc3ea": 283, "23m": 274, "24": [89, 100, 200, 244, 251, 260, 267, 273, 274, 275], "240587": 280, "244": 273, "2458e2": 281, "24a240f8ad1c": [263, 264], "24cae0db1a70": [263, 264], "24m": 274, "25": [254, 260, 274], "250": 254, "25174c0": 283, "2517e79": 283, "255": 94, "2556": 97, "256": [51, 52, 90, 97, 110, 121, 123, 124, 164, 261], "2560": 110, "2571": 98, "25m": 273, "26": [260, 273], "2620": 103, "262a6f6": 283, "264759d": 283, "267d828": 283, "267fb02": 283, "268d58": 281, "26d4ff": 281, "26d6ea": 280, "26ddcc": 280, "26dhl": 89, "26f9b16": 283, "26tg15": 273, "27": [98, 115, 194, 234, 260, 261, 263, 264], "27017": [8, 29, 60, 164], "2705e93": 283, "27210945c7c6c054fa7355bdd4cde818": [115, 260, 261, 263, 264], "273cb1d": 282, "2792e2": 281, "2794abd": 283, "27a01e": 282, "27a062": 281, "28": [94, 249, 260, 273], "284": 98, "284d85": 281, "2891cc6": 282, "28d9a5570246": 115, "28gdr": 89, "29": [110, 244, 251, 260, 273, 274], "290a74": 281, "2931147": 283, "295b818": 280, "29a7a43abcef": 261, "29de55": 280, "29fe569": 283, "2_start_retrieval_tool": 95, "2a2a93": 282, "2a2ff45": 283, "2a4860": 280, "2a53e25": 283, "2a6a29": 280, "2a6af64": 283, "2a91903": 283, "2b14c63": 282, "2b68323": 283, "2ba3516": 283, "2bf648c": 282, "2c2322e": 283, "2c48bc8": 283, "2ca56f3": 283, "2d17c9": 280, "2d28beb": 283, "2d5130f": 283, "2d6772": 281, "2dd69dc": 283, "2e41dcf": 283, "2e62ecc": 280, "2ef83fc": 283, "2f": 57, "2f03a3a": 283, "2f317d": 280, "2f4723": 280, "2f9397": 281, "2fa17d84605f": 115, "2fb070": 280, "2fbce3e": 283, "2fcbb0": 281, "2fdamo": 57, "2fexampl": 57, "2fgithub": 57, "2fmain": 57, "2fraw": 57, "2fsilence_girl": 57, "2fvideo": 57, "2m41": 230, "2m42": 230, "2m43": 230, "2m7": 273, "2nd": 230, "2wzhr": 89, "2xx": 9, "3": [2, 5, 9, 13, 16, 29, 48, 49, 54, 78, 88, 89, 90, 91, 93, 95, 96, 99, 103, 107, 118, 121, 126, 130, 134, 139, 143, 151, 166, 168, 175, 181, 189, 191, 198, 200, 201, 218, 221, 225, 226, 227, 228, 230, 253, 254, 255, 259, 260, 261, 263, 264, 270, 280, 281, 283, 284], "30": [56, 77, 89, 115, 241, 249, 261, 263, 264, 272], "300": [186, 187], "3000": [92, 223, 259], "3001": [104, 105, 172, 173, 174], "3002": [104, 105, 173, 174], "3003": [173, 174], "3004": [173, 174], "3005": [173, 174], "3006": [104, 105, 173, 174], "3007": [104, 105, 173, 174], "3008": [104, 105, 106, 172, 173, 174], "300gi": 200, "30789": 133, "308": 94, "309c2d": 280, "30d95b": 281, "31": [89, 115, 260, 261, 263, 264], "311": 98, "31234": 122, "313b9d14928a": 115, "314": 283, "315183296z": 260, "318": 98, "31m": [273, 274], "32": [34, 42, 45, 48, 51, 52, 89, 90, 112, 114, 198, 208, 218, 260, 261, 263, 264], "325236a01f9b": 115, "326a637": 283, "32856": 94, "32afb65": 283, "32gb": 270, "33": 260, "335362": 281, "3363a37": 282, "3367b76": 283, "337741889z": 260, "339": 273, "33b": 121, "33db504": 282, "33f37c": 281, "33f8329": 282, "34": [260, 273], "340f507": 283, "341f97a": 283, "343d614": 282, "35": [273, 274], "3505bd": 281, "353f3a5": 283, "354e62c703caac8c547b3061433ec5e8": [137, 138], "3563f5d": 283, "357": [115, 261, 263, 264], "358": [115, 261, 263, 264], "358dbd": 280, "35d": 110, "36": 94, "36000": 94, "365c0bd3c000": 260, "367459f6e65b": 261, "368c833": 282, "36fb9a9": 283, "37": 94, "37000000": [161, 162], "372d78c": 283, "3756cf": 281, "375ea7a": 283, "377dd2": 281, "379": [115, 261, 263, 264], "38": 261, "3800": 110, "383": 283, "384931": 281, "38abaab": 283, "38f646": 280, "39": [89, 94], "3913c7b": 282, "391c4a5": 283, "39539": 94, "397208": 281, "39860": 94, "39fb55e": 283, "3a": 57, "3a31295": 283, "3ac391a": 283, "3b5f62e": 282, "3b5fa9a722da": [263, 264], "3b70fb0": 283, "3c29fb4": 282, "3c5fc80": 283, "3c9e2aa": 282, "3ce387a": 283, "3ce3955": 283, "3d00a33": 283, "3d134d": 280, "3d139b": 281, "3d94844": 282, "3e548f3": 283, "3e5dd0": 281, "3e87c3b": 283, "3ec544": 280, "3f": [57, 184], "3f0ceaf": 283, "3f2e7b7": 283, "3f5cde": 280, "3ffcff4": 282, "3m": [118, 143, 225, 226, 227, 230, 248, 270, 284], "3m15": 273, "3m37": 230, "3rd": [238, 267], "4": [66, 68, 89, 90, 91, 94, 96, 97, 98, 107, 127, 144, 148, 153, 199, 216, 253, 254, 255, 260, 273, 279, 280, 281, 284], "40": [45, 51, 52, 64, 89, 225, 249, 254, 261], "400": [249, 281], "4000": 95, "401": 197, "402023z": [109, 112, 113, 114, 116], "4026": [161, 162], "403": 198, "4049c181da93": 261, "405": 253, "406bbc2": 283, "4096": [3, 97, 274], "409c723": 280, "40a2": [161, 162], "40b": 267, "40c1aa": 280, "40f1463": 282, "41": 98, "4112fd0": 283, "4125": 148, "412a0b0": 283, "4133757": 283, "4165c7d": 283, "417": 283, "419e5b": 281, "42": 162, "422b4b": 280, "4259240": 282, "425b423": 283, "42c8d5ec67e9": 261, "42cde68": 283, "4317": 9, "4318": 9, "4319660": 282, "43adcc6": 283, "43b2ae5": 283, "44000": 94, "445c9b1": 283, "45": [103, 115, 261, 263, 264], "45000": 94, "450efc": 281, "456": 35, "45768": 94, "45833": 94, "45cf553": 282, "46000": 94, "46af6f3": 282, "47": [89, 109, 112, 113, 114, 116, 260], "4712545": 282, "476a327": 283, "48": [89, 115], "48015a": 281, "484b69a": 283, "486023": 281, "488a1ca": 282, "48d4e53": 283, "49": 115, "491c2e2": 283, "4943e5f6cd80": [263, 264], "496": 283, "4969ec3aea02": 261, "497895": 281, "497ff61": 282, "4_launch_and_validate_ag": 95, "4a00": [161, 162], "4a51874": 283, "4a67d42": 282, "4a7b8f4": 282, "4b0bc26": 283, "4b5d85b": 283, "4bd7841": 283, "4c0afd": 280, "4c0f527": 283, "4c5a51": 281, "4c78f8c": 283, "4db9fb3": 283, "4df6438": 283, "4eee716": 283, "4f3be23": 282, "4f46a12": 283, "4f7fc39": 282, "4fa37e7": 282, "4fd3517": 282, "4fecd4": 280, "4k": 45, "4o": [13, 100, 191, 253, 284], "4th": [112, 113, 123, 140, 149, 161, 178, 186, 267], "4xckz": 230, "5": [2, 22, 26, 27, 30, 51, 52, 55, 56, 57, 61, 63, 66, 67, 68, 69, 80, 86, 89, 90, 91, 95, 96, 97, 99, 107, 109, 118, 121, 122, 143, 160, 186, 187, 199, 214, 215, 227, 249, 253, 255, 260, 261, 263, 264, 266, 273, 281, 282, 284], "50": [49, 94, 184, 227, 241, 249], "500": [11, 98, 223, 254], "5000": [200, 245], "501": 98, "50201424z": 260, "5025": 282, "5026": 282, "503": 223, "503a1a9": 282, "504228e": 283, "507": 98, "51": 202, "510913894z": 260, "512": [35, 64, 67, 90, 110, 161, 162, 184], "514a6d6": 283, "5159aac": 282, "516291108z": 260, "5173": [58, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 161, 172, 178, 179, 184, 186, 187, 201, 260, 261, 263, 264], "5174": [109, 112, 113, 114, 116, 123, 124, 140, 141, 149, 150, 164, 166, 167, 260, 261, 263, 264], "5175": 141, "52": [92, 259], "523": 249, "528": 282, "52a540d": 283, "53": [109, 112, 113, 114, 115, 116], "5432": [14, 70, 81], "5489d9b65d": 89, "54aa943": 283, "54b58d57cb": 230, "54c5dd5795": 230, "54cd66f": 282, "54eb7a": 281, "55": [89, 199, 223, 228], "5537b7f": 283, "555": 36, "5555": 36, "55555": [18, 19, 74, 85], "556030": 281, "558ea3b": 283, "55b457b": 282, "55d287d": 283, "56": [89, 115, 273], "560m": 216, "566cf93": 282, "568": 282, "56d7d5d": 283, "56daf95": 282, "5715": 164, "5735dd3": 282, "574847": 280, "574fecf": 283, "581687a2cc1a": 261, "584534136z": 260, "58502c5": 283, "587844d666": 230, "58e9972": 283, "59000c5": 283, "593458c": 283, "594268648z": 260, "595185": 280, "596b8f9f7d": 273, "597b3c": 280, "598484": 281, "599a58f": 283, "59c8dc5bff": 273, "59cb27": 281, "59ce505": 283, "59f756fb56": 230, "5a2b306": 283, "5a9c109": 282, "5ab27b6": 283, "5ac77f7": 282, "5b05f9": 281, "5b3053f": 283, "5ba2561": 282, "5bd8bda": 282, "5c0773": 280, "5c3a78144498": 261, "5c44f7d46": 230, "5c67204": 283, "5d0842": 281, "5d3950": 282, "5d9a855": 282, "5db065a9fdf9": 260, "5dcadf3": 282, "5deb383": 282, "5dedd04": 282, "5e232a": 281, "5f52a1": 281, "5fb4a38": 283, "5fcff459f5": 230, "5fde666": 283, "5ff67f4db7": 230, "5hr": 184, "5m": [57, 107, 110], "5m19": 273, "5m20": 273, "5th": 267, "5x": 17, "5z57n": 273, "6": [89, 91, 98, 107, 110, 121, 160, 185, 186, 187, 191, 249, 259, 261, 266, 273, 278], "60": [88, 89], "600": [17, 18], "6000": [2, 15, 21, 24, 25, 26, 27, 62, 97, 109, 111, 112, 114, 115, 116, 137, 138, 160, 161, 162, 164, 184, 207, 230, 245, 260, 261, 263, 264], "6001": [21, 62], "6005": 64, "6006": [9, 17, 109, 111, 112, 137, 161, 162, 164, 260, 264], "6007": [12, 13, 14, 16, 17, 18, 19, 97, 109, 110, 111, 112, 114, 115, 116, 137, 138, 160, 161, 162, 164, 184, 206, 230, 260, 261, 263, 264], "6009": 164, "6010": 11, "6012": [8, 60, 164], "6013": 8, "6014": 8, "6015": 164, "6016": 29, "602af5": 281, "6040": 113, "6041": 113, "6042": 113, "6043": 113, "6044": 113, "6045": 113, "6046": 113, "6047": 113, "6060": [63, 66, 69, 70, 71, 72, 74, 80, 86], "60cc0b0": 282, "60m": 90, "6151ac": 281, "615f0d": 281, "61795f": 281, "61b8fa9": 283, "61dba72": 282, "61ead4": 280, "62": [89, 94, 273], "6235a9": 281, "625899b": 282, "626d269": 283, "629033b": 282, "6296e9f": 282, "62ae64": 281, "62ca5bc": 282, "62dbb6d": 283, "63": [89, 273], "631d84": 281, "632a6634b06b": 260, "6333": [16, 71, 83, 113], "6334": [83, 113], "63406dc": 283, "6357": 35, "63650d0": 282, "6379": [12, 17, 30, 67, 72, 73, 84, 111, 115, 137, 138, 161, 162, 164, 206, 210, 212, 230, 260, 261, 263, 264], "64": [51, 52, 89, 90, 91, 104, 105, 106, 107, 114, 115, 116, 141, 150, 179, 261, 273], "640": 110, "6442127": 283, "6443": [273, 274], "64566dd669": 89, "64bfea9": 282, "64e042": 281, "64fd64475b": 89, "65536": [77, 110], "656dcc6": 282, "65a0a5b": 283, "65b04dc": 283, "65f5745579": 273, "66": [94, 273], "6600": 23, "6617e22": 283, "66445d4f71c7eff23d44f78d": 29, "665c46": 281, "6662d857a154": 260, "6674832": 282, "668620173180b591e1e0cd74": 8, "66cbbf3": 282, "6730b24": 283, "67394b8": 283, "675ea4a": 283, "676fb75667": 89, "678dc9f98c": 89, "6796ef": 281, "67df280": 282, "6839": 94, "68483c": 281, "68485cbf9c": 274, "684d3e9d204a": 261, "68a2011": 283, "68f7c5dcb9": 230, "68nnp": 273, "68tabl": [115, 260, 261, 263, 264], "69": [51, 52], "694": 283, "695934928z": [115, 261, 263, 264], "697123534z": [115, 261, 263, 264], "697148330z": [115, 261, 263, 264], "69db55dd76": 274, "69e1fb59e92c": 115, "69f9895": 282, "6a390da": 282, "6a679ba": 283, "6abbe40": 283, "6ac555c": 283, "6b": 88, "6b091c": 281, "6b617d6": 283, "6b76a9": 280, "6b7bec": 280, "6bb8a3": 280, "6bfe31": 281, "6c24078": 283, "6c36448": 283, "6ce6551": 283, "6d4b668": 283, "6d5984c657": 274, "6db408": 281, "6e2c28": 281, "6e31df": 281, "6e797f": 281, "6f3e54a": 283, "6f7a24": 283, "6fa87927d00c": 260, "7": [9, 49, 51, 52, 53, 67, 70, 72, 73, 81, 84, 89, 95, 98, 103, 118, 210, 225, 227, 255, 260, 261, 263, 264, 267, 273, 278], "7000": [66, 67, 68, 69, 70, 71, 72, 73, 74, 97, 109, 111, 112, 114, 115, 116, 137, 138, 160, 161, 162, 164, 184, 212, 230, 245, 260, 261, 263, 264], "70205e5": 282, "704ec92": 282, "7055": [75, 104, 105, 213, 217], "7066": [6, 103, 104, 105, 205, 220], "707361z": [115, 261, 263, 264], "707379z": [115, 261, 263, 264], "7073ac": 280, "707509646z": [115, 261, 263, 264], "707539740z": [115, 261, 263, 264], "7077": [86, 219], "7079049": 282, "70b": [3, 45, 50, 51, 52, 95, 99, 100, 267, 284], "70c23d": 280, "71": [89, 94], "71363a6": 282, "71394960963e": 223, "71637c0": 282, "71857f5": 283, "7185d6b": 282, "7191": 148, "7195121951219512": 122, "72": [89, 94], "72123b2": 283, "7287caa": 282, "72a2553": 282, "73": 282, "7318fb8": 283, "739788a": 282, "73b5b65": 282, "74": 32, "7406bf": 280, "74084469aa33": 115, "7474": [13, 42, 68], "74b5684cbc": 89, "75": 94, "755": 273, "758432": 280, "758914": 280, "758d236": 283, "75d6bc9": 282, "75eff6": 280, "76": 273, "7600db4": 282, "761f7e0": 282, "7664578": 283, "767a14c": 282, "768": [66, 68, 69, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 164, 173, 174, 212, 219, 260, 261, 263, 264, 282], "7686cfa": 283, "7687": [13, 42, 68], "76877c1": 282, "76c4974c85": 273, "76f75df574": 273, "7719755": 282, "7749ce3": 282, "775bd5dc49": 230, "777": 200, "7777": [130, 131, 132, 133, 204], "7778": [121, 122, 123, 124, 125, 151, 164, 203], "7779": 151, "779e526": 282, "77bb66c": 283, "77e0e7b": 282, "78": 3, "7890": 35, "78f9c748cb": [226, 270], "79": 89, "79276cf45a47": [263, 264], "795": 94, "79e947": 283, "79f54548f4": 230, "7a0fca7": 283, "7a21d09": 283, "7a67298": 282, "7aee7e4": 282, "7b": [2, 3, 30, 42, 45, 46, 47, 50, 51, 52, 53, 54, 57, 88, 90, 91, 97, 104, 105, 109, 110, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 134, 139, 140, 141, 143, 156, 160, 161, 164, 173, 174, 185, 186, 187, 191, 200, 201, 203, 204, 218, 221, 227, 230, 261, 263, 264, 267, 282, 284], "7b20273": 282, "7b2194f": 283, "7b719de": 282, "7bbbdaf": 282, "7c13f2c": 283, "7c7c648846": 230, "7c9f77b": 282, "7d2cd6b": 283, "7d3d13": 281, "7d9265f": 283, "7dabdf": 281, "7dbad0": 280, "7dd9952": 282, "7e1a2e5": 283, "7e40475": 283, "7eaab93": 283, "7ebe78": 281, "7f60cf5620c9": [11, 17, 18], "7f6c5f4796": 230, "7f7037a75f8b": 261, "7f89797": 283, "7fd4d88d85": 89, "7ff03b": 281, "7ffaf24": 282, "7gsdc": 273, "7m31": [273, 274], "7rfrk": 89, "8": [51, 52, 88, 89, 90, 91, 94, 107, 110, 118, 126, 134, 143, 161, 162, 175, 181, 184, 189, 198, 227, 230, 249, 253, 254, 255, 260, 261, 263, 264, 270, 273, 278], "80": [3, 9, 17, 26, 27, 34, 41, 42, 43, 44, 45, 50, 58, 63, 69, 70, 72, 74, 86, 89, 94, 97, 112, 113, 114, 115, 116, 123, 124, 130, 131, 132, 140, 141, 149, 150, 164, 166, 178, 179, 184, 186, 187, 214, 215, 216, 218, 223, 230, 232, 254, 260, 261, 263, 264], "8000": [2, 11, 21, 22, 61, 62, 63, 64, 77, 97, 100, 109, 111, 112, 114, 115, 116, 137, 138, 164, 184, 211, 230, 245, 255, 260, 261, 263, 264], "80000_doc": [91, 97], "8001": [67, 72, 73, 84, 115, 161, 184, 210, 260, 261, 263, 264], "8005": [114, 261], "8006": [53, 114], "8007": [114, 261], "8008": [11, 13, 16, 17, 41, 43, 44, 45, 50, 51, 52, 112, 114, 115, 116, 130, 131, 132, 137, 138, 139, 140, 141, 149, 150, 178, 179, 229, 261, 263, 264, 282], "8015": [30, 156, 157, 158, 169, 170, 171], "8028": [121, 123, 124, 164], "8060": 42, "8080": [3, 23, 42, 100, 107, 118, 143, 164, 165, 227, 230, 232, 260, 270, 274], "8082": 148, "8085": 95, "8088": [34, 261], "8090": [26, 27, 97, 114, 115, 116, 138, 261, 263], "8092": 3, "80da5a": 281, "80e3e2a": 282, "81": [94, 115, 261, 263, 264], "81060ab": 282, "812c85c": 283, "814164d": 283, "8192": [35, 253], "8206a8c": 283, "824a7e2": 283, "82c1654": 282, "83": 227, "831463": 281, "8325d5d": 283, "833": 115, "833dcec": 282, "8369fbf": 283, "83712b9": 282, "8399": [55, 161, 162, 186, 187], "83ad9c": 281, "83fc1a": 281, "84": 273, "8446744073709552e": 223, "846c89f79f": 230, "849cac9": 283, "84a781a": 283, "84a7e57": 283, "84c98dd9b7": 89, "84f02cf2a904": 261, "852437z": [115, 261, 263, 264], "852525522z": [115, 261, 263, 264], "85aef83": 282, "85fb984fb9": 89, "862641152e": 223, "86412c": 280, "8666": [69, 80], "867759z": [115, 261, 263, 264], "867833811z": [115, 261, 263, 264], "867e9d7": 282, "868103b": 282, "8696": [161, 162], "86dd739": 282, "87": [89, 103], "872e93": 283, "87617e7": 282, "876b7a": 281, "876ca5": 281, "87905ad": 282, "87e51d5": 283, "88": 89, "8808": [9, 63, 111, 112, 114, 115, 116, 137, 138, 164, 260, 261, 263, 264], "88399dbc9e43": 115, "883c8d": 281, "887ca75": 283, "88829c9": 283, "8888": [58, 94, 97, 109, 111, 112, 114, 115, 116, 117, 139, 140, 141, 142, 149, 150, 161, 162, 164, 178, 179, 180, 184, 186, 187, 188, 198, 201, 221, 245, 260, 261, 263, 264, 268], "8889": [3, 101, 137, 138, 164], "8890": 164, "8891": 89, "88b3c1": 281, "88caf0": 281, "88eeb0d": 282, "88fde62": 283, "88pkk": 273, "89": 94, "8912": 113, "89197e5": 283, "895471763z": 260, "8964": 148, "89aa5a": 280, "89c825": 281, "89ddec": 281, "8a11413": 283, "8a6079d": 282, "8a62bac": 282, "8a670": 280, "8a85364": 282, "8aa1e6": 281, "8ad7f3": 281, "8adbcc": 283, "8b": [34, 45, 49, 50, 51, 52, 149, 150, 151, 191, 208, 261, 282, 284], "8b226edcd9db": 260, "8b6094": 281, "8b6486": 280, "8b9dcdd": 282, "8ba2": [161, 162], "8bcb9d469": 228, "8bdb598": 282, "8c384e0": 282, "8c40204": 283, "8c4a25": 281, "8c7461df": [161, 162], "8c78cde9f588": 261, "8c7eb1b": 282, "8d304ac": 283, "8d4209": 281, "8d86fff": 283, "8e3f553": 283, "8eb8b6a": 282, "8edda1c": 283, "8f0f2b0": 282, "8fbh8": 230, "8fcf0a": 280, "8ffc3b": 281, "8x22b": 284, "8x7b": [97, 148, 284], "8zmhk": 274, "9": [49, 57, 89, 94, 100, 110, 115, 184, 195, 227, 230, 255, 257, 261, 278, 283], "90": 94, "9000": [2, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 57, 109, 111, 112, 114, 115, 116, 123, 124, 131, 132, 140, 141, 148, 149, 150, 164, 178, 179, 184, 209, 230, 245, 260, 261, 263, 264], "9001": 164, "900178": 280, "9002": 164, "9003": 164, "9006": [54, 88], "9007212": 283, "9009": [57, 92, 112, 164, 184, 259, 263, 264], "9075": 33, "907dc19": 283, "9080": 36, "9085": 37, "9088": [75, 217], "9090": [3, 34, 39, 92, 100, 114, 208, 259, 261], "9091": [9, 38], "9092": 32, "9095": 100, "9099": [6, 205], "90cc44f": 283, "90e367": 282, "91": 273, "9100": 225, "9107af9": 283, "911": [273, 274], "912": [273, 274], "91d825c": 282, "92": 95, "9216768e": 223, "923c1f3": 283, "923cf69": 282, "9277fe6": 282, "92c4b5": 281, "933c3d3": 283, "9367a9": 281, "9368": 40, "9369": 40, "939502d": 282, "9397522": 282, "9399": [12, 55, 56, 160, 161, 162, 186, 187], "9411": 9, "945b9e4": 282, "947936e": 283, "947cbe3": 282, "9480afc": [282, 283], "94e807": 281, "94eb60f": 283, "95": [45, 48, 50, 51, 52, 89, 94, 96, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "953e78": 280, "955159": 281, "9580298": 282, "959581881z": 115, "959583925z": 115, "959585811z": 115, "959587629z": 115, "959589733z": 115, "959591795z": 115, "959593607z": 115, "959595769z": 115, "959597800z": 115, "959599622z": 115, "959601665z": 115, "95b967c9d": 230, "95c13d": 281, "96": [89, 166], "960cf38": 280, "960f66c": 283, "961abb": 280, "963755": 281, "9657f7b": 282, "967fdd": 281, "9681": 148, "96cd929": 283, "96d5cd9": 283, "97": 38, "97da49": 281, "97fdf54": 282, "98": 94, "987870f": 283, "98c62a0": 283, "99": 94, "993688a": 283, "993695854z": 260, "994250c": 283, "995a62c": 283, "9988041": [115, 260, 261, 263, 264], "9998cd7": 282, "9999": 245, "99be1bd": 283, "99eb6a": 280, "9a1af76": 283, "9a2234359fe0": [161, 162], "9aaaafuleqvr42mp8": [55, 56, 161, 162, 186, 187], "9ab8d": 280, "9b0edf2": 282, "9b38302": 283, "9b5def": 281, "9b658f": 281, "9b8798a": 282, "9b973a": 281, "9c0d2a2553e8": [263, 264], "9c90eb": 281, "9c97fa": 281, "9cc6ca": 281, "9cf1d88": 283, "9d1465": 281, "9dbe550": 282, "9de3c7": 280, "9def61": 281, "9e15ef": 281, "9e27a0": 281, "9ecc5c": 281, "9fc5": [161, 162], "9gi": 197, "9mwvk": 230, "9rc": 195, "A": [2, 30, 42, 55, 56, 89, 92, 93, 98, 109, 121, 130, 139, 172, 190, 191, 229, 230, 232, 236, 237, 238, 241, 245, 246, 248, 249, 250, 253, 254, 259, 266, 270, 272, 273, 274, 279], "And": [51, 52, 53, 73, 95, 109, 110, 198, 199, 225, 254, 255, 270, 274], "As": [11, 13, 16, 17, 67, 70, 72, 73, 74, 89, 95, 141, 150, 232, 240, 248, 254, 255, 260, 261, 263, 264, 266, 267], "At": [96, 238, 241, 255, 266, 267], "Be": [249, 254], "Being": 237, "But": [202, 230, 245], "By": [2, 9, 32, 38, 44, 51, 52, 80, 89, 90, 95, 109, 110, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 133, 134, 139, 147, 160, 161, 162, 164, 166, 172, 178, 179, 183, 184, 185, 186, 187, 191, 196, 197, 199, 200, 214, 215, 216, 218, 239, 245, 246, 250, 254, 255, 259, 260, 261, 263, 264, 267, 273, 274, 276], "For": [2, 3, 7, 9, 10, 12, 13, 17, 18, 19, 20, 23, 25, 26, 27, 28, 30, 34, 35, 38, 45, 50, 51, 52, 53, 57, 58, 59, 64, 65, 76, 80, 88, 89, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 103, 107, 109, 110, 111, 112, 113, 114, 115, 118, 122, 123, 124, 131, 140, 149, 160, 161, 166, 168, 178, 179, 183, 185, 186, 192, 194, 222, 227, 234, 237, 238, 244, 251, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 283], "If": [1, 3, 5, 6, 11, 13, 16, 17, 29, 30, 34, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 57, 58, 63, 69, 80, 87, 90, 91, 92, 93, 96, 97, 109, 111, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 126, 130, 131, 132, 134, 139, 140, 141, 143, 149, 150, 151, 159, 160, 164, 168, 172, 175, 178, 179, 181, 184, 185, 186, 187, 189, 193, 198, 199, 200, 201, 202, 203, 214, 215, 216, 218, 223, 225, 228, 230, 232, 234, 238, 253, 254, 255, 260, 261, 263, 264, 267, 268, 273, 274], "In": [12, 25, 33, 34, 36, 37, 39, 43, 44, 45, 46, 47, 49, 50, 56, 58, 61, 63, 74, 80, 89, 92, 95, 100, 101, 109, 110, 112, 113, 114, 115, 116, 121, 123, 124, 126, 134, 139, 143, 147, 160, 166, 175, 181, 184, 189, 191, 195, 198, 202, 225, 229, 231, 232, 241, 245, 250, 254, 255, 259, 260, 261, 263, 264, 267, 268, 272, 273, 274], "It": [0, 2, 3, 7, 22, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 65, 67, 70, 72, 73, 74, 78, 88, 90, 91, 96, 97, 98, 102, 107, 109, 110, 112, 114, 115, 116, 118, 122, 143, 182, 183, 184, 190, 191, 194, 196, 198, 200, 225, 226, 227, 230, 238, 241, 245, 246, 253, 254, 255, 260, 261, 263, 264, 266, 267, 268, 270, 273, 276], "Its": 94, "NO": 115, "NOT": [115, 187, 260, 261, 263, 264], "No": [5, 9, 12, 230, 237, 254, 255, 282], "Not": [168, 250], "ON": [51, 52], "ONE": 261, "OR": 223, "Of": 198, "On": [195, 198, 243, 249, 254, 259, 273, 284], "One": [225, 266, 267], "Or": 112, "Such": [121, 253, 267], "That": [89, 99, 199, 254, 255], "The": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 16, 17, 20, 23, 24, 25, 28, 29, 31, 33, 34, 35, 36, 42, 45, 50, 51, 52, 53, 58, 59, 60, 61, 63, 64, 65, 67, 70, 72, 73, 74, 76, 80, 86, 89, 90, 91, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 153, 155, 157, 158, 160, 161, 162, 164, 165, 166, 167, 170, 171, 172, 176, 177, 178, 179, 180, 183, 184, 185, 186, 187, 190, 191, 194, 195, 197, 198, 200, 201, 202, 203, 204, 208, 210, 214, 215, 216, 218, 221, 223, 225, 226, 227, 229, 230, 231, 232, 234, 236, 237, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 256, 259, 260, 261, 263, 264, 266, 267, 268, 270, 272, 274, 276, 281], "Then": [9, 11, 13, 14, 17, 23, 26, 27, 51, 52, 53, 64, 68, 95, 100, 104, 105, 111, 112, 113, 114, 116, 117, 121, 123, 124, 125, 131, 132, 133, 140, 141, 142, 149, 150, 161, 162, 173, 174, 178, 179, 180, 184, 186, 187, 188, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 255, 259, 273, 274], "There": [115, 123, 124, 184, 194, 195, 200, 225, 226, 227, 238, 248, 254, 260, 261, 263, 264, 266, 267, 272, 274], "These": [9, 34, 92, 98, 107, 109, 113, 118, 136, 137, 138, 139, 140, 143, 149, 161, 178, 186, 197, 198, 200, 202, 222, 242, 249, 254, 255, 256, 259, 266, 267, 273, 276], "To": [2, 3, 6, 9, 10, 11, 12, 13, 14, 17, 34, 43, 44, 45, 46, 47, 50, 51, 52, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 77, 86, 91, 92, 94, 95, 97, 100, 102, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 130, 131, 133, 139, 140, 141, 142, 149, 150, 160, 161, 162, 164, 166, 172, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 190, 192, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 228, 229, 230, 232, 241, 249, 252, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 283], "Will": [178, 179], "With": [34, 198, 250, 254, 267], "_": [66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 198, 212, 219, 238, 254, 260, 261, 263, 264], "__init__": [2, 238, 245], "__main__": 245, "__name__": [199, 245], "__pack": 254, "__torch_function__": 115, "_appli": 115, "_build": 255, "_doc_guidelin": 254, "_hypervisor": 254, "_k_object": 254, "_my": 254, "_on_": 238, "_run": 91, "_static": 255, "_templat": 255, "a00e36": 280, "a072441": 282, "a09395": 283, "a0b94b": 280, "a18404": 283, "a1d6d70": 282, "a234db": 282, "a270726": 282, "a2745b2": 283, "a2dc96": 281, "a339a87": 283, "a39f23a": 282, "a3a9": [161, 162], "a3da7c1": 283, "a3fa0d6": 283, "a4398b0": [282, 283], "a456bf": 281, "a54ffd2": 282, "a56a847": 282, "a58ca4": 280, "a5eb14": 280, "a5ed223": 282, "a61e434": 282, "a6385bc": 282, "a672569": 283, "a6fd418": 283, "a76c90f": 282, "a8244c4": 283, "a851abf": 282, "a8a46bc": 283, "a924579": 283, "a98561": 281, "a9b087f": 283, "aa2730a": 282, "ab2e5eb73a29": [161, 162], "ab53e9": 281, "ab5c8d": 281, "ab8ebc4": 282, "ab98795": 282, "abc02e1": 282, "abdelhalem": [236, 240], "abid": 241, "abil": [3, 97, 115, 119, 120, 164, 167, 176, 191, 238, 241, 245, 246, 248, 263, 264, 267, 274], "abl": [3, 6, 7, 28, 59, 89, 95, 108, 112, 114, 116, 161, 162, 164, 167, 182, 198, 248, 249, 259, 260, 261, 263, 264, 267], "about": [2, 8, 29, 32, 34, 53, 55, 56, 57, 60, 89, 112, 113, 115, 123, 124, 131, 140, 149, 161, 168, 178, 185, 186, 198, 202, 214, 215, 216, 229, 237, 238, 242, 243, 244, 248, 254, 255, 256, 259, 260, 261, 263, 264, 267, 272, 275, 283], "abov": [29, 48, 50, 51, 52, 58, 60, 89, 107, 112, 118, 123, 124, 143, 164, 166, 184, 194, 197, 198, 199, 200, 225, 227, 230, 249, 254, 255, 256, 260, 261, 263, 264, 267, 270, 273, 274], "abstract": [2, 245, 246, 267, 276], "abus": [237, 253], "ac324a9": 282, "ac34860": 283, "ac3909d": 282, "ac4a777": 282, "ac52f79": 283, "ac89855": 282, "academ": 88, "acbaaf8": 282, "acc": 283, "acc_tun": 91, "acc_tuning_config": 91, "acceler": [22, 51, 52, 53, 89, 99, 107, 118, 121, 160, 172, 227, 248, 262, 266, 267], "accept": [8, 12, 29, 51, 52, 53, 55, 56, 57, 60, 64, 80, 164, 184, 190, 232, 237, 244, 253, 267], "access": [2, 9, 25, 33, 36, 37, 39, 49, 51, 52, 53, 56, 74, 89, 92, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 121, 123, 124, 125, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 147, 149, 150, 161, 164, 165, 168, 172, 178, 179, 180, 184, 185, 186, 187, 188, 191, 196, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 227, 230, 232, 243, 245, 246, 248, 250, 253, 259, 260, 261, 263, 264, 267, 268, 270, 273, 274, 282, 283], "access_token": [197, 198], "accessmod": [197, 200], "accessurl": [107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 227, 230, 270], "accompani": [1, 87, 159, 193, 241], "accord": [20, 23, 24, 45, 50, 51, 109, 111, 112, 113, 114, 116, 119, 120, 123, 124, 151, 160, 164, 167, 185, 196, 198, 241, 245, 260, 261, 263, 264, 268, 283], "accordingli": [198, 199, 226, 270, 273], "account": [45, 95, 98, 112, 113, 123, 131, 140, 149, 161, 178, 186, 237, 241, 254, 255, 260, 261, 263, 264, 267, 272], "account_id": 272, "accru": [115, 260, 261, 263, 264], "accur": [65, 67, 70, 72, 73, 74, 172, 190, 191, 249, 259], "accuraci": [61, 63, 74, 88, 97, 109, 123, 124, 168, 191, 238, 244, 246, 258, 265, 267, 281, 282, 283], "acdd712": 282, "achiev": [2, 4, 57, 74, 98, 115, 168, 202, 245, 250, 260, 261, 263, 264, 266, 267, 283], "acknowledg": 241, "aclweb": 98, "acquir": 115, "acrn": [255, 256], "acrnprob": 256, "across": [53, 74, 95, 97, 98, 110, 121, 130, 147, 168, 177, 198, 200, 236, 245, 253, 254, 259, 266, 267, 276], "act": [2, 3, 107, 115, 118, 123, 124, 143, 190, 198, 227, 237, 245, 246, 263, 264, 267, 276], "action": [3, 195, 198, 232, 237, 238, 241, 272, 282, 283], "activ": [34, 90, 93, 110, 191, 202, 225, 267, 274, 279], "actual": [20, 23, 24, 25, 45, 50, 111, 113, 161, 162, 164, 184, 186, 199, 267], "acycl": [123, 124, 253], "ad": [2, 7, 80, 89, 92, 97, 98, 102, 117, 168, 191, 197, 199, 226, 227, 238, 245, 247, 249, 250, 253, 254, 255, 259, 270, 273, 274, 279, 280, 281, 282, 283], "ad0bb7c": 282, "ad27729caf68": 261, "ad8ca88": 282, "ada": 253, "adapt": [30, 97, 196, 199, 237, 238, 258, 280, 281, 282], "adb157f": 283, "add": [2, 3, 6, 9, 30, 32, 34, 38, 40, 42, 45, 46, 47, 48, 55, 58, 63, 75, 80, 89, 91, 92, 97, 100, 102, 110, 111, 112, 113, 114, 116, 117, 137, 138, 158, 164, 167, 171, 184, 194, 197, 198, 199, 200, 223, 225, 238, 245, 248, 249, 250, 252, 254, 255, 259, 260, 261, 263, 264, 266, 267, 273, 279, 280, 281, 282, 283], "add761b504bc": 260, "add_api_rout": 245, "add_remote_servic": 2, "add_rout": 245, "adddiiton": 259, "addit": [25, 30, 31, 33, 36, 37, 39, 49, 56, 95, 98, 100, 107, 118, 123, 124, 143, 225, 227, 231, 241, 245, 247, 250, 254, 259, 267, 281, 283], "addition": [2, 95, 191, 245, 246, 260, 261, 263, 264, 266, 267], "additional_no_proxi": 274, "addon": [194, 223, 242, 247, 255, 273, 274], "addr": [137, 138], "address": [0, 30, 35, 45, 94, 98, 111, 112, 113, 114, 123, 124, 140, 141, 149, 150, 151, 160, 161, 162, 164, 184, 186, 187, 191, 197, 198, 201, 203, 204, 221, 223, 225, 237, 245, 255, 259, 260, 261, 263, 264, 267, 273, 274, 282, 283], "adher": [9, 45, 156, 238], "adjust": [79, 91, 123, 124, 226, 238, 241, 245, 270, 281], "admin": [92, 165, 197, 198, 223, 259, 273, 274], "administr": 273, "adminpassword": 197, "adminus": 197, "adopt": [35, 109, 136, 137, 138, 168, 196, 241, 245, 249, 259, 265, 266, 267, 276, 280, 281, 283], "adp": 284, "advanc": [3, 20, 23, 24, 51, 52, 53, 86, 111, 113, 123, 124, 140, 141, 149, 150, 161, 162, 163, 164, 184, 186, 187, 237, 250, 267], "advanced_use_cas": 226, "advantag": [130, 172, 245, 256, 266], "advic": 94, "advis": [115, 122, 261, 263, 264, 267], "advisori": [240, 241], "ae71ee": 283, "aebc23f": 283, "aed70d": 280, "aeef78": 281, "af2d0f": 281, "af47b3c": 282, "af4e0f8": 283, "af9e1b6": 283, "afc3341": 283, "afcb3a": 280, "affect": [198, 230, 237, 240, 241, 283], "affin": [199, 273], "aforement": [140, 149, 178, 179], "after": [5, 11, 12, 17, 18, 19, 30, 90, 92, 94, 95, 112, 113, 114, 115, 116, 119, 120, 123, 124, 127, 131, 132, 140, 144, 149, 153, 156, 157, 158, 161, 164, 166, 167, 169, 170, 171, 174, 176, 178, 184, 186, 187, 192, 195, 198, 199, 202, 205, 206, 207, 208, 209, 211, 212, 217, 219, 228, 229, 232, 238, 250, 253, 254, 255, 261, 263, 264, 267, 272, 273, 274, 282, 283], "ag": [107, 110, 118, 143, 202, 225, 226, 227, 228, 230, 237, 254, 270, 273, 274], "again": [3, 186, 187, 232, 255], "against": [65, 67, 70, 72, 73, 74, 115, 122, 136, 137, 138, 260, 261, 263, 264, 266, 267], "agent": [4, 42, 190, 191, 238, 242, 253, 258, 265, 267, 281, 282, 283, 284], "agent_ev": 95, "agent_llm": 42, "agentqna": [95, 100, 242, 282, 283], "aggreg": [94, 95, 100, 183, 267], "aggress": [38, 237], "ago": [115, 260, 261, 263, 264], "agre": [238, 239], "agreement": [241, 267], "ai": [1, 3, 11, 17, 18, 32, 34, 35, 38, 77, 78, 87, 88, 89, 93, 99, 102, 103, 114, 119, 121, 137, 138, 159, 160, 164, 167, 172, 191, 193, 196, 200, 223, 232, 236, 239, 240, 241, 245, 246, 248, 249, 250, 259, 262, 265, 275, 276, 277, 283], "aiavatarchatbot": 244, "aicrowd": 100, "aid": [121, 241], "aieffici": [137, 138], "aim": [10, 74, 110, 241, 245, 249, 250, 260, 261, 263, 264, 267], "aio": 280, "aiohttp": 121, "aipc": [48, 265, 281], "aishwarya": 282, "aka": 267, "akin": [2, 172, 245, 246], "al": 98, "ala": 255, "alb": [20, 23, 24], "albert": 284, "album": 100, "alert": [259, 283], "alexsin368": 249, "algorithm": [20, 23, 24, 98, 115, 172, 260, 261, 263, 264, 266, 267], "align": [39, 64, 191, 200, 237, 250, 254, 256, 281, 282, 283], "aliv": [77, 137, 138], "all": [2, 3, 6, 8, 9, 11, 14, 17, 29, 30, 34, 40, 42, 46, 47, 48, 51, 52, 53, 55, 60, 75, 80, 89, 91, 95, 97, 98, 102, 106, 107, 109, 110, 115, 117, 118, 121, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 157, 158, 166, 168, 170, 171, 172, 174, 178, 179, 180, 183, 185, 188, 190, 191, 195, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 222, 225, 227, 228, 229, 230, 232, 237, 239, 240, 241, 243, 244, 245, 248, 249, 250, 251, 253, 254, 255, 256, 265, 266, 267, 270, 272, 273, 274, 276, 277, 281, 282, 283, 284], "allevi": [34, 135], "allianc": 267, "alloc": [89, 109, 121, 130, 139, 172, 184, 246, 250, 258, 282], "allocatorprior": 89, "allocatortopologybalanc": 89, "allow": [2, 20, 23, 24, 25, 32, 33, 36, 37, 38, 39, 45, 48, 49, 51, 52, 56, 69, 74, 80, 88, 89, 91, 99, 107, 109, 110, 112, 113, 115, 118, 119, 123, 131, 136, 137, 138, 140, 143, 149, 161, 164, 167, 178, 186, 190, 198, 226, 227, 232, 237, 238, 241, 245, 246, 250, 254, 259, 260, 261, 263, 264, 267, 270, 276, 277, 281, 282], "allow_code_execut": [88, 122], "allud": 267, "alma": [178, 179, 191], "alon": [254, 255], "along": [95, 161, 162, 201, 203, 204, 221, 243, 254, 256, 260, 261, 263, 264, 267], "alpaca_data": [30, 156], "alphabet": 254, "alphanumer": 35, "alreadi": [42, 45, 51, 52, 69, 80, 89, 107, 112, 113, 115, 118, 123, 126, 131, 134, 140, 143, 149, 161, 175, 178, 181, 186, 189, 198, 201, 203, 204, 214, 215, 216, 218, 221, 227, 229, 238, 255, 272, 274], "also": [0, 6, 9, 17, 69, 74, 89, 90, 92, 95, 96, 97, 102, 106, 107, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 130, 131, 132, 133, 139, 140, 141, 142, 143, 149, 150, 151, 160, 161, 162, 164, 167, 168, 172, 173, 174, 175, 176, 178, 179, 180, 184, 185, 188, 194, 195, 196, 198, 199, 200, 225, 226, 227, 230, 231, 232, 234, 237, 238, 241, 243, 248, 249, 250, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 272, 274], "alt": 254, "alter": [253, 254], "altern": [6, 75, 89, 107, 118, 125, 194, 199, 227, 238, 241, 244, 249, 250, 253, 259, 266, 272, 273], "alwai": [17, 26, 27, 63, 69, 70, 72, 74, 86, 89, 91, 98, 112, 114, 116, 123, 124, 140, 149, 150, 243, 253, 260, 261, 263, 264, 266, 283], "am": 253, "amazon": [112, 113, 140, 149, 161, 178, 186, 272], "amazonaw": 272, "amazonecr": 272, "amd": [238, 240], "amd64": [12, 92, 225, 259, 273], "amd_gpu": 238, "amend": 238, "america": 99, "among": [53, 64, 190, 226, 267, 268], "amount": [89, 115, 147, 223, 238, 260, 261, 263, 264], "amr": [236, 240], "amx": 248, "an": [2, 3, 5, 6, 9, 11, 17, 18, 22, 23, 25, 30, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 63, 65, 67, 69, 70, 72, 73, 74, 75, 80, 89, 91, 92, 94, 95, 98, 99, 101, 102, 103, 107, 109, 112, 113, 114, 115, 116, 118, 121, 122, 124, 125, 132, 140, 141, 143, 148, 149, 160, 161, 164, 165, 168, 172, 177, 178, 184, 185, 186, 187, 190, 191, 194, 196, 199, 200, 203, 225, 226, 227, 228, 231, 234, 236, 237, 238, 240, 241, 244, 245, 249, 250, 251, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 265, 266, 267, 270, 274, 280, 282], "analysi": [11, 17, 18, 88, 90, 94, 110, 267, 284], "analyz": [39, 88, 90, 259], "ani": [10, 12, 29, 32, 33, 34, 42, 65, 67, 70, 72, 73, 74, 80, 89, 90, 92, 98, 99, 112, 115, 194, 196, 198, 201, 225, 228, 232, 234, 237, 238, 239, 240, 241, 245, 248, 253, 254, 255, 259, 260, 261, 263, 264, 266, 267, 273, 274], "annot": [89, 199, 230, 231, 232], "announc": 35, "anomali": 259, "anonym": 77, "anoth": [3, 95, 98, 115, 117, 118, 121, 125, 130, 133, 142, 165, 180, 188, 190, 191, 196, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 227, 230, 238, 241, 254, 255, 259, 273], "ansibl": 250, "ansible_connect": 274, "ansible_env": 274, "ansible_host": 274, "answer": [3, 4, 5, 6, 29, 42, 50, 51, 55, 56, 75, 96, 99, 102, 103, 115, 123, 124, 160, 172, 189, 190, 191, 200, 202, 237, 249, 259, 260, 261, 263, 264, 265, 266, 267], "answer_correct": 95, "answer_relev": [96, 97, 148], "anthologi": 98, "anti": 248, "anticip": 36, "antiquewhit": 256, "anyon": [241, 243, 266], "anyscal": [236, 266], "anyth": [199, 255], "anywher": 254, "apach": [1, 77, 78, 87, 159, 193, 196, 197, 241], "apart": 259, "api": [2, 5, 7, 8, 20, 22, 23, 24, 25, 29, 33, 35, 36, 37, 39, 45, 49, 50, 51, 52, 53, 56, 60, 63, 78, 95, 100, 111, 112, 113, 114, 121, 122, 123, 124, 125, 164, 173, 174, 175, 184, 191, 196, 197, 198, 199, 203, 208, 209, 216, 218, 226, 228, 234, 238, 245, 246, 248, 249, 250, 257, 260, 267, 270, 273, 274, 276, 282], "api_kei": 22, "api_protocol": 282, "api_serv": 261, "api_server_openai": 45, "api_token": 3, "apic": 260, "apiserv": [225, 273, 274], "apiseven": 197, "apisix": [252, 283], "apivers": [89, 197, 200, 232, 273], "apoc": [13, 42, 68], "apolog": [3, 237], "apologi": 237, "app": [3, 69, 77, 80, 88, 107, 110, 118, 122, 126, 134, 143, 175, 181, 189, 190, 198, 199, 202, 223, 227, 230, 238, 245, 250, 270, 272, 273, 281], "app_backend_service_endpoint": [112, 114, 116, 260, 261, 263, 264], "app_code_gen_url": [123, 124], "app_data_prep_service_url": [112, 114, 116, 260, 261, 263, 264], "app_namespac": [126, 134, 175, 181, 189], "appear": [237, 249, 253, 254, 255, 256], "append": [111, 113, 123, 161, 162, 164, 184, 186, 201, 267], "appl": [23, 161, 162, 254], "appli": [32, 34, 38, 42, 89, 91, 98, 106, 107, 110, 117, 118, 125, 126, 127, 133, 134, 142, 143, 144, 151, 153, 166, 175, 180, 181, 188, 189, 195, 197, 198, 199, 200, 203, 223, 225, 226, 227, 230, 237, 241, 245, 254, 267, 270, 273], "applic": [2, 3, 6, 7, 8, 11, 12, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 86, 89, 90, 95, 97, 100, 101, 104, 105, 106, 107, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 122, 123, 124, 125, 131, 132, 133, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 167, 168, 169, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 190, 191, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 229, 230, 238, 241, 245, 246, 247, 249, 253, 259, 260, 261, 263, 264, 267, 268, 270, 276, 277, 279, 282, 283], "applicaiton": 250, "applyto": 232, "appoint": [237, 240, 241], "approach": [2, 46, 47, 65, 67, 70, 72, 73, 74, 94, 98, 168, 172, 198, 223, 241, 245, 246, 267, 276], "appropri": [2, 3, 112, 113, 123, 131, 140, 149, 161, 172, 178, 186, 190, 194, 199, 234, 237, 245, 246, 254, 255, 259, 267, 276], "approv": [238, 240, 241, 267], "approxim": 94, "april": [241, 267], "apt": [10, 11, 13, 16, 17, 18, 19, 198, 200, 255, 273, 274], "aq": [57, 64], "ar": [2, 3, 5, 9, 12, 20, 23, 24, 29, 33, 34, 35, 42, 45, 48, 50, 51, 53, 64, 69, 75, 78, 80, 82, 88, 89, 90, 91, 97, 98, 100, 104, 105, 106, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 155, 160, 161, 162, 164, 166, 168, 172, 176, 178, 179, 180, 183, 184, 185, 186, 188, 190, 191, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 225, 226, 227, 228, 229, 230, 232, 234, 236, 237, 238, 239, 241, 242, 244, 245, 246, 248, 249, 250, 253, 254, 255, 256, 259, 260, 261, 262, 263, 264, 265, 267, 268, 271, 272, 273, 274, 276, 277, 278, 279, 280, 281], "arab": 267, "arc": 88, "archiev": [244, 251], "architect": [236, 240], "architectur": [2, 3, 94, 100, 121, 130, 136, 137, 138, 139, 160, 172, 177, 183, 185, 190, 198, 236, 238, 240, 241, 245, 246, 248, 275, 279, 281], "archiv": [241, 244, 278], "area": [123, 124, 242, 254, 255, 267], "aren": [36, 254], "arg": [6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 40, 42, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 88, 93, 100, 103, 104, 105, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 260, 261, 263, 264, 281], "arg_nam": 3, "args_schema": 3, "argument": [3, 80, 97, 117, 151, 200, 281], "aris": 241, "around": [98, 236, 237, 243, 254, 255, 276], "arrai": 253, "arrang": [61, 63, 115, 260, 261, 263, 264], "arriv": 90, "arrow": [254, 256], "art": [3, 51, 52, 53, 225, 236, 267, 276], "articl": [131, 132, 139, 141, 163, 259], "articul": 267, "artifact": [194, 241, 246, 252, 272, 283], "artifactori": 223, "artifici": [260, 261, 266], "asc": 273, "ashahba": 242, "asid": 198, "ask": [121, 123, 124, 147, 163, 185, 190, 191, 198, 199, 249, 260, 261, 263, 264, 267, 281], "asmo": 249, "aspect": [100, 241, 267], "asr": [2, 88, 90, 107, 190, 191, 220, 238, 242, 249, 252, 279, 280, 281, 282, 283, 284], "asr_endpoint": [6, 104, 105, 205], "asr_model_path": 220, "asr_result": 6, "asr_service_host_ip": [104, 105], "asr_service_port": [104, 105], "assembl": [2, 245, 246, 250, 259, 267, 276, 277], "assembli": 250, "assess": [110, 236, 266, 276], "asset": [115, 196, 238, 260, 261, 263, 264, 266], "assign": [30, 42, 51, 52, 53, 89, 165, 197, 198, 231, 241], "assigne": 238, "assist": [3, 29, 34, 45, 50, 51, 119, 121, 161, 162, 164, 167, 202, 238, 241, 253, 267, 282], "associ": [7, 45, 74, 115, 239, 253, 260, 261, 263, 264, 267], "assum": [57, 89, 254, 255, 267, 273, 274], "assumpt": [115, 267], "assur": 267, "asterisk": 254, "async": [9, 78, 245], "asyncio": 78, "attach": 198, "attack": [37, 237], "attain": 98, "attempt": [98, 255, 267], "attend": 241, "attent": [98, 237, 274], "attest": 267, "attornei": 99, "attribut": [241, 256, 267], "aud": 198, "audienc": 198, "audio": [2, 6, 12, 75, 102, 103, 104, 105, 106, 160, 190, 191, 205, 217, 220, 249, 253, 282, 284], "audio2fac": 249, "audiochat": 250, "audioqa": 107, "audioqna": [88, 90, 168, 190, 195, 242, 249, 280, 281, 282, 283], "audioqna_gaudi": 107, "audioqna_xeon": 107, "audiourl": 253, "audit": 267, "auditori": 160, "aug": [98, 234], "augment": [2, 97, 109, 163, 183, 190, 191, 236, 245, 246, 249, 258, 259, 276], "austin": 3, "australia": [161, 162, 186, 187, 188, 189], "auth": [197, 198, 284], "authen": 282, "authent": [194, 225, 246, 272, 281, 282, 283], "authn": [194, 198, 242, 281, 282, 283], "author": [1, 87, 97, 98, 159, 193, 194, 234, 238, 241, 244, 253, 256, 281, 282], "authorized_kei": 274, "authorship": 241, "authz": [194, 198, 242, 281, 282, 283], "auto": [95, 225, 253, 254, 258, 267, 280, 281, 285], "autodepend": [205, 206, 207, 208, 209, 211, 212, 217, 219], "autogen": 284, "autom": [98, 199, 222, 250, 254, 284], "automat": [34, 42, 43, 44, 45, 46, 47, 48, 50, 63, 80, 89, 96, 98, 102, 103, 108, 109, 112, 114, 116, 117, 120, 123, 124, 145, 146, 147, 155, 164, 167, 176, 178, 179, 190, 191, 239, 242, 244, 250, 251, 254, 255, 267, 268, 280, 281, 282], "autonumb": 254, "autorag": [258, 280], "autosc": [53, 199, 200, 201, 214, 215, 216, 252], "autoscal": [199, 274, 284], "avail": [3, 12, 23, 31, 35, 48, 49, 56, 58, 64, 88, 91, 96, 107, 115, 118, 122, 123, 143, 166, 184, 190, 199, 200, 202, 223, 230, 237, 238, 241, 245, 250, 253, 254, 259, 266, 267], "avataranim": 249, "averag": [94, 98, 110, 267], "avg": [94, 273], "avoid": [11, 57, 91, 184, 232, 237, 254, 281, 283], "avx": 248, "avx2": [51, 52], "avx512": 248, "aw": [252, 267, 271, 274, 281, 283, 284], "awai": [2, 94, 255], "await": [78, 279], "awar": [45, 119, 121, 164, 167, 254, 267], "awk": [3, 6, 12, 19, 23, 40, 45, 55, 57, 64, 67, 75, 95, 101, 104, 105, 111, 160, 173, 260, 261, 263, 264], "ax": 267, "azur": [198, 267, 284], "b": [51, 82, 115, 127, 144, 153, 166, 195, 198, 238, 242, 250, 254, 256, 260, 261, 263, 264, 274], "b07cd12": 282, "b1182c4": 282, "b16b14a": 282, "b18531": 281, "b205dc7": 283, "b224b65": 283, "b22fc52": 283, "b2328b8": 283, "b24bff": 280, "b25c0b": 281, "b271739": 282, "b2771ad": 282, "b2e2b1a": 282, "b2e64d2": 283, "b373": [161, 162], "b3cbde": 281, "b3e1388fa2ca": [263, 264], "b4012f": 281, "b46ae8": 281, "b47ec0c": 282, "b4a7f26": 283, "b4b28e": 281, "b4d8e1": 280, "b51675": 280, "b541fd8": 283, "b56116": 281, "b5c14cd": 282, "b61f61b": 282, "b64_img_str": [161, 162], "b6c0785": 283, "b6wcb": 230, "b70b914": 283, "b7975e": 281, "b7ztj": 230, "b80ae50": 283, "b84c989": 283, "b873cf8": 283, "b98fa07a4f5c": 264, "b994bc": 280, "b9bc034": 283, "ba17031": 283, "ba1d11": 280, "ba6541": 281, "ba78b4c": 282, "ba94e01": 283, "baai": [2, 17, 26, 27, 30, 63, 69, 70, 72, 74, 80, 86, 91, 97, 99, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 164, 169, 173, 174, 191, 214, 215, 260, 261, 263, 264, 282, 283], "back": [3, 5, 32, 35, 38, 95, 99, 102, 119, 164, 167, 190, 191, 241, 249, 254, 282], "backend": [7, 28, 51, 52, 58, 59, 65, 67, 70, 72, 73, 74, 90, 100, 113, 114, 115, 116, 118, 123, 124, 140, 141, 149, 150, 166, 184, 186, 191, 198, 249, 250, 253, 256, 260, 261, 263, 264, 267, 282, 283], "backend_base_url": 176, "backend_health_check_endpoint": 184, "backend_service_endpoint": [111, 112, 113, 114, 116, 123, 124, 137, 138, 140, 141, 149, 150, 161, 162, 173, 184, 186, 187, 198, 260, 261, 263, 264, 283], "backend_service_endpoint_chatqna": 164, "backend_service_endpoint_codegen": 164, "backend_service_endpoint_docsum": 164, "backend_service_endpoint_faqgen": 164, "backend_service_ip": 58, "backend_service_nam": 58, "backend_service_port": 58, "background": 243, "backslash": 254, "backtick": 254, "backup": 199, "bad": 89, "badcommit": 283, "bak": 199, "balanc": [89, 110, 115, 232, 260, 261, 263, 264, 273], "balloon": 89, "balloonspolici": 89, "balloontyp": 89, "baltocdn": 273, "bamboogl": 267, "ban": 253, "bandit": 238, "bandwidth": [252, 283], "bar": [98, 123, 124, 154, 164, 167, 256, 259], "barak": 99, "bare": [234, 267], "base": [2, 3, 5, 12, 17, 23, 26, 27, 28, 30, 31, 34, 35, 45, 51, 52, 55, 57, 59, 61, 63, 64, 65, 67, 69, 70, 72, 73, 74, 80, 82, 86, 88, 89, 90, 91, 94, 96, 97, 98, 99, 100, 102, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 120, 127, 128, 129, 136, 137, 138, 139, 140, 141, 143, 144, 149, 150, 153, 156, 161, 162, 163, 164, 166, 167, 168, 169, 173, 174, 183, 184, 185, 186, 190, 191, 194, 198, 199, 200, 201, 202, 214, 215, 216, 226, 227, 231, 232, 234, 238, 240, 241, 245, 246, 249, 250, 252, 253, 254, 255, 259, 260, 261, 263, 264, 265, 267, 268, 270, 273, 276, 280, 282, 283, 284], "base64": [198, 253], "base_url": [22, 54, 88, 135, 182], "baseag": 3, "baselin": [110, 267], "bash": [18, 32, 38, 45, 51, 52, 53, 95, 100, 101, 110, 148, 198, 254, 259, 260, 261, 263, 264, 273, 274], "bash_complet": 273, "bashrc": 255, "basi": [115, 241, 260, 261, 263, 264, 267], "basic": [9, 248, 250, 259, 267, 268], "basic_url": [129, 155], "bat": 239, "batch": [9, 51, 52, 53], "batch_siz": [54, 88, 122], "bazel": 231, "bb4230": 281, "bbaai": 2, "bbdc1f0": 282, "bc4bbfa": 283, "bc81770": 283, "bc9aba": 280, "bceacdc": 283, "bd385b": 280, "bd46dfd": 282, "bd811bd": 283, "bdc93be9ce0c": 260, "bdd31cf498d13782cc7497cba5896996ce429f91": [115, 261, 263, 264], "be4833f": 282, "be6cd2d0ea38": 261, "be8e1d681eb045f082a7b26d5dba42ff": 261, "be8e283": 283, "bea9bb0": 283, "bearer": 197, "becam": 254, "becaus": [89, 98, 196, 228, 254, 255, 273, 281, 283], "becom": [109, 161, 162, 199, 241, 253, 259, 261, 266, 267, 274], "beda609": 283, "bedrock": 284, "bee1132464cd": 115, "been": [5, 35, 89, 98, 118, 141, 150, 199, 201, 203, 204, 221, 225, 227, 229, 230, 232, 238, 241, 253, 255, 259, 261, 267, 273], "befor": [10, 13, 30, 33, 35, 51, 52, 57, 90, 93, 96, 104, 105, 106, 109, 110, 111, 112, 113, 117, 123, 124, 125, 127, 133, 142, 144, 151, 153, 161, 162, 164, 166, 173, 174, 180, 184, 186, 192, 198, 199, 200, 201, 205, 212, 214, 215, 216, 217, 219, 225, 226, 228, 231, 232, 234, 238, 250, 253, 254, 255, 259, 260, 261, 263, 264, 268, 272, 280, 282], "begin": [94, 112, 113, 140, 149, 161, 166, 178, 186, 254, 255, 259], "behalf": 241, "behavior": [34, 51, 52, 90, 172, 190, 237, 238, 253], "behind": [48, 98, 143, 200, 255, 260, 261, 263, 264], "being": [2, 3, 33, 34, 38, 39, 51, 52, 53, 89, 112, 168, 184, 195, 199, 223, 255, 259, 267], "beir": 267, "believ": 32, "belong": [89, 198, 225, 238], "below": [2, 3, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 30, 32, 35, 38, 40, 41, 51, 52, 53, 57, 58, 69, 89, 90, 91, 95, 97, 100, 101, 104, 105, 107, 109, 110, 111, 112, 113, 114, 116, 118, 121, 123, 124, 125, 126, 130, 131, 132, 133, 134, 139, 140, 141, 143, 149, 150, 154, 156, 157, 158, 160, 161, 162, 164, 165, 167, 169, 170, 171, 173, 174, 175, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 191, 194, 197, 226, 227, 229, 230, 238, 245, 248, 253, 254, 256, 259, 260, 261, 263, 264, 267, 273, 274], "bench": 283, "benchmark": [35, 51, 52, 93, 94, 97, 238, 242, 246, 258, 265, 267, 281, 282, 283, 285], "benchmark_output": [90, 110], "benchmark_throughput": [51, 52], "benefit": [100, 109, 110, 241, 250, 259, 267, 275], "berkelei": 267, "bert": [11, 17, 18, 35, 267], "besid": [51, 52, 53], "best": [48, 51, 52, 91, 110, 183, 236, 237, 248, 250, 253, 254, 255, 259, 267, 275, 276], "beta": [42, 253], "better": [51, 52, 89, 98, 110, 123, 124, 191, 192, 199, 225, 281, 282, 283], "between": [2, 3, 33, 42, 74, 89, 98, 109, 119, 120, 156, 164, 167, 172, 191, 198, 226, 238, 241, 245, 246, 248, 253, 254, 256, 259, 260, 261, 263, 264, 267, 276, 280], "beyond": 45, "bf10bdd": 283, "bf16": [51, 52, 283], "bfcl": 267, "bfloat16": 117, "bg": 254, "bgcolor": 256, "bge": [2, 17, 22, 26, 27, 30, 61, 63, 69, 70, 72, 74, 80, 86, 91, 97, 99, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 164, 169, 173, 174, 191, 214, 215, 260, 261, 263, 264, 267, 282, 283, 284], "bhandaru": [236, 240, 242], "bi": [267, 280], "bia": [31, 253, 266, 277, 281, 283], "bias": [31, 32, 267], "bias_detect": 32, "bibtex": [1, 87, 159, 193], "bidi": 281, "big": [5, 11, 74], "bigcod": [35, 122, 279, 283, 284], "bigcode_evaluation_har": [88, 122], "bigcodeevalpars": 88, "bigger": 35, "biggest": 266, "bigscienc": 216, "bilingu": 98, "billion": [35, 115, 202, 260, 261, 263, 264], "bin": [12, 45, 92, 93, 110, 225, 231, 232, 255, 259, 261, 273, 274], "binari": [80, 231, 238, 244, 267], "bind": [225, 241], "bio": 89, "bit": 117, "bithuman": 249, "bitnamichart": 197, "bkc": [110, 280], "black": [86, 267], "blank": [115, 254, 260, 263, 264], "bleu": [97, 258, 267], "blob": [23, 161, 162, 225, 254], "block": [2, 25, 33, 36, 37, 39, 49, 56, 200, 232, 236, 238, 245, 246, 249, 253, 254, 256, 259, 261, 267, 275, 276, 283], "block_siz": [51, 52], "blocksiz": 273, "blog": 236, "bloom": [43, 44, 50, 216], "blue": [30, 33, 48, 267], "blueprint": [236, 267, 276], "bob": [165, 198], "bodi": [227, 237, 253, 254, 267], "boi": 30, "boldfac": 254, "bom": 282, "booktitl": 98, "bool": [214, 215, 216, 253], "boolean": [35, 36, 98], "boost": [163, 191, 280], "boot": 256, "bop": 201, "bot": [6, 75, 172, 238, 259], "both": [9, 20, 23, 25, 26, 27, 32, 35, 38, 69, 88, 89, 91, 97, 100, 108, 119, 120, 122, 128, 129, 135, 143, 145, 146, 154, 155, 160, 165, 176, 182, 184, 195, 196, 198, 199, 232, 248, 249, 250, 253, 254, 255, 259, 266, 267, 273, 274, 280, 281, 282], "bottleneck": [88, 90, 259], "bottom": [108, 120, 145, 146, 155, 164, 167, 176, 190, 256], "boundari": [2, 168], "bowl": 267, "box": [0, 119, 120, 145, 146, 154, 155, 164, 167, 176, 248, 254, 256, 266, 267], "br": 254, "br_netfilt": 273, "brace": 256, "brain": 261, "branch": [238, 252, 255, 283], "branchnam": 255, "brand": [238, 241], "breach": 196, "break": [2, 238, 245, 246, 254, 276], "breakthrough": [115, 249, 263, 264], "breviti": 98, "brevity_penalti": 98, "bridg": [109, 136, 137, 138, 156, 172, 191, 254, 259, 273], "bridgetow": [12, 23, 25, 160, 267], "brief": 168, "bring": [2, 23, 26, 27, 168, 184, 226, 238, 266], "broad": [5, 266, 267], "broadcom": [236, 266], "broaden": [281, 282], "broader": 266, "broken": 283, "brows": [243, 275, 276], "browser": [58, 92, 109, 111, 112, 113, 114, 116, 121, 123, 124, 127, 130, 131, 132, 139, 140, 141, 144, 149, 150, 153, 164, 166, 167, 172, 178, 179, 184, 186, 187, 190, 198, 201, 203, 204, 221, 223, 254, 255, 259, 260, 261, 263, 264], "bsi": 31, "bucket": [161, 162], "buffer": [107, 118, 126, 143, 175, 181, 227], "bug": [2, 168, 238, 243, 267, 281, 282, 283], "bug_fix": 283, "bugfix": 283, "bui": [34, 114, 208, 261], "build": [2, 20, 42, 69, 88, 95, 100, 103, 107, 109, 110, 115, 118, 121, 126, 130, 134, 139, 143, 160, 163, 166, 168, 172, 175, 181, 185, 189, 190, 195, 196, 200, 202, 227, 232, 236, 238, 244, 245, 246, 249, 252, 253, 254, 255, 258, 259, 265, 266, 267, 268, 270, 272, 273, 275, 276, 277, 279, 280, 281, 282, 283], "build_docker_microservic": [51, 52, 53], "build_docker_vllm": [45, 51, 52], "build_docker_vllm_openvino": [51, 52], "build_docker_vllmrai": [45, 53], "build_imag": 95, "build_with_contain": 231, "buildkit": 273, "buildkit_v": 273, "buildkitd": 273, "built": [2, 3, 6, 9, 20, 23, 24, 48, 53, 75, 88, 90, 114, 121, 130, 139, 172, 183, 195, 253, 254, 266, 267, 282], "bulk": 267, "bullet": 254, "bulli": 38, "bump": 283, "bundl": [48, 267], "buri": 147, "burn": 267, "burst": 89, "busi": [2, 31, 35, 137, 138, 241, 245, 246, 250, 266, 267, 275, 276], "business_safety_logistic_regression_classifi": 35, "button": [92, 112, 114, 121, 238, 249, 259], "buzzword": [115, 261, 263, 264], "bye": 78, "byte": [223, 273], "byte_str": [6, 104, 105, 107, 205], "bz2": 95, "c": [12, 30, 45, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 86, 111, 112, 113, 114, 115, 116, 123, 124, 161, 162, 164, 166, 173, 174, 184, 202, 212, 219, 241, 250, 254, 255, 260, 261, 263, 264, 273], "c016d82": 282, "c04": 98, "c06bcea": 282, "c0d2ba6": 282, "c0f5e2f": 282, "c10bca1": 283, "c1887ed": 282, "c1a5883": 282, "c1cff5": 281, "c1fd27f": 282, "c25063f": 282, "c26d0f6": 282, "c297155": 282, "c2a13d1": 282, "c327972": 282, "c37d9c": 281, "c3a1c1": 281, "c3f6b2": 281, "c412aa3": 282, "c45f8f0": 282, "c461b60": 282, "c5075b": 280, "c541d1d": 282, "c565909": 282, "c59178629901": 261, "c5a0344": 282, "c5f309": 280, "c6d811a": 283, "c718602": 283, "c71bc68": 282, "c73e4e0": 282, "c74564": 281, "c7i": [123, 131], "c84ac4c": 283, "c86cf85": 282, "c88817": 280, "c9548d": 281, "c9f9aca": 282, "ca": [273, 274], "ca94c60": 283, "cab7a88": [282, 283], "cach": [41, 48, 51, 52, 57, 64, 89, 104, 105, 111, 112, 113, 114, 116, 117, 123, 124, 125, 132, 133, 137, 138, 142, 149, 150, 161, 162, 164, 173, 174, 180, 186, 187, 188, 200, 201, 203, 208, 214, 215, 216, 218, 255, 260, 261, 263, 264, 267, 282, 283], "cad2fc3": [282, 283], "cadenc": 267, "cafcf1b": 282, "calcul": [9, 98], "calico": [202, 225, 273, 274], "calico_rr": 274, "calico_v": 273, "caliconetwork": 273, "call": [3, 5, 9, 12, 82, 89, 95, 107, 115, 118, 122, 123, 124, 143, 165, 198, 227, 248, 253, 254, 255, 259, 266, 267, 273], "callable_api": 3, "caller": 272, "came": 254, "can": [2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 26, 27, 30, 32, 33, 34, 35, 38, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 58, 61, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 80, 82, 86, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100, 102, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 153, 156, 157, 158, 160, 161, 164, 166, 167, 168, 169, 170, 171, 172, 174, 176, 177, 178, 180, 183, 184, 185, 186, 187, 188, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 214, 215, 216, 218, 221, 223, 225, 226, 227, 228, 229, 230, 231, 232, 238, 241, 243, 245, 246, 248, 249, 250, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 275, 276, 279], "cancel": [30, 156, 169, 282], "cancer": 267, "candid": [61, 63, 98, 250], "cannot": [11, 89, 121, 198, 199, 218, 241, 253], "cap": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 97, 114, 158, 171], "cap_add": [115, 261], "capabl": [2, 3, 5, 35, 95, 109, 121, 135, 163, 169, 172, 191, 196, 198, 200, 245, 246, 247, 249, 250, 254, 259, 279], "capac": [197, 200, 267], "caption": [12, 160, 161, 162, 191, 254, 256], "captur": [20, 23, 24, 190, 198, 259, 261, 267], "car": 261, "carcinogen": 267, "card": [35, 51, 52, 89, 91, 97, 114, 187, 203, 258, 283], "care": [202, 238, 244, 245, 267], "carri": 267, "cartwright": [236, 240], "case": [2, 12, 20, 23, 24, 64, 74, 88, 89, 93, 109, 110, 112, 114, 115, 116, 121, 130, 136, 137, 138, 139, 147, 160, 168, 177, 184, 185, 191, 194, 195, 198, 200, 225, 226, 228, 230, 238, 241, 250, 252, 254, 259, 266, 267, 268, 270, 273, 276, 282, 283, 284], "cash": [115, 260, 261, 263, 264], "cast": 237, "cat": [89, 200, 273, 274], "catalog": [238, 267, 283], "categori": [9, 32, 34, 36, 267], "cater": 168, "caught": 38, "caus": [37, 88, 89, 90, 255, 281], "causal": 122, "cb31d05": 282, "cc45ff032e8c": 261, "cc84847": 283, "cc8cd70": 282, "ccdd2d0": 283, "cd": [2, 3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 88, 92, 93, 95, 97, 100, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 135, 137, 138, 139, 140, 141, 142, 144, 145, 146, 149, 150, 151, 153, 154, 155, 157, 158, 160, 161, 162, 164, 166, 167, 170, 171, 172, 173, 174, 176, 178, 179, 180, 182, 184, 185, 186, 187, 188, 195, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 225, 238, 242, 243, 255, 259, 260, 261, 263, 264, 268, 270, 274, 282, 283], "cd83854": 282, "cd91cf": 280, "cdw": [236, 240], "ce": [11, 14, 17, 18], "ce4e7802a371": 261, "ce9190": 280, "cef6ea": 280, "cell": 254, "center": [254, 256, 276], "central": [98, 198, 243, 259], "cert": [202, 225, 273], "certain": [89, 113, 120, 161, 186, 248], "certif": [238, 241, 267, 273], "certifi": 267, "cf021ee": 282, "cf15b91": 282, "cf28da4": 282, "cf8bd83": 283, "cfaf5f0": 282, "cfcac3f": 282, "cff0a36": 283, "cff0a4d": 283, "cgroup": 89, "cgroupn": 225, "chain": [194, 226, 253, 267, 270], "chair": [236, 240, 241], "challeng": [38, 95, 100, 147, 245, 266], "chang": [58, 80, 87, 89, 90, 92, 95, 103, 109, 111, 112, 113, 114, 116, 117, 118, 121, 125, 130, 131, 132, 133, 134, 139, 140, 141, 142, 143, 149, 150, 151, 161, 162, 164, 172, 178, 179, 180, 184, 186, 188, 191, 192, 197, 199, 200, 201, 227, 229, 230, 232, 238, 241, 244, 245, 253, 254, 255, 256, 259, 273, 274, 280, 281, 282, 283], "change_img": 225, "channel": [25, 33, 36, 37, 39, 49, 56, 237, 260, 261, 263, 264], "chao": [161, 162], "chaqna": [112, 113, 114, 116, 118, 184, 260, 261, 263, 264, 282], "char": 254, "charact": 280, "character": 267, "characterist": [185, 237, 267], "charactertextsplitt": 80, "charg": 253, "chart": [160, 168, 183, 192, 196, 197, 198, 199, 202, 223, 238, 242, 254, 262, 266, 279, 280, 281, 282, 283, 284], "chart_mount": 281, "chart_test": 281, "charter": [240, 243], "chartnam": 200, "chat": [2, 3, 29, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 88, 90, 91, 100, 104, 105, 108, 110, 111, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 131, 132, 139, 140, 141, 143, 156, 166, 173, 174, 178, 179, 190, 191, 200, 201, 209, 218, 221, 227, 230, 245, 250, 259, 260, 261, 263, 264, 265, 277, 279, 280, 281, 282], "chat_base_url": 120, "chat_data": 29, "chat_history_create_endpoint": 164, "chat_history_delete_endpoint": 164, "chat_history_get_endpoint": 164, "chat_id": 29, "chat_processor": 45, "chat_qna": 245, "chat_templ": [50, 51, 161, 162, 260, 261, 263, 264], "chat_url": 108, "chatbot": [109, 172, 190, 191, 200, 253, 259, 267], "chatcmpl": 253, "chatcompletionrequest": 245, "chatcompletionrespons": 245, "chatgpt": 253, "chathistori": [8, 164, 238, 242], "chathistory_mongo": 29, "chatmodelllama": 45, "chatopenai": [53, 114], "chatqa": [118, 198, 227, 229, 230, 232, 234, 238, 270], "chatqna": [2, 9, 58, 88, 89, 90, 92, 97, 115, 121, 166, 168, 190, 194, 195, 197, 198, 199, 200, 203, 204, 221, 226, 232, 238, 242, 244, 247, 249, 252, 254, 258, 267, 279, 280, 281, 282, 283, 284], "chatqna_authn_fakejwt": 198, "chatqna_authn_keycloak": 198, "chatqna_authn_oauth": 198, "chatqna_authz_fakejwt": 198, "chatqna_authz_keycloak": 198, "chatqna_authz_oauth": 198, "chatqna_bf16": 117, "chatqna_config_map": 91, "chatqna_dataprep_gaudi": [227, 230], "chatqna_dataprep_xeon": [198, 227, 230], "chatqna_gaudi": [118, 227, 238], "chatqna_istio_external_auth": 198, "chatqna_mega_servic": 91, "chatqna_megaservice_grafana": 92, "chatqna_nv": 230, "chatqna_router_gatewai": 198, "chatqna_router_gateway_oauth": 198, "chatqna_switch_gaudi": 227, "chatqna_switch_xeon": 227, "chatqna_ui_gatewai": 198, "chatqna_use_cas": 226, "chatqna_without_rerank": [112, 114], "chatqna_xeon": [118, 227, 238, 270], "chatqnagatewai": [2, 245], "chatqnaservic": 245, "check": [0, 2, 3, 9, 17, 25, 36, 37, 49, 52, 53, 56, 57, 69, 92, 97, 107, 110, 112, 113, 114, 116, 118, 121, 125, 126, 130, 134, 137, 138, 139, 143, 164, 168, 172, 175, 181, 183, 184, 189, 194, 197, 198, 199, 200, 202, 225, 226, 227, 230, 234, 236, 248, 253, 254, 255, 265, 267, 268, 270, 272, 273, 274, 277, 282, 283], "check_asr_serv": 6, "check_llava_serv": 55, "check_lvm": [55, 57], "check_refer": 122, "check_whisper_serv": 6, "checkeck": 53, "checkout": [2, 195, 238, 255, 260, 261, 263, 264, 274, 277, 281], "checkpoint": [30, 156, 169, 283], "chen": 242, "chendi": 242, "chensuyu": [238, 242], "chief": [236, 240, 267], "children": 274, "chin": 98, "china": [112, 114, 283], "chines": [178, 179, 180, 181, 267, 280, 281, 283], "chinyixiang": 250, "chip": 99, "chmod": 200, "choic": [45, 48, 119, 120, 164, 167, 198, 248, 253, 261, 267], "choos": [42, 43, 44, 45, 46, 47, 50, 58, 63, 67, 70, 72, 73, 74, 89, 107, 109, 110, 112, 114, 118, 121, 160, 168, 178, 179, 185, 194, 198, 227, 232, 241, 259, 266, 268, 274], "chosen": [30, 112, 113, 123, 131, 140, 149, 161, 178, 186], "chown": [200, 273, 274], "chroma": [86, 172, 173, 174, 190, 191, 219, 277, 279, 284], "chroma_server_nofil": 77, "chromadb": [77, 267], "chun_siz": 11, "chunk": [11, 51, 52, 64, 80, 249, 260, 261, 263, 264, 267, 282], "chunk_dur": [57, 64, 184], "chunk_overlap": [11, 13, 16, 17, 18, 91, 97], "chunk_siz": [11, 13, 16, 17, 18, 91, 97, 110], "chunk_start": [57, 64, 184], "chunker": 267, "ci": [195, 238, 242, 243, 280, 281, 282, 283], "cicd": 284, "cid": [57, 64], "cidr": 273, "circl": [254, 256], "circumst": 241, "cite": 267, "claim": [98, 125, 198], "clang": [231, 254], "clangd": 231, "clarifi": [237, 267], "clariti": [237, 238, 254, 267], "class": [2, 3, 89, 99, 225, 237, 238, 245, 254], "class_metr": 225, "classic": 279, "classif": [32, 38, 43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 267], "classifi": [35, 115, 260, 261, 263, 264], "classifil": 35, "claud": 284, "clean": [143, 225, 226, 254, 255, 267, 274, 282], "clear": [5, 12, 110, 119, 120, 164, 167, 176, 238, 247, 254, 266, 267, 283], "clearli": 254, "cli": [210, 232, 272], "click": [92, 112, 114, 120, 121, 123, 124, 145, 146, 154, 155, 164, 167, 176, 190, 198, 249, 254, 259], "client": [95, 107, 112, 118, 126, 134, 143, 165, 175, 181, 189, 196, 197, 198, 227, 230, 245, 256, 260, 270, 283], "client_except": 121, "client_id": [197, 198], "client_pod": [107, 118, 126, 134, 143, 175, 181, 189, 198, 227, 230, 270], "client_secret": [197, 198], "clientconnectorerror": 121, "clip": [183, 184, 191, 277, 283], "clone": [2, 54, 61, 77, 88, 91, 93, 95, 97, 100, 103, 104, 105, 108, 110, 111, 112, 113, 114, 116, 119, 120, 122, 123, 124, 128, 129, 131, 132, 135, 137, 138, 140, 141, 145, 146, 149, 150, 154, 155, 157, 158, 161, 162, 164, 167, 170, 171, 173, 174, 176, 178, 179, 182, 184, 186, 187, 195, 223, 225, 238, 255, 260, 261, 263, 264, 268, 270, 274], "close": [137, 138, 267, 284], "closer": [33, 39, 98], "closur": 241, "cloud": [2, 74, 77, 80, 107, 112, 118, 143, 168, 194, 226, 227, 234, 236, 238, 240, 246, 248, 250, 252, 259, 261, 267, 268, 270, 276, 277, 281, 284], "cloudera": [236, 266], "cloudform": 272, "cluster": [89, 92, 93, 127, 144, 153, 165, 166, 168, 195, 198, 199, 200, 216, 218, 222, 228, 230, 232, 250, 252, 259, 265, 270, 271, 281, 284, 285], "cluster_ip": 110, "clusterip": [110, 166, 199, 202], "cm": 199, "cmd": [239, 282], "cmpl": 261, "cncf": 267, "cni": 273, "cni_ver": 273, "co": [40, 121, 162, 201, 203, 204, 214, 215, 216, 218, 221], "coc": 241, "code": [1, 2, 3, 11, 17, 18, 32, 35, 38, 58, 87, 88, 94, 122, 126, 131, 132, 134, 159, 164, 167, 168, 175, 181, 190, 191, 193, 194, 197, 198, 223, 231, 240, 241, 243, 244, 246, 250, 253, 255, 265, 266, 267, 274, 275, 279, 281, 282, 283, 284, 285], "code_of_conduct": 237, "codebas": 121, "codeblock": [254, 281, 282], "codecov": 280, "codegen": [88, 90, 166, 168, 190, 195, 200, 238, 242, 250, 252, 279, 280, 281, 282, 283, 284], "codegen_endpoint": 122, "codegen_gaudi": 126, "codegen_url": 122, "codegen_xeon": 126, "codellama": [121, 123, 124, 125, 164, 191, 203, 227], "codeown": [242, 282, 283], "codeparrot": 88, "codeql": 238, "codeqwen1": [121, 122], "coder": 121, "codetran": [88, 90, 168, 190, 195, 200, 242, 250, 252, 279, 280, 281, 282, 283, 284], "codetrans_gaudi": 134, "codetrans_xeon": 134, "cogen": 283, "cognit": 267, "coher": [119, 164, 167, 267], "cohes": 241, "col": 254, "colbert": 267, "cole": 98, "collabor": [238, 241, 266], "collater": [115, 260, 261, 263, 264], "collect": [11, 32, 61, 63, 74, 88, 90, 93, 109, 160, 172, 191, 199, 223, 225, 241, 246, 254, 255, 259, 267, 268, 276, 282, 283], "collect_service_metr": 90, "collecter_interv": 225, "collection_nam": [8, 11, 16, 18, 29, 60, 66, 74, 164], "collector": 225, "collector_zipkin_host_port": 9, "colon": 254, "color": [237, 256, 267], "column": [148, 256], "columns2": 254, "columns3": 254, "com": [1, 2, 11, 12, 13, 16, 17, 18, 23, 30, 45, 54, 57, 61, 77, 87, 88, 91, 92, 93, 95, 97, 100, 103, 104, 105, 109, 110, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 159, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 193, 195, 197, 198, 199, 202, 223, 225, 227, 232, 234, 236, 238, 242, 243, 250, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 281, 282, 283], "combin": [42, 109, 185, 232, 255, 259, 260, 261, 263, 264, 267], "combined_model": 232, "combo": 282, "comcast": [236, 240], "come": [95, 100, 110, 160, 198, 266, 267], "comma": 225, "command": [6, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 35, 40, 41, 45, 48, 51, 52, 58, 67, 68, 70, 72, 73, 74, 90, 91, 93, 94, 95, 97, 100, 101, 102, 103, 104, 105, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 131, 132, 133, 135, 139, 140, 141, 142, 143, 145, 146, 149, 150, 154, 155, 156, 157, 158, 160, 161, 162, 164, 166, 167, 169, 170, 171, 172, 173, 174, 176, 178, 179, 180, 182, 184, 185, 186, 187, 188, 192, 198, 199, 200, 202, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 227, 228, 230, 231, 232, 238, 255, 256, 260, 261, 263, 264, 268, 270, 272, 273, 274, 282, 283], "comment": [29, 38, 121, 123, 124, 237, 238, 243, 254, 283], "commerc": 185, "commerci": 102, "commit": [88, 115, 196, 237, 238, 241, 255, 261, 263, 264, 282, 283], "committ": [241, 266], "committe": [243, 267], "common": [17, 130, 198, 200, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 237, 238, 241, 254, 267, 281, 282, 283], "commondatastorag": [161, 162], "commonli": [97, 254], "commun": [2, 3, 45, 78, 89, 110, 168, 177, 198, 199, 223, 226, 237, 240, 244, 245, 246, 248, 251, 254, 266, 267, 268, 273, 275, 276, 284], "comp": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 100, 103, 104, 105, 109, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 202, 238, 242, 245, 247, 255, 260, 261, 263, 264, 281, 282, 283], "compani": [115, 240, 241, 255, 260, 261, 263, 264, 267], "compar": [33, 89, 98, 100, 168, 227, 245, 254, 255, 267], "comparison": [95, 172, 259, 267], "compat": [3, 22, 53, 168, 231, 238, 244, 253, 254, 265, 272, 281, 283], "compet": 267, "competit": [196, 241, 267], "compil": 231, "compl": 42, "complain": 254, "complaint": 237, "complement": 267, "complementari": 267, "complet": [2, 3, 4, 5, 45, 46, 47, 48, 49, 50, 51, 52, 53, 77, 88, 90, 100, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 122, 123, 124, 127, 131, 132, 144, 153, 164, 173, 174, 178, 179, 184, 198, 209, 218, 230, 238, 245, 253, 254, 259, 260, 261, 263, 264, 267, 272, 273, 282], "completion_token": [253, 261], "completioncheck": 4, "completli": 238, "complex": [2, 74, 95, 97, 100, 147, 191, 198, 238, 245, 246, 250, 253, 255, 267, 276], "compli": [93, 241, 253], "complianc": [147, 196, 198, 248, 266, 267], "compon": [1, 9, 12, 77, 87, 91, 95, 107, 109, 115, 118, 126, 134, 143, 159, 160, 166, 168, 175, 181, 189, 193, 201, 202, 222, 226, 227, 228, 230, 231, 232, 245, 246, 248, 250, 252, 254, 255, 259, 260, 261, 263, 264, 270, 276, 277, 280, 281, 282, 283, 284], "compos": [2, 57, 64, 77, 79, 97, 100, 102, 104, 105, 110, 111, 113, 115, 121, 123, 124, 130, 131, 132, 137, 138, 139, 140, 141, 149, 150, 160, 161, 162, 163, 164, 168, 172, 173, 174, 178, 179, 183, 184, 185, 186, 187, 195, 226, 236, 238, 245, 246, 252, 259, 260, 261, 263, 264, 267, 268, 276, 277, 279, 280, 281, 282, 283, 284], "compose_guardrail": [114, 261], "compose_qdr": 113, "compose_vllm": [112, 114, 261, 264], "compose_vllm_rai": 114, "compose_without_rerank": [112, 114], "composit": [241, 267, 276, 283], "comprehend": [147, 191, 267], "comprehens": [2, 13, 95, 97, 100, 110, 121, 147, 160, 163, 165, 172, 190, 191, 245, 246, 267], "compress": [51, 52], "compris": [101, 194, 245, 249, 253, 260, 261, 263, 264, 267], "comput": [23, 74, 89, 98, 113, 121, 140, 149, 161, 178, 186, 249, 250, 255, 267], "con": [238, 244, 245, 267], "concept": [121, 250, 273], "concern": [34, 241, 261, 267], "concis": 147, "concret": 35, "concurr": [88, 90, 94, 110, 172, 280, 281, 282, 283], "concurrent_level": 90, "conda": 101, "condens": [145, 146, 154, 155, 164, 167, 190], "condit": [1, 35, 40, 42, 87, 159, 193, 194, 200, 226, 229, 230, 238, 239, 270, 272, 280, 281], "conduct": [2, 65, 67, 70, 72, 73, 74, 88, 168, 194, 241, 243], "conf": [58, 94, 225, 255, 273, 274], "confer": [95, 98], "confid": 267, "confidenti": [267, 284], "config": [77, 89, 92, 96, 110, 112, 114, 116, 118, 121, 122, 123, 124, 140, 141, 149, 150, 197, 198, 199, 203, 204, 221, 225, 226, 227, 228, 229, 230, 232, 246, 255, 259, 260, 261, 263, 264, 270, 273, 280, 281, 282, 283], "config_fil": 225, "config_max_thread_byt": 254, "config_onli": 91, "configmap": [199, 226, 230, 232, 270, 281], "configpatch": 232, "configur": [20, 23, 24, 25, 33, 36, 37, 39, 45, 48, 49, 51, 52, 56, 57, 64, 88, 92, 100, 109, 112, 113, 115, 123, 127, 131, 140, 144, 149, 153, 160, 161, 163, 164, 168, 178, 186, 194, 196, 197, 198, 199, 200, 225, 229, 234, 238, 245, 255, 259, 260, 261, 263, 264, 265, 268, 272, 281, 283, 284], "configvalid": 232, "confirm": [112, 143], "conflict": [32, 218, 283], "conform": [199, 241], "confus": 254, "congratul": [115, 274], "conjunct": [109, 110, 253], "conjur": 261, "conncurr": 94, "connect": [28, 59, 69, 78, 80, 88, 89, 90, 92, 107, 109, 112, 113, 114, 115, 116, 118, 121, 123, 131, 140, 143, 149, 161, 178, 186, 196, 197, 198, 225, 226, 227, 238, 250, 256, 261, 263, 264, 267, 270, 281, 282], "connect_model": 232, "connector": [80, 107, 118, 143, 190, 198, 227, 238, 242, 247, 255, 259, 280, 281, 282, 283, 284], "consecut": [123, 124, 255], "consensu": [240, 241], "consequ": 237, "conserv": [90, 184], "consid": [89, 95, 98, 237, 238, 244, 253, 255, 259, 267], "consider": 267, "consist": [25, 33, 36, 37, 39, 45, 49, 56, 156, 166, 190, 191, 232, 241, 247, 248, 253, 254, 259, 266, 267, 282], "consol": [112, 113, 123, 131, 140, 149, 161, 165, 178, 186, 198, 254, 259], "consolid": [115, 260, 261, 263, 264], "constant": 90, "constraint": 199, "construct": [2, 17, 18, 45, 104, 105, 111, 112, 113, 114, 116, 123, 124, 140, 141, 149, 150, 161, 162, 168, 173, 174, 178, 179, 184, 186, 187, 237, 246, 250, 253, 259, 266, 276], "construct_data_servic": 245, "construct_rag_servic": 245, "consum": [95, 97, 111, 113, 115, 123, 124, 133, 140, 141, 149, 150, 161, 162, 164, 166, 184, 186, 187, 260, 261, 263, 264, 267, 277], "consumpt": 91, "contact": [236, 241, 242, 267], "contain": [2, 8, 10, 12, 17, 18, 19, 29, 30, 34, 35, 42, 43, 44, 45, 46, 47, 50, 51, 52, 57, 58, 60, 63, 64, 67, 69, 70, 72, 73, 74, 88, 91, 92, 95, 97, 100, 103, 110, 118, 121, 130, 139, 147, 148, 157, 158, 170, 171, 172, 190, 194, 197, 198, 199, 200, 208, 214, 215, 216, 218, 222, 225, 226, 227, 230, 231, 234, 238, 241, 245, 246, 247, 248, 249, 250, 253, 254, 256, 259, 262, 267, 268, 272, 273, 274, 276, 281, 282, 283, 284], "container": [2, 168, 194, 246, 252, 266, 267, 276, 277], "container_id": [112, 113, 114, 116], "container_metr": 225, "container_nam": [112, 114, 115, 116, 123, 124, 140, 141, 149, 150, 260, 261, 263, 264], "containerd": [89, 110, 194, 273, 274], "containerd_v": 273, "containernetwork": 273, "containerport": 201, "contani": 115, "content": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 95, 100, 101, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 151, 154, 155, 156, 160, 161, 162, 164, 167, 169, 172, 173, 174, 175, 176, 178, 179, 180, 181, 184, 186, 187, 188, 189, 190, 191, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 227, 229, 230, 232, 242, 252, 256, 258, 259, 260, 261, 263, 264, 265, 267, 268, 270, 277, 283], "contentu": [65, 67, 70, 72, 73, 74], "context": [3, 5, 35, 45, 50, 51, 65, 67, 70, 72, 73, 74, 86, 97, 99, 100, 115, 119, 120, 121, 148, 160, 161, 162, 164, 167, 176, 183, 199, 225, 232, 238, 253, 254, 260, 261, 263, 264, 267, 282, 284], "context_precis": 96, "context_recal": 96, "context_util": 148, "contextu": [121, 172, 183, 259, 267], "conting": [115, 260, 261, 263, 264], "continu": [51, 52, 53, 190, 237, 238, 241, 254, 266, 267, 282], "contol": 228, "contract": [115, 147, 260, 261, 263, 264], "contrast": [198, 245], "contribut": [25, 88, 130, 160, 177, 185, 192, 194, 237, 240, 241, 244, 245, 246, 251, 254, 255, 268, 275, 281, 282, 283], "contributor": [241, 243, 244, 283], "contritbutng": 238, "control": [2, 34, 51, 52, 107, 110, 118, 143, 190, 196, 197, 198, 199, 226, 227, 229, 245, 246, 253, 267, 270, 273, 274, 276], "conveni": [76, 163, 254, 255, 260, 261, 263, 264], "convent": [5, 92, 100, 199, 238, 244, 251, 254, 259], "convers": [6, 7, 8, 20, 23, 24, 38, 57, 75, 108, 109, 120, 123, 124, 130, 163, 164, 167, 176, 190, 198, 238, 249, 253, 265, 267, 279, 280, 281, 282], "convert": [6, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 75, 102, 115, 130, 135, 183, 190, 191, 199, 232, 249, 255, 267, 282], "convert_token": 232, "cooki": 198, "cookie_secret": 198, "cooper": 117, "coordin": [2, 240, 241, 245, 246, 276], "copi": [110, 119, 120, 123, 124, 164, 167, 254, 255, 270, 274], "copilot": [121, 191, 200], "copyright": [1, 87, 159, 193, 241, 254], "cor": 283, "core": [77, 89, 109, 115, 136, 137, 138, 232, 238, 242, 245, 254, 259, 267, 273, 280, 281, 282, 283], "core_id": 89, "coredn": [273, 274], "cores_per_socket": 91, "cormack": [236, 240], "corner": [238, 282], "cornerston": [115, 263, 264], "corpu": [95, 97, 98, 259], "correct": [11, 12, 17, 18, 19, 95, 98, 100, 111, 112, 113, 197, 198, 229, 254, 267, 273, 282], "correctli": [9, 12, 110, 115, 200, 261, 263, 264, 273], "correl": 98, "correspond": [12, 58, 79, 92, 98, 108, 109, 119, 120, 121, 123, 124, 128, 129, 130, 135, 139, 145, 146, 154, 155, 160, 163, 164, 167, 172, 176, 182, 183, 185, 190, 199, 238, 242, 244, 255, 260, 261, 263, 264, 273, 282], "correspondingli": 89, "cost": [137, 138, 253, 267, 275, 276], "could": [64, 67, 70, 72, 73, 74, 89, 107, 109, 112, 114, 116, 118, 126, 134, 175, 181, 184, 189, 196, 198, 223, 227, 237, 238, 245, 254, 259, 267, 273], "count": [42, 64, 91, 94, 110, 198, 199, 253], "counter": 9, "counteract": 98, "coupl": [125, 245], "cours": 198, "coven": 243, "cover": [95, 223, 260, 261, 263, 264, 267], "coverag": [238, 280, 285], "cp": [12, 41, 91, 97, 226, 270, 273, 274], "cpu": [2, 6, 17, 23, 26, 27, 45, 53, 55, 57, 63, 69, 70, 72, 74, 75, 86, 91, 100, 104, 106, 109, 110, 111, 112, 113, 115, 117, 118, 121, 123, 125, 127, 130, 131, 133, 137, 138, 139, 140, 142, 143, 144, 149, 151, 153, 160, 161, 164, 166, 172, 173, 180, 183, 184, 185, 186, 188, 191, 199, 214, 215, 225, 227, 238, 250, 260, 261, 263, 264, 267, 268, 270, 282, 283, 284], "cpu3": 89, "cpus_allowed_list": 89, "cpuset": 89, "cr": [107, 118, 143, 226, 227, 228, 252, 280, 283], "craft": 250, "crag": [100, 258, 283], "crag_doc": 95, "crag_docs_mus": 95, "crag_ev": 95, "crag_task_3_dev_v4": 95, "crash": 283, "crashlog": 256, "crd": [190, 197, 226, 228, 270], "creat": [2, 3, 8, 22, 29, 45, 48, 60, 80, 88, 89, 91, 92, 93, 95, 101, 107, 110, 112, 113, 115, 117, 118, 121, 125, 126, 133, 134, 139, 140, 142, 143, 149, 150, 161, 163, 164, 165, 167, 168, 175, 178, 180, 181, 184, 186, 188, 189, 192, 197, 198, 199, 200, 223, 225, 226, 227, 228, 230, 232, 236, 240, 241, 244, 249, 250, 253, 254, 255, 256, 259, 260, 261, 263, 264, 266, 267, 270, 276, 280, 282, 283], "create_t": 78, "create_test_db": 78, "created_at": 260, "creation": [2, 111, 112, 113, 114, 116, 121, 123, 124, 131, 132, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 178, 179, 184, 186, 187, 190, 236, 241, 245, 246, 250, 267, 276], "creativ": 241, "creativecommon": 241, "credenti": [92, 197, 198, 259], "credit": [115, 253, 260, 261, 263, 264], "crewai": 284, "cri": [89, 273], "crimin": 34, "criteria": [241, 247, 267], "critic": [89, 147, 196, 230], "cross": [199, 255, 267, 285], "crucial": [65, 67, 70, 72, 73, 74, 147, 259], "crud": [91, 281, 282], "crud_rag": [91, 97], "crud_split": [91, 97], "cse": [173, 174, 175, 228, 234], "csi": 273, "csp": 284, "css": [254, 255], "csv": [93, 110], "ct": [126, 134, 175, 181], "ctao456": 249, "ctld7": 274, "cto": [236, 240], "ctr_img": 270, "ctrl": [77, 255], "cuda": [234, 263, 264], "cue": 160, "cumul": 267, "cup": 100, "curat": 266, "curl": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 199, 202, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 223, 225, 227, 229, 230, 232, 238, 260, 261, 263, 264, 268, 270, 273, 281, 283], "curli": 256, "current": [3, 5, 9, 18, 19, 22, 23, 26, 27, 30, 35, 42, 45, 91, 93, 96, 100, 102, 108, 109, 110, 115, 119, 120, 121, 122, 128, 129, 130, 135, 136, 137, 138, 139, 145, 146, 154, 155, 160, 164, 167, 172, 176, 177, 182, 183, 185, 190, 198, 199, 223, 225, 229, 243, 249, 253, 254, 259, 260, 261, 263, 264, 266, 267, 272, 274, 278, 283], "current_vers": 255, "custom": [2, 9, 11, 17, 18, 20, 23, 24, 50, 51, 52, 53, 79, 89, 91, 106, 107, 108, 109, 117, 118, 119, 125, 127, 133, 139, 142, 143, 144, 147, 151, 153, 164, 166, 167, 180, 185, 188, 190, 191, 194, 196, 198, 199, 200, 226, 227, 230, 246, 249, 250, 252, 253, 255, 259, 260, 261, 263, 264, 265, 266, 267, 270, 274, 275, 284], "custom_tool": 3, "customiz": [20, 23, 24, 30, 245], "customresourcedefinit": 226, "cut": [147, 191, 198, 199], "cwd": 30, "cxzvf": 225, "cycl": [3, 121, 266], "cypherchain": 42, "d": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 79, 81, 85, 86, 88, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 157, 160, 161, 162, 164, 169, 170, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 188, 189, 197, 198, 199, 201, 202, 203, 204, 205, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 227, 229, 230, 232, 254, 255, 260, 261, 263, 264, 268, 270, 273], "d0b028": 281, "d11aeb": 281, "d204a7": 280, "d25d2c": 281, "d2bab99": 283, "d332c2": 280, "d39b315": 282, "d39fee9": 282, "d3b37f3d1faa": [263, 264], "d3eefea": 282, "d3fc939": 282, "d41dd2": 281, "d422929": 283, "d487093": 283, "d55a33d": 283, "d55ded4": 283, "d57b94": 281, "d5b8cdf": 282, "d5dbbf0": 283, "d609071": 283, "d645305": 282, "d68be05": 282, "d6b540a423ac": 260, "d73129c": 283, "d754a84": 282, "d75d8f": 281, "d76751a": 283, "d7a5b7": 281, "d7cdab": 281, "d85ec09": 283, "d8cd3a1": 283, "d8fc410e908b": [11, 17, 18], "d97882e": 283, "d982681": 283, "d99461": 281, "d9a0271": 282, "d9b62a": 280, "da19c5d": 282, "da2689": 280, "da4f091": 282, "daec680": 282, "daemon": [48, 110, 260, 273, 274], "daemonset": [89, 273], "daf2a4f": 283, "dag": [123, 124, 253, 281], "dagwc": 272, "dai": [195, 241, 250, 254, 260], "daisi": 242, "damo": [57, 183, 184, 191], "danger": 37, "darkorang": 254, "dash": 199, "dashboard": [9, 250], "data": [3, 7, 8, 9, 11, 13, 16, 17, 18, 20, 23, 24, 26, 27, 28, 29, 30, 32, 34, 35, 36, 38, 41, 42, 43, 44, 45, 48, 50, 59, 63, 64, 67, 68, 70, 72, 73, 79, 86, 88, 89, 90, 91, 92, 93, 95, 97, 109, 111, 112, 113, 114, 115, 116, 117, 121, 136, 137, 138, 147, 148, 156, 160, 161, 162, 169, 172, 184, 191, 196, 197, 198, 199, 200, 201, 202, 208, 214, 215, 216, 218, 223, 229, 230, 236, 241, 245, 250, 252, 253, 254, 259, 260, 261, 263, 264, 266, 267, 273, 276, 277, 279, 281, 282, 283, 284], "data_gatewai": 245, "data_port": 245, "data_prep": 91, "data_servic": 245, "data_sourc": 80, "data_typ": 253, "data_visu": 90, "databas": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 28, 29, 42, 59, 60, 64, 65, 67, 68, 70, 72, 73, 74, 76, 77, 78, 95, 97, 100, 109, 136, 137, 138, 160, 164, 183, 184, 190, 191, 231, 245, 249, 250, 259, 260, 261, 263, 264, 267], "database_endpoint": 97, "databrick": 267, "datacent": 267, "dataprep": [2, 58, 64, 67, 73, 91, 95, 97, 101, 109, 110, 115, 137, 138, 160, 166, 190, 198, 202, 206, 227, 230, 238, 242, 245, 249, 279, 280, 281, 282, 283], "dataprep_delete_file_endpoint": [164, 260, 261, 263, 264], "dataprep_delete_video_endpoint": [161, 162], "dataprep_gen_caption_service_endpoint": [161, 162], "dataprep_gen_transcript_service_endpoint": [161, 162], "dataprep_get_file_endpoint": [164, 184, 260, 261, 263, 264], "dataprep_get_video_endpoint": [161, 162], "dataprep_get_video_list_endpoint": 184, "dataprep_redi": 280, "dataprep_service_endpoint": [58, 111, 112, 113, 114, 116, 137, 138, 164, 184, 198, 260, 261, 263, 264], "dataprep_service_ip": 58, "dataprep_service_port": 58, "dataprepgatewai": 245, "dataset": [30, 35, 38, 40, 42, 51, 52, 65, 67, 70, 72, 73, 74, 96, 98, 99, 121, 156, 162, 169, 190, 191, 239, 260, 261, 263, 264, 267, 280, 282], "dataset_path": 97, "datastax": [236, 266], "date": [109, 191, 238, 259, 267], "daughter": 99, "david": [242, 255], "daysx": [137, 138], "db": [11, 19, 67, 69, 72, 73, 74, 78, 89, 113, 115, 118, 137, 138, 161, 172, 184, 201, 206, 212, 227, 230, 238, 252, 260, 261, 263, 264, 267, 277, 279, 281, 282], "db2d2bd": 282, "db3b4f": 280, "db8c893": 282, "db_name": [8, 29, 60, 164], "dba908a": 283, "dc90a5": 281, "dc94026": 283, "dcf68a0": 282, "dco": 238, "dd": [198, 244, 251], "dd657bbf6": 89, "dd939c": 281, "ddfd698ff": 273, "de27e6b": 282, "dearmor": 273, "deb": 273, "debian": 273, "debug": [3, 35, 77, 89, 121, 199, 225, 229, 267, 273, 282], "debugg": 267, "decad": 267, "deccbb89b507": [161, 162], "deci": 267, "decid": [5, 115, 248, 267], "decis": [90, 147, 237, 241, 267], "decod": [248, 259], "decompos": 100, "decompress": 95, "decor": [2, 9], "decreas": [91, 253, 260, 261, 263, 264], "dedic": [22, 89, 172, 198, 245], "deem": 237, "deep": [17, 26, 27, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 58, 61, 62, 63, 69, 70, 72, 74, 95, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 139, 140, 141, 148, 149, 150, 160, 164, 172, 173, 174, 178, 179, 209, 211, 214, 215, 216, 218, 260, 261, 263, 264], "deepbrain": 249, "deeper": [11, 13, 16, 17, 89, 254], "deepseek": 121, "def": [2, 3, 9, 78, 126, 164, 245], "def19b4": 283, "default": [9, 11, 13, 16, 17, 18, 19, 34, 36, 43, 44, 48, 51, 52, 53, 58, 63, 64, 74, 79, 80, 89, 90, 91, 92, 93, 95, 97, 98, 102, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 133, 134, 139, 140, 141, 149, 150, 151, 160, 161, 162, 164, 165, 166, 168, 172, 178, 179, 183, 184, 185, 186, 187, 191, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 231, 232, 253, 254, 255, 256, 259, 260, 261, 263, 264, 273, 274, 280, 281, 282, 283], "default_model": 22, "defaultrevis": 232, "defeult": 90, "defici": 267, "defin": [3, 32, 38, 48, 88, 89, 90, 91, 94, 100, 107, 109, 118, 143, 190, 198, 226, 227, 228, 229, 234, 238, 240, 241, 242, 245, 247, 253, 254, 255, 256, 260, 261, 263, 264, 266, 267, 270, 280, 283, 284], "define_a_password": 42, "define_default_rout": 245, "definit": [2, 30, 74, 91, 194, 238, 245, 246, 247, 248, 253, 254, 267, 276, 282, 283], "deg": 254, "degrad": 267, "degre": [64, 254], "delawar": 241, "deleg": 191, "delet": [7, 8, 11, 12, 14, 17, 28, 29, 59, 60, 110, 112, 114, 116, 120, 161, 162, 164, 184, 197, 199, 228, 238, 250, 254, 255, 273, 281, 282], "delete_fil": [112, 114, 116, 120, 164, 260, 261, 263, 264], "delete_video": [161, 162], "delimit": 254, "deliv": [2, 45, 51, 52, 53, 163, 172, 191, 231, 245, 246, 266, 276], "deliveri": 267, "delta": 253, "demand": [58, 86, 112, 113, 140, 149, 161, 178, 186, 245, 249], "demo": [35, 252, 267, 274, 280, 284], "democrat": [34, 250], "demograph": [31, 32], "demonstr": [100, 102, 103, 130, 191, 237, 245, 246, 250, 259, 267, 270, 272], "deni": [109, 121, 130, 139, 172, 198, 232], "denot": 254, "dens": [61, 63, 147], "dent": 254, "dep": 282, "depend": [3, 6, 11, 21, 40, 45, 51, 52, 53, 55, 57, 62, 75, 88, 91, 92, 96, 98, 103, 104, 105, 108, 112, 114, 115, 119, 120, 128, 129, 135, 145, 146, 154, 155, 161, 167, 176, 182, 184, 198, 199, 200, 201, 203, 204, 221, 229, 238, 241, 245, 249, 255, 259, 260, 261, 262, 263, 264, 274, 281, 282, 283], "dependabot": 238, "depends_on": [112, 114, 116, 123, 124, 140, 141, 149, 150, 260, 261, 263, 264], "depict": 267, "deploi": [2, 34, 43, 44, 48, 50, 53, 58, 77, 91, 97, 112, 114, 116, 122, 140, 141, 149, 150, 163, 164, 184, 190, 195, 196, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 228, 229, 230, 231, 232, 238, 245, 246, 248, 250, 254, 259, 265, 267, 270, 273, 275, 276, 279, 280, 281, 282], "deploy": [2, 32, 38, 42, 53, 58, 89, 91, 93, 104, 105, 107, 109, 110, 111, 112, 113, 114, 116, 118, 121, 123, 124, 126, 127, 131, 132, 134, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 161, 162, 164, 166, 170, 171, 173, 174, 175, 178, 179, 181, 183, 184, 186, 187, 189, 194, 196, 198, 199, 200, 201, 214, 215, 216, 227, 230, 234, 238, 241, 245, 246, 249, 254, 265, 267, 270, 273, 274, 275, 276, 277, 279, 280, 281, 282, 283], "deploy_gmc": 282, "deploy_method": 198, "deployemnt": 238, "deployment_typ": [90, 110], "deployt": [205, 206, 207, 208, 209, 211, 217, 219], "deprec": [241, 253, 282], "depth": 254, "deriv": [98, 115, 160, 232, 260, 261, 263, 264, 267], "derogatori": 237, "descend": 64, "describ": [2, 12, 73, 89, 91, 109, 112, 114, 121, 139, 160, 161, 195, 238, 241, 254, 267, 276], "descript": [2, 3, 31, 42, 51, 110, 121, 163, 190, 191, 195, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 238, 244, 253, 254, 267], "descriptor": [88, 90], "design": [2, 3, 5, 7, 20, 23, 24, 25, 28, 31, 34, 42, 45, 54, 59, 65, 67, 70, 72, 73, 74, 86, 88, 91, 94, 121, 122, 163, 168, 190, 191, 194, 200, 231, 232, 238, 241, 244, 259, 265, 267, 276], "desir": [45, 107, 118, 126, 127, 134, 135, 144, 153, 166, 175, 181, 189, 227, 230, 272], "desktop": [112, 113, 123, 131, 140, 149, 161, 178, 186, 273], "destin": 232, "destini": 266, "detail": [2, 7, 9, 10, 20, 28, 59, 65, 76, 82, 88, 90, 91, 92, 93, 95, 97, 100, 103, 107, 110, 111, 112, 113, 114, 118, 121, 123, 124, 131, 140, 143, 149, 156, 160, 161, 164, 166, 168, 169, 172, 178, 186, 190, 194, 198, 200, 203, 204, 221, 226, 227, 230, 234, 238, 240, 241, 244, 253, 254, 255, 256, 267, 268, 270, 273, 274, 276], "detaild": 222, "detect": [31, 34, 121, 190, 229, 232, 238, 248, 253, 259, 266, 267, 277, 280, 281, 282, 283], "determin": [34, 45, 50, 112, 113, 114, 115, 116, 164, 184, 198, 232, 237, 241, 253, 260, 261, 263, 264, 266, 267], "determinist": 253, "dev": [11, 13, 16, 17, 18, 19, 108, 111, 112, 113, 114, 116, 119, 120, 128, 129, 135, 137, 138, 145, 146, 154, 155, 164, 167, 176, 182, 198, 236, 238, 243, 260, 261, 263, 264, 266, 267, 283], "devault": 253, "develop": [2, 3, 77, 94, 95, 109, 121, 130, 135, 168, 191, 196, 200, 236, 238, 240, 241, 243, 244, 245, 246, 250, 252, 253, 254, 255, 259, 261, 265, 266, 267, 268, 276, 283], "developercertif": 241, "devic": [6, 54, 55, 75, 88, 89, 91, 115, 145, 146, 164, 167, 194, 201, 204, 221, 222, 230, 234, 238, 283], "device_0": 91, "devop": 250, "df0c11": 280, "df58fe5": 283, "df5f6f3": 282, "dfaf479": 282, "dfc2c1e": 282, "dfdd08": 280, "diagnosi": 267, "diagram": [3, 7, 100, 123, 124, 238, 267], "dialog": [119, 120, 164, 167, 176], "dialogu": [57, 119, 120, 164, 167, 176], "dice": [260, 261, 263, 264], "dicscript": 282, "didn": 198, "differ": [3, 12, 20, 23, 24, 74, 86, 90, 92, 98, 100, 109, 110, 112, 113, 114, 116, 123, 124, 125, 127, 137, 138, 144, 153, 161, 162, 164, 166, 168, 184, 185, 186, 187, 194, 196, 198, 199, 200, 226, 227, 229, 232, 237, 238, 250, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 274, 281, 283], "differenti": 267, "difficulti": 248, "diffus": [40, 284], "digit": 249, "digraph": 256, "dimens": [82, 112, 113, 114, 115, 116, 164, 184, 253, 260, 261, 263, 264, 267], "dimension": 267, "ding": [193, 236, 240, 242, 267], "dir": [78, 283], "direct": [37, 88, 110, 123, 124, 240, 241, 253, 254, 255, 267, 274], "directli": [42, 46, 47, 48, 95, 112, 114, 123, 124, 172, 178, 179, 191, 196, 200, 244, 250, 251, 254, 255, 267, 272], "director": 240, "directori": [80, 88, 90, 91, 95, 100, 117, 125, 133, 142, 180, 188, 194, 200, 201, 203, 204, 208, 214, 215, 216, 218, 221, 225, 228, 234, 254, 255, 259, 268, 282, 283], "dirnam": 270, "disabl": [44, 89, 225, 237, 273, 281, 283], "disable_connect": 225, "disablewatch": 225, "disclaim": [35, 239, 267], "discord": [25, 33, 36, 37, 39, 49, 56], "discount": 267, "discourag": 254, "discoveri": [222, 225, 273], "discrep": 98, "discriminatori": 241, "discuss": [31, 98, 240, 241, 243, 246, 267], "disk": [78, 184, 267, 270], "disparag": 237, "dispatch": [5, 100, 283], "displai": [92, 110, 145, 146, 154, 155, 164, 167, 249, 254, 256, 259, 276, 283], "disrespect": [31, 38], "disrupt": 245, "dist": 115, "distanc": 74, "distance_strategi": 18, "distance_threshold": [66, 67, 68, 72, 74], "distilledbert": [32, 38], "distribut": [78, 93, 97, 234, 245, 267], "diverg": 267, "divers": [58, 86, 163, 172, 191, 237, 241, 267], "divid": [9, 256], "dkr": 272, "dl": [92, 249, 259, 276], "dn": 274, "do": [29, 34, 35, 57, 64, 89, 93, 102, 110, 111, 112, 113, 114, 123, 124, 140, 141, 149, 150, 161, 162, 164, 184, 186, 187, 192, 197, 198, 199, 200, 208, 238, 248, 249, 253, 254, 255, 259, 260, 261, 263, 264, 267], "do_sampl": [41, 44, 45, 50, 104, 105, 107, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 164, 173, 174, 178, 179, 197, 198, 202, 216, 227, 230, 261, 263, 264, 270], "doc": [3, 5, 9, 11, 49, 64, 77, 78, 80, 82, 95, 103, 137, 138, 184, 192, 197, 198, 199, 225, 229, 238, 241, 250, 253, 254, 255, 265, 266, 272, 273, 280, 281, 282, 283], "doc_base_url": [119, 141, 146], "doc_guidelin": 254, "doc_tag": 255, "docarrai": [23, 161, 162, 253, 283], "docgrad": 100, "docindexretriev": [137, 138, 242, 282, 283], "docker": [9, 77, 79, 80, 81, 83, 84, 85, 88, 90, 95, 97, 100, 103, 107, 118, 126, 134, 136, 143, 160, 163, 168, 172, 175, 181, 183, 185, 189, 194, 195, 197, 227, 231, 232, 236, 238, 240, 247, 249, 265, 268, 270, 272, 273, 274, 277, 279, 280, 281, 282, 283], "docker_build_imag": 238, "docker_compos": [57, 58, 100, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 164, 172, 173, 174, 184, 185, 186, 187, 238, 247, 260, 261, 263, 264, 268, 280, 282], "docker_compose_bridgetower_embedding_endpoint": 23, "docker_compose_embed": [24, 26, 27], "docker_compose_guardrail": 34, "docker_compose_int": 41, "docker_compose_llm": [43, 44, 45, 46, 47, 50], "docker_compose_multimodal_embed": 23, "docker_compose_rerank": [63, 64], "docker_compose_retriev": [67, 69, 70, 72, 73, 74], "docker_image_build": 238, "docker_image_list": 282, "docker_volume_directori": 79, "dockercompos": 250, "dockerfil": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 86, 88, 100, 103, 104, 105, 111, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 238, 239, 247, 260, 261, 263, 264, 281, 282, 283], "dockerfile_hpu": 249, "dockerfli": 283, "dockerhub": [268, 281, 282], "docretriev": [191, 265], "docs_blob": 254, "docs_path": 97, "docs_raw": 254, "docs_titl": 255, "docsum": [44, 140, 141, 166, 168, 190, 194, 195, 200, 242, 252, 254, 268, 279, 280, 281, 282, 283, 284], "docsum_gaudi": 143, "docsum_xeon": 143, "docsumgaudi": 281, "document": [0, 2, 5, 12, 19, 40, 45, 53, 61, 63, 65, 67, 70, 72, 73, 74, 78, 80, 86, 89, 91, 94, 97, 101, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 131, 132, 134, 136, 137, 138, 143, 147, 149, 150, 157, 158, 161, 162, 165, 166, 168, 170, 171, 172, 173, 174, 175, 178, 179, 181, 184, 186, 187, 189, 190, 191, 195, 196, 200, 202, 227, 234, 241, 242, 243, 244, 245, 249, 252, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 270, 272, 274, 276, 277, 279, 280, 282, 283, 284], "document_load": 78, "documentgrad": 5, "docutil": [254, 255], "docx": 283, "doe": [12, 36, 89, 115, 126, 134, 175, 181, 189, 198, 199, 225, 229, 254, 260, 261, 263, 264, 282], "doesn": [228, 238, 254, 255], "dog": [30, 38, 185], "dolpher": 242, "domain": [94, 95, 109, 241, 249, 250, 259, 267], "domino": [236, 266], "don": [112, 113, 123, 131, 140, 149, 161, 178, 186, 200, 201, 202, 203, 228, 254, 266, 270, 273, 274], "done": [3, 30, 57, 64, 89, 107, 115, 118, 126, 134, 143, 175, 181, 189, 198, 199, 227, 243, 253, 254, 255, 260, 261, 263, 264, 267, 274], "dot": 256, "doubl": [198, 254], "down": [2, 69, 94, 115, 184, 199, 238, 245, 246, 249, 254, 260, 261, 263, 264, 267, 273, 276], "download": [19, 30, 48, 57, 92, 93, 95, 99, 109, 111, 112, 113, 114, 116, 127, 144, 148, 153, 156, 161, 162, 166, 169, 178, 179, 184, 198, 201, 203, 208, 214, 215, 216, 218, 225, 239, 259, 267, 268, 270, 273, 280], "downstream": [64, 160, 282], "downtim": 245, "dpanic": 229, "draft": 276, "drag": 250, "drain": 273, "draw": [243, 257], "drive": [261, 266], "driven": [147, 249, 250], "driver": [109, 121, 130, 139, 160, 172, 185, 222, 234, 261, 273, 281], "drop": [11, 250], "dtype": [115, 117], "du": 242, "duckduckgo": [100, 191], "due": [96, 98, 172, 218, 234, 248, 249, 254], "dump": [3, 11, 17, 18, 35, 281], "duplic": [229, 281, 283], "durat": [57, 64, 94, 184], "dure": [30, 51, 52, 64, 88, 115, 160, 194, 208, 231, 234, 237, 238, 250, 254, 255, 267, 274], "dynam": [30, 95, 107, 109, 118, 136, 137, 138, 143, 160, 191, 196, 226, 227, 230, 238, 246, 259, 270, 281, 284], "e": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 21, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 81, 86, 88, 90, 97, 98, 103, 111, 112, 114, 115, 122, 157, 158, 161, 162, 170, 171, 185, 194, 198, 199, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 225, 234, 237, 238, 239, 249, 250, 254, 255, 260, 261, 263, 264, 266, 267, 272, 273, 274, 283], "e0b3b57": 283, "e0bc5f2": 283, "e102291": 283, "e10dd14497a8": [263, 264], "e12baca": 282, "e156101": 282, "e1b8ce0": 283, "e1cd50": 281, "e1dad1": 280, "e1eb0e44f56059fc01aa0334b1dac313": [115, 260, 261, 263, 264], "e1fc81b1d542": 260, "e2": [88, 90, 238, 260, 261, 263, 264, 267, 280, 281, 282, 283, 284, 285], "e20acc": 280, "e22d413": 282, "e23745": 280, "e25a1f": 281, "e29865": 283, "e2a74f7": 283, "e32a51": 280, "e38041": 280, "e38ed6d": 283, "e3f29c3": 282, "e4201f4": [112, 118, 143, 186, 227, 263, 264, 283], "e48532": 283, "e4d3ff": 281, "e5": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 284], "e5affb9": 283, "e5ec38c": 283, "e6b4fff": 282, "e6f5d13": 283, "e71aba0": 282, "e80e56": 280, "e81e0e5": 282, "e85033": 280, "e878dc": 281, "e8c85e588a235a4bc4747a23b3a71d8f": 115, "e8ebd9": 280, "e93146b": 282, "e948a7": 280, "e983c32": 282, "ea3986c3cf82": [263, 264], "each": [2, 7, 9, 12, 35, 57, 64, 74, 89, 90, 91, 95, 97, 98, 109, 160, 161, 162, 172, 197, 199, 200, 202, 238, 241, 243, 244, 245, 246, 248, 251, 253, 254, 255, 259, 260, 261, 263, 264, 267, 273, 276, 280, 283], "eager": [53, 88, 261], "earli": [5, 115, 248, 259, 260, 261, 263, 264, 266, 267], "earlier": [119, 164, 167], "earn": 241, "eas": [20, 23, 24, 168, 222, 238, 250, 267], "easi": [45, 51, 52, 53, 110, 136, 168, 190, 200, 246, 250, 254, 255, 265, 267], "easier": [2, 119, 120, 164, 167, 176, 245, 246, 254, 276], "easiest": 168, "easili": [48, 80, 88, 109, 168, 184, 200, 241, 246, 250, 254, 259, 267], "east": 273, "easydata": 250, "eb51018": 282, "eb5cc8a": 282, "ebc165a": 282, "ebe6b47": 283, "ebee50c": 282, "ec2": [112, 113, 123, 131, 140, 149, 161, 178, 186], "ec32bf": 281, "ec3b2": 281, "ec4143": 282, "ecf333": 281, "echo": [89, 110, 198, 200, 201, 202, 203, 204, 221, 273], "econom": 237, "ecosystem": [130, 177, 185, 236, 241, 266, 267, 276, 283], "ecr": 272, "ed44b44": 283, "ed48371": 282, "ed776ac": 282, "ed99d47": 282, "edcc50f": 283, "edcd1e8": 282, "edf0d1": 281, "edg": [147, 191, 196, 267], "edit": [9, 89, 93, 102, 103, 110, 118, 227, 237, 255, 256, 259, 260, 274], "editor": [123, 124], "educ": [185, 237, 249], "ee0dcb": 281, "ee5b0f6": 282, "ee907d6": 283, "eec845": 280, "ef47f9": 281, "ef90fbb": 283, "ef97c2": 281, "effect": [89, 110, 137, 138, 196, 241, 250, 253, 255, 267, 268, 275, 276], "effici": [2, 7, 20, 23, 24, 25, 28, 42, 59, 65, 67, 70, 72, 73, 74, 86, 91, 109, 121, 136, 137, 138, 168, 172, 191, 196, 199, 225, 241, 245, 250, 259, 265, 267, 275, 276, 283], "effort": [163, 198, 200, 253, 267], "effortlessli": [109, 121, 130, 139, 160, 163, 172, 177, 183, 185, 250], "efi": 256, "egress": 248, "egressgatewai": 232, "eight": 95, "either": [9, 10, 12, 17, 18, 34, 36, 45, 61, 63, 102, 112, 114, 121, 130, 139, 147, 160, 172, 177, 185, 196, 198, 244, 249, 251, 253, 254, 260, 261, 263, 264, 267, 273, 274], "ek": [252, 271], "eksctl": 272, "elabor": [238, 244, 267], "elast": 272, "elasticsearch": 267, "elect": 241, "electron": 241, "element": [121, 160, 249, 254, 268], "eleutherai": 88, "elig": 230, "elimin": [232, 241, 254], "els": [115, 198, 267], "elsewher": [107, 118, 143, 227, 267], "email": [35, 198, 237, 238, 255], "emb": [17, 22, 25, 26, 27, 35, 69, 70, 72, 74, 109, 111, 112, 113, 114, 115, 116, 160, 164, 172, 173, 174, 202, 214, 253, 260, 261, 263, 264], "embad": 109, "embed": [2, 9, 10, 12, 13, 14, 15, 16, 18, 19, 33, 35, 36, 37, 39, 42, 43, 44, 49, 56, 61, 63, 65, 69, 73, 78, 80, 82, 86, 89, 90, 91, 97, 99, 107, 109, 110, 118, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 160, 168, 183, 190, 191, 201, 212, 214, 215, 219, 221, 223, 227, 229, 230, 238, 242, 245, 248, 249, 252, 259, 266, 267, 268, 279, 280, 281, 282, 283, 284], "embed_dimens": 71, "embed_model": [61, 80], "embed_queri": 2, "embed_vector": 2, "embedd": [101, 107, 118, 143, 227, 259], "embedder_port": [23, 161, 162], "embedding123": 229, "embedding_endpoint": 97, "embedding_model_id": [12, 17, 97, 110, 111, 112, 113, 114, 115, 116, 137, 138, 161, 162, 164, 173, 174, 214, 260, 261, 263, 264], "embedding_replicas_granular": 91, "embedding_replicas_max": 91, "embedding_replicas_min": 91, "embedding_service_host_ip": [2, 111, 113, 137, 138, 164, 173, 174, 184, 260, 261, 263, 264], "embedding_service_port": [2, 173, 174], "embedding_t": [115, 260, 261, 263, 264], "embedding_tei": [26, 27, 238], "embedding_tgi_gaudi": 2, "embeddings_langchain": 282, "embeddoc": 2, "ember": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221], "emebd": 97, "emerg": [249, 267], "empathi": 237, "emphasi": 254, "emploi": [23, 61, 63, 161, 162, 172, 241], "employ": 241, "empow": [2, 55, 56, 121, 250], "empti": [29, 89, 161, 162, 195, 214, 215, 216, 218, 253, 281, 282], "emptydir": 273, "en": [2, 17, 26, 27, 30, 61, 69, 70, 72, 74, 80, 86, 91, 99, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 164, 173, 174, 214, 254, 260, 261, 263, 264], "enabl": [2, 7, 13, 25, 28, 43, 44, 45, 50, 51, 52, 59, 74, 77, 89, 90, 109, 110, 112, 113, 114, 121, 123, 124, 135, 136, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 163, 164, 168, 172, 191, 197, 200, 201, 205, 206, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 219, 221, 232, 236, 241, 245, 246, 250, 252, 254, 259, 260, 261, 263, 264, 266, 267, 273, 276, 279, 280, 281, 282, 283, 284], "enable_hpu_graph": [114, 115], "encapsul": [2, 34, 190, 245, 246, 273, 276], "encod": [23, 35, 160, 161, 162, 248, 253, 267, 280], "encoding_format": 253, "encompass": [121, 266], "encount": [201, 229, 230, 267], "encourag": [238, 267], "encrypt": 267, "end": [2, 4, 5, 94, 96, 97, 110, 120, 176, 185, 201, 225, 232, 236, 238, 240, 241, 245, 246, 249, 250, 253, 254, 259, 260, 261, 263, 264, 273, 276, 279, 281, 282, 283], "endoftext": 122, "endpoint": [2, 3, 7, 8, 9, 11, 23, 26, 27, 29, 38, 42, 45, 48, 58, 60, 86, 88, 90, 92, 95, 100, 101, 107, 109, 118, 123, 124, 127, 136, 143, 144, 148, 153, 160, 165, 166, 184, 197, 198, 199, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 227, 229, 230, 245, 253, 259, 260, 261, 263, 264, 277, 281, 282, 283, 284], "enforc": [34, 53, 261, 267], "enforce_eag": 53, "engag": [3, 163, 241, 249, 266], "engin": [74, 86, 121, 172, 191, 194, 236, 238, 240, 244, 250, 266, 267, 273, 276, 283], "english": [98, 178, 179, 180, 181, 281], "enhanc": [31, 42, 61, 63, 65, 67, 70, 72, 73, 74, 97, 121, 123, 124, 172, 185, 190, 191, 194, 196, 231, 238, 245, 248, 249, 250, 267, 281, 282, 283, 285], "enhenc": 282, "enlarg": 281, "enorm": 266, "enough": [89, 184, 226], "ensur": [9, 13, 20, 23, 24, 31, 33, 34, 36, 58, 68, 88, 89, 90, 91, 109, 110, 121, 122, 127, 136, 137, 138, 144, 153, 163, 166, 168, 172, 191, 196, 198, 226, 238, 245, 250, 255, 259, 265, 266, 267, 268, 270], "ent": 264, "enter": [123, 124], "enterpris": [2, 3, 137, 138, 163, 168, 191, 194, 196, 198, 236, 238, 245, 246, 249, 252, 259, 275, 276, 277], "enterprisepii": 35, "entertain": 249, "entir": [2, 11, 182, 241, 245, 246, 260, 261, 263, 264, 266, 267], "entiti": [13, 35, 42, 95, 254], "entitl": 198, "entri": [1, 2, 87, 123, 124, 159, 168, 190, 193, 197, 245, 246, 253, 260, 264, 265, 267, 276], "entrypoint": [70, 81, 115, 238, 260, 261, 263, 264, 281, 282], "env": [3, 30, 42, 69, 80, 86, 93, 100, 101, 108, 109, 118, 119, 120, 128, 129, 135, 145, 146, 154, 155, 160, 167, 176, 182, 185, 198, 227, 230, 238, 246, 280, 281, 282, 283], "environ": [3, 9, 10, 30, 32, 35, 38, 48, 54, 57, 64, 69, 80, 91, 95, 100, 108, 110, 119, 120, 128, 129, 135, 143, 145, 146, 151, 154, 155, 168, 176, 182, 192, 194, 195, 198, 200, 218, 223, 225, 232, 234, 237, 246, 248, 250, 255, 259, 260, 261, 262, 263, 264, 267, 270, 274, 283], "envoi": [231, 232, 248], "envoyfilt": 232, "envsubst": [110, 198], "eo": 122, "eof": [197, 200, 273], "eot_id": 3, "ep": 223, "epistemolog": [31, 32], "epoch": 223, "equal": [89, 112, 113, 114, 115, 116, 164, 184, 198, 254, 260, 261, 263, 264], "equival": [98, 177, 190, 191], "era": 267, "erod": 32, "erron": 283, "error": [3, 11, 12, 17, 18, 32, 35, 38, 90, 94, 103, 109, 115, 121, 125, 130, 139, 172, 186, 187, 197, 198, 225, 229, 253, 255, 261, 263, 264, 267, 281, 282, 283], "escal": 267, "escap": 256, "especi": [39, 42, 98, 199], "essenc": [20, 23, 24], "essenti": [58, 110, 136, 137, 138, 172, 190, 194, 198, 223, 267], "establish": [28, 59, 110, 240, 241, 266, 267], "esteem": 241, "estim": 98, "et": 98, "etc": [5, 32, 38, 42, 45, 48, 51, 52, 90, 91, 100, 102, 110, 139, 168, 194, 198, 199, 200, 222, 225, 226, 238, 249, 250, 256, 259, 260, 261, 266, 267, 270, 273, 274, 279, 280, 282], "etcd": [273, 274], "ethic": 241, "ethnic": [237, 267], "eu": 267, "euclidean": 74, "eval": [88, 93, 95, 97, 110, 122, 242, 254, 267, 277, 281, 283, 284], "eval_crud": 97, "eval_multihop": 97, "evalu": [3, 87, 91, 95, 98, 198, 232, 242, 246, 265, 266, 276, 279, 280, 282, 283, 284], "evaluation_result": 122, "evangel": 266, "even": [20, 23, 24, 59, 89, 182, 239, 248, 254, 259, 267, 274], "event": [115, 195, 237, 240, 241, 253, 260, 261, 263, 264, 280, 282], "ever": 228, "everi": [9, 12, 30, 89, 110, 226, 230, 254, 267], "everyon": [2, 168, 237, 281], "everyth": 91, "everywher": 282, "evid": 97, "eviorn": 34, "evolut": 266, "evolv": [2, 245, 246, 266, 267, 276], "ex": 282, "exact": [253, 270], "exactli": [92, 259], "examep": 228, "exampl": [2, 3, 9, 12, 23, 30, 32, 34, 35, 38, 42, 45, 51, 52, 53, 54, 57, 58, 67, 69, 70, 72, 73, 74, 78, 80, 88, 89, 90, 91, 92, 95, 97, 99, 100, 101, 102, 103, 109, 112, 113, 114, 116, 118, 121, 122, 123, 124, 126, 130, 131, 132, 134, 139, 141, 143, 147, 159, 160, 161, 162, 164, 165, 166, 169, 172, 175, 177, 178, 179, 181, 184, 185, 186, 189, 193, 194, 195, 197, 198, 199, 214, 215, 216, 218, 226, 227, 230, 237, 240, 241, 244, 246, 251, 252, 253, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 273, 274, 276, 277, 279, 280, 281, 282, 283, 284], "example_data": 78, "exampleservic": 2, "exce": [94, 253, 267], "excel": [172, 267], "except": [3, 11, 12, 17, 18, 32, 35, 38, 50, 112, 114, 121, 122, 123, 124, 125, 203, 241, 254, 267], "exception": 267, "exchang": [119, 164, 167, 267], "excit": [2, 35, 168], "exclud": [225, 241, 273, 274, 283], "exclus": [253, 267], "exec": [89, 107, 110, 118, 126, 134, 143, 175, 181, 189, 198, 200, 226, 227, 228, 230, 270, 273], "execut": [3, 37, 45, 53, 89, 90, 107, 108, 111, 112, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 128, 129, 131, 132, 135, 140, 141, 143, 145, 146, 149, 150, 154, 155, 161, 162, 164, 167, 172, 176, 178, 179, 182, 184, 186, 187, 191, 192, 195, 227, 239, 240, 241, 246, 253, 267, 274, 277], "executor": [4, 229], "exempt": 241, "exhaust": 253, "exhibit": 185, "exist": [7, 12, 20, 23, 24, 80, 92, 115, 117, 125, 126, 133, 134, 142, 175, 180, 181, 188, 189, 198, 199, 201, 203, 225, 229, 238, 241, 244, 245, 249, 250, 253, 255, 267, 268, 274], "exit": [90, 93, 94, 115, 282], "exm_embed": 69, "expand": [94, 121, 130, 160, 177, 185, 267, 281, 283], "expans": 266, "expect": [3, 69, 115, 137, 138, 190, 238, 241, 260, 261, 263, 264, 267], "expedit": [34, 121, 255], "expens": [11, 13, 16, 17, 95, 115, 260, 261, 263, 264], "experi": [2, 51, 52, 112, 113, 114, 123, 124, 163, 185, 198, 237, 245, 246, 249, 254, 255, 260, 261, 263, 264, 267, 276, 283], "experiment": [91, 250, 267, 281, 282, 283], "expert": 100, "expir": [11, 198], "expirt": 197, "explain": [137, 138, 192, 254, 283], "explan": [237, 254], "explicit": 237, "exploit": 267, "explor": 250, "expor": 261, "export": [3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 79, 80, 81, 86, 92, 94, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 148, 149, 150, 151, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 189, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 227, 228, 230, 232, 234, 238, 250, 252, 259, 260, 261, 263, 264, 268, 270, 273, 283], "expos": [8, 9, 29, 32, 58, 60, 92, 95, 100, 117, 125, 133, 142, 165, 180, 188, 190, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 225, 245, 253, 259, 281, 283], "exposur": 267, "express": [35, 185, 237], "extend": [30, 196, 245, 254, 266, 267], "extens": [12, 30, 35, 48, 231, 232, 239, 245, 246, 254, 255, 256], "extern": [97, 100, 104, 105, 107, 109, 111, 113, 118, 123, 124, 133, 136, 137, 138, 140, 141, 143, 149, 150, 161, 162, 164, 173, 174, 184, 186, 187, 191, 198, 201, 203, 204, 221, 226, 227, 230, 237, 238, 254, 259, 260, 261, 263, 264, 267, 270, 273, 281, 282], "external_public_ip": [109, 110, 111, 112, 113, 114, 116, 121, 123, 130, 131, 132, 139, 160, 161, 162, 164, 172, 178, 179, 184, 185, 186, 268], "externalservic": 229, "externaltrafficpolici": 197, "extra": [30, 136, 227, 248, 254, 255, 267, 274, 281], "extract": [11, 13, 16, 17, 22, 43, 44, 64, 93, 95, 121, 139, 140, 141, 142, 143, 147, 148, 149, 150, 151, 160, 164, 172, 221, 259, 260, 261, 263, 264, 267, 280], "extrem": 89, "f": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 78, 80, 86, 88, 91, 100, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 156, 157, 158, 160, 161, 162, 164, 166, 169, 170, 171, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 198, 199, 200, 201, 202, 203, 206, 223, 225, 226, 227, 228, 230, 232, 242, 260, 261, 263, 264, 270, 273], "f04f061": 283, "f080f0": 256, "f08d411": 282, "f1": [198, 256], "f164f0": 281, "f1f866f": 283, "f2": [199, 256], "f23694": 281, "f2497c5": 282, "f2995a": 281, "f2a943": 280, "f3": 198, "f36629a": 282, "f37ce2": 280, "f3a8935": 282, "f3ffcd5": 282, "f416f84": 283, "f45e4c6": 282, "f45f50": 281, "f46f1f3": 282, "f4b029": 281, "f4b4ac": 281, "f4d123c": 283, "f4f3ea": 281, "f4f4da2": 283, "f510b69": 283, "f5a548": 281, "f5c7fa": 281, "f5dd58487": 89, "f5f1e32": 283, "f6354b": 281, "f6ae4fa": 283, "f6dd87": 281, "f73267": 281, "f7443f": 280, "f76685": 280, "f78aa9": 282, "f7a08f9867f9": [115, 260, 261, 263, 264], "f810f3b4d329": 115, "f84d91a": 283, "f892k": 89, "f8a295": 281, "f8d45e5": 282, "f8f8854": 283, "f9204f0": 283, "f9312b": 281, "f96b0e": 281, "f990f79": 283, "fa12083": 283, "fa80772de92c": 261, "fa8ef35": 282, "fa9788d": 283, "faa976b": 282, "fab1fbd": 282, "face": [51, 52, 98, 121, 147, 172, 208, 209, 214, 215, 216, 218, 236, 238, 249, 261, 267, 283], "facebook": 218, "facetoken": [226, 228, 234], "facil": [226, 250], "facilit": [2, 20, 23, 24, 28, 44, 59, 139, 147, 165, 190, 191, 194, 245, 246, 250, 259, 267, 276], "fact": [95, 160, 261], "factor": [245, 267], "factual": [25, 36, 37, 39, 49, 56, 109, 136, 137, 138, 191, 248, 259, 267, 277], "fail": [94, 109, 112, 114, 115, 116, 125, 200, 225, 234, 253, 255, 261, 263, 264, 268, 273, 274, 280, 281, 282, 283], "failur": [94, 115, 267, 282], "faint": 255, "fair": [29, 115, 237, 260, 261, 263, 264], "fairli": 237, "faiss": 267, "faissflat": [18, 74], "faissivfflat": 74, "faith": [96, 97, 148, 267], "fake": [22, 36, 273, 274, 281], "falcon": [43, 44, 50, 267], "fall": [121, 130, 172], "fals": [3, 35, 36, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 57, 89, 90, 98, 104, 105, 107, 112, 114, 122, 184, 195, 199, 200, 201, 202, 214, 215, 216, 225, 229, 232, 260, 273, 274, 281], "famili": 102, "familiar": [254, 268], "faq": [43, 154, 190, 191, 237, 265, 267, 281, 282], "faq_endpoint": 148, "faqgen": [88, 90, 149, 150, 166, 168, 190, 195, 238, 242, 277, 281, 282, 283, 284], "far": 253, "fashion": 156, "fast": [11, 13, 16, 17, 51, 52, 53, 65, 67, 70, 72, 73, 74, 267], "fastapi": 9, "faster": [23, 26, 27, 74, 89, 136, 267, 283], "fastrag": [267, 281], "fault": [2, 245, 246], "favor": 282, "fb0ea3d": 282, "fb4b8d2": 283, "fbaa024": 283, "fbaa6a": 281, "fbb81b6": 282, "fbdb1d": 281, "fe3d22": 281, "fe5f39": 280, "fe8ef3": 282, "feasibl": 250, "featur": [20, 22, 23, 24, 32, 51, 52, 53, 115, 168, 178, 179, 183, 191, 194, 195, 196, 198, 222, 225, 227, 232, 236, 244, 247, 249, 250, 253, 254, 259, 260, 261, 263, 264, 265, 275, 276, 281, 282, 283], "fecf4ac": 282, "fedramp": 267, "fee": 267, "feed": 160, "feedback": [237, 238, 267, 277, 282, 283, 284], "feedback_data": 29, "feedback_id": 29, "feedback_manag": [29, 238, 283], "feedbackmanag": 29, "feel": 238, "fenc": 254, "feng": [242, 253], "fetch": [7, 28, 48, 59, 109, 136, 137, 138, 160, 191, 197, 198, 223, 259, 283], "fetch_k": [66, 67, 68, 72, 74, 90, 91, 96, 97], "few": [48, 98, 99, 186, 187, 200, 254, 255, 261, 263, 264, 267, 268, 281], "fewer": [89, 254], "ff6f841": 283, "ff9v": 273, "ffmpeg": [12, 282], "fi": [57, 64, 198], "fidel": [236, 240], "field": [20, 23, 24, 29, 115, 165, 169, 191, 229, 232, 260, 263, 264, 267, 280], "fifti": 241, "figur": [35, 254, 267], "file": [1, 3, 9, 11, 12, 13, 14, 16, 17, 18, 19, 34, 35, 43, 44, 45, 46, 47, 48, 50, 63, 80, 87, 88, 89, 90, 92, 93, 95, 99, 100, 101, 102, 107, 108, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 133, 134, 137, 138, 140, 141, 142, 143, 144, 145, 146, 149, 150, 153, 154, 159, 161, 162, 164, 166, 167, 175, 180, 181, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 198, 199, 200, 206, 225, 226, 227, 230, 232, 238, 239, 241, 242, 244, 250, 251, 255, 256, 259, 267, 268, 270, 273, 274, 279, 280, 281, 282, 283], "file1": [11, 13, 16, 17, 18, 19, 184], "file2": [11, 17, 18, 19, 184], "file3": [11, 17, 18, 19, 184], "file_count": 80, "file_path": [11, 14, 17, 112, 114, 116, 164, 260, 261, 263, 264], "filecheck": 283, "filedir": 95, "filenam": [19, 95, 254], "filesystem": 200, "fill": [127, 144, 153, 166, 249, 256], "filter": [25, 33, 36, 37, 39, 49, 56, 57, 64, 202, 225, 229, 232, 248, 267, 283], "filterchain": 232, "fim": [88, 122], "final": [3, 4, 5, 61, 63, 89, 250, 255, 259, 267], "financ": 249, "financi": [35, 115, 260, 261, 263, 264, 267], "find": [3, 11, 65, 67, 70, 72, 73, 74, 89, 109, 110, 114, 121, 130, 139, 160, 172, 183, 185, 198, 200, 201, 203, 204, 221, 226, 228, 238, 243, 254, 255, 260, 261, 263, 264, 273, 276], "findstr": 111, "fine": [2, 11, 17, 18, 32, 38, 91, 199, 245, 246, 250, 254, 266, 267, 276, 277, 282, 283, 284], "fine_tun": [30, 156, 169], "fine_tuning_job_id": [30, 156, 169], "finetun": [156, 157, 158, 191, 238, 242, 250, 265, 282, 283], "finetune_config": 30, "finetuning_servic": 30, "fingerprint": 253, "finish": [80, 89, 95, 112, 113, 114, 115, 116, 166, 184, 274], "finish_reason": [253, 261], "fintun": 283, "firectli": 96, "firewal": [112, 260, 261, 263, 264], "first": [3, 6, 10, 11, 13, 16, 17, 23, 25, 26, 27, 33, 34, 36, 37, 39, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 57, 58, 61, 63, 67, 68, 69, 70, 72, 73, 74, 88, 94, 97, 98, 100, 107, 109, 110, 111, 112, 113, 114, 116, 118, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 148, 149, 150, 157, 158, 162, 164, 170, 171, 172, 174, 184, 186, 187, 198, 199, 203, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 227, 232, 238, 245, 255, 259, 260, 261, 263, 264, 267, 268, 273, 274, 282], "firstli": [96, 184], "firstnam": 254, "fiscal": [115, 202, 260, 261, 263, 264], "fit": [199, 241, 259], "five": [95, 98, 255], "fix": [2, 90, 121, 168, 238, 243, 249, 254, 255, 267, 280, 281, 282, 283], "flag": [90, 254, 255], "flagembed": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221], "flash_attention_recomput": [114, 115], "flavor": [238, 254], "flex": [112, 113, 123, 131, 140, 149, 161, 178, 186], "flexibl": [2, 23, 26, 27, 58, 88, 90, 168, 196, 245, 246, 259, 265, 266, 267], "flinng": 74, "float": [33, 39, 98, 253], "flore": 267, "flow": [7, 45, 50, 109, 115, 123, 124, 160, 183, 238, 246, 250, 255, 256, 259, 260, 261, 263, 264, 281, 282, 283], "flow_to": [2, 245], "flowchart": [249, 281], "flowchat": 283, "flowis": 250, "flowiseai": 250, "fly": [226, 238, 270], "fmt": [130, 131, 132, 133, 134, 204], "fn": 115, "focu": [2, 11, 13, 16, 17, 245, 246, 250, 267, 276], "focus": [46, 47, 77, 91, 237, 253, 267], "folder": [3, 17, 18, 32, 35, 38, 45, 51, 52, 53, 69, 80, 92, 93, 108, 110, 111, 112, 113, 119, 120, 128, 129, 135, 145, 146, 154, 155, 161, 162, 164, 166, 167, 176, 182, 184, 186, 198, 238, 244, 247, 251, 254, 259, 260, 261, 263, 264, 282, 283], "follow": [1, 3, 6, 8, 9, 11, 12, 13, 14, 16, 17, 18, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 56, 57, 58, 60, 67, 68, 69, 70, 72, 73, 74, 77, 80, 82, 87, 88, 89, 91, 92, 96, 97, 98, 99, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 156, 159, 160, 161, 162, 164, 166, 167, 168, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 227, 228, 229, 231, 232, 234, 237, 238, 239, 241, 244, 245, 249, 250, 251, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 272, 273, 274, 282], "fontcolor": 256, "fontsiz": 256, "foo": [78, 98], "foobar": 98, "footprint": 74, "forc": [214, 215, 216, 218, 253, 254, 273], "forgiv": 254, "fork": [238, 255], "form": [5, 11, 12, 13, 16, 17, 18, 19, 30, 32, 58, 109, 110, 111, 112, 113, 114, 115, 116, 137, 138, 156, 161, 162, 164, 169, 178, 179, 183, 184, 191, 197, 198, 202, 206, 227, 241, 245, 249, 254, 260, 261, 263, 264, 267, 268, 282], "format": [9, 12, 30, 45, 46, 47, 50, 75, 80, 93, 96, 135, 147, 225, 232, 238, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 279, 281, 282, 283, 285], "format_video_nam": 283, "former": 99, "formula": 267, "forrest": 248, "forth": 241, "fortifi": [34, 114], "forum": 243, "forward": [117, 125, 133, 142, 166, 180, 188, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 241, 267, 268, 273, 277, 282], "forwarded_port": 166, "found": [3, 12, 33, 67, 97, 110, 198, 199, 230, 236, 238, 240, 242, 243, 245, 254, 255, 270], "foundat": [236, 239, 241, 250, 267, 276], "four": [96, 114, 140, 179, 194, 236, 245, 255, 267, 276], "four_gaudi": 110, "fp": 249, "fp16": [51, 52], "fp32": 122, "fp_44709d6fcb": 253, "fragment": 254, "frame": [12, 31, 32, 64, 160, 191, 249, 267], "framework": [2, 3, 17, 18, 19, 38, 46, 47, 48, 90, 91, 110, 149, 150, 160, 172, 183, 190, 191, 238, 241, 246, 248, 250, 276, 283, 284], "franz": 98, "free": [6, 89, 136, 137, 138, 191, 232, 237, 238, 254, 267], "freeli": 267, "freez": [195, 281, 282, 283], "french": [98, 267], "frequenc": 253, "frequency_penalti": [50, 51, 53, 112, 114, 253, 283], "frequent": [147, 190, 191, 281], "fri": 249, "friendli": [2, 74, 94, 245, 246, 249, 250, 276], "from": [2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 19, 22, 23, 26, 27, 28, 29, 30, 32, 33, 34, 37, 38, 39, 42, 43, 51, 52, 59, 60, 61, 63, 64, 67, 74, 86, 88, 89, 91, 92, 93, 94, 95, 96, 97, 99, 100, 107, 109, 110, 112, 113, 114, 115, 116, 118, 121, 127, 130, 131, 136, 137, 138, 139, 140, 143, 144, 145, 146, 147, 149, 150, 153, 154, 155, 160, 161, 163, 164, 165, 166, 167, 168, 172, 176, 177, 178, 179, 181, 183, 185, 186, 187, 190, 191, 195, 197, 198, 199, 201, 202, 203, 204, 213, 214, 215, 216, 218, 220, 221, 226, 227, 228, 230, 232, 237, 238, 241, 243, 245, 248, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 273, 274, 275, 277, 280, 281, 282, 283, 284], "from_docu": 78, "from_list": 99, "from_text": 78, "front": [255, 276], "frontend": [58, 109, 111, 112, 113, 114, 116, 121, 130, 131, 132, 139, 140, 141, 149, 150, 161, 162, 164, 172, 173, 178, 179, 184, 186, 187, 260, 261, 263, 264, 281], "frontend_service_ip": 58, "frontend_service_port": 58, "fssl": [260, 273], "fstab": 273, "ftian1": [245, 246, 247], "fuel": [32, 61, 63], "fulfil": [2, 198, 245, 246, 276], "full": [1, 35, 87, 112, 113, 122, 123, 131, 140, 149, 159, 161, 172, 178, 183, 186, 193, 198, 254, 255, 267, 283], "fulli": [5, 168, 254, 265, 266, 267, 279], "func": 115, "function": [2, 3, 9, 25, 33, 36, 37, 39, 49, 56, 58, 64, 74, 78, 98, 102, 121, 122, 130, 163, 191, 196, 199, 226, 230, 238, 245, 246, 250, 253, 259, 261, 266, 270, 276, 279, 281, 282, 283], "function_cal": 3, "fund": 241, "fundament": [2, 245, 246, 259, 260, 261, 263, 264], "further": [9, 34, 61, 63, 100, 115, 123, 124, 126, 134, 143, 156, 169, 175, 181, 189, 191, 199, 200, 250, 253, 259, 260, 261, 263, 264, 283], "furthermor": [89, 239, 267], "futur": [2, 3, 102, 168, 184, 190, 225, 238, 245, 260, 261, 263, 264, 267], "fxr6v": 274, "g": [17, 32, 38, 51, 52, 90, 98, 106, 110, 111, 117, 125, 126, 127, 133, 134, 142, 144, 151, 153, 161, 162, 166, 175, 180, 181, 194, 198, 199, 200, 202, 223, 225, 226, 228, 238, 239, 250, 254, 255, 256, 266, 267, 272, 273, 274, 283], "ga": 256, "gadi": 267, "gain": [90, 97, 100, 163, 267], "gap": [109, 136, 137, 138, 156, 172, 191, 249, 259], "gaspump": 256, "gate": [51, 52, 53, 121, 139, 140, 141, 149, 150, 151, 273], "gatewai": [123, 124, 137, 138, 190, 196, 197, 198, 238, 244, 246, 249, 259, 260, 261, 263, 264, 280, 281, 282, 283, 284], "gather": [100, 191], "gaudi": [2, 3, 6, 30, 32, 38, 40, 42, 45, 75, 88, 89, 91, 97, 100, 112, 113, 115, 126, 134, 136, 137, 138, 143, 148, 161, 168, 175, 181, 186, 189, 190, 191, 195, 200, 201, 203, 204, 216, 218, 221, 227, 230, 238, 247, 249, 252, 254, 259, 262, 265, 266, 267, 268, 279, 280, 281, 282, 283, 284, 285], "gaudi2": [2, 6, 23, 38, 44, 53, 55, 75, 97, 102, 109, 121, 124, 130, 139, 147, 172, 177, 185, 190, 191, 249], "gaudi_default": 261, "gaug": [9, 223], "gb": [51, 52, 260], "gcng6": 273, "gcp": [267, 274, 284], "gdpr": 267, "gelsing": 6, "gemini": 267, "gemma": [267, 284], "gen": [198, 265, 267, 281], "gen6": 267, "genai": [2, 54, 88, 102, 103, 107, 118, 143, 168, 190, 191, 196, 227, 236, 241, 246, 253, 259, 275, 276, 279, 280, 281, 282, 283, 284], "genaicomp": [1, 3, 11, 13, 14, 16, 17, 29, 32, 35, 38, 48, 57, 58, 60, 64, 88, 100, 101, 103, 107, 109, 111, 112, 113, 114, 118, 123, 124, 126, 131, 132, 134, 137, 138, 140, 141, 143, 149, 150, 157, 158, 160, 161, 162, 164, 166, 168, 170, 171, 173, 174, 175, 178, 179, 181, 183, 184, 186, 187, 189, 190, 194, 195, 200, 202, 226, 227, 230, 238, 243, 246, 247, 249, 250, 255, 260, 261, 263, 264, 268, 270, 277, 281, 282, 283, 284, 285], "genaicompo": 247, "genaicompon": 194, "genaiev": [54, 87, 93, 95, 97, 110, 122, 168, 246, 250, 255, 258, 281, 282, 283, 285], "genaiexampl": [2, 95, 100, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 144, 149, 150, 151, 153, 159, 160, 161, 162, 164, 166, 168, 172, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 190, 191, 195, 200, 238, 244, 246, 247, 249, 251, 254, 255, 260, 261, 263, 264, 265, 268, 281, 282, 283, 284, 285], "genaiinfra": [168, 190, 192, 193, 195, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 216, 217, 218, 219, 221, 223, 227, 246, 247, 250, 252, 254, 255, 270, 281, 282, 283, 285], "genaiinfro_repo": [210, 214, 215], "genaistudio": 244, "gender": [32, 237], "gener": [1, 3, 5, 6, 12, 20, 22, 23, 24, 29, 30, 34, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 57, 58, 66, 67, 68, 70, 71, 72, 73, 74, 75, 86, 87, 88, 89, 91, 95, 96, 97, 98, 100, 102, 103, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 126, 128, 129, 130, 131, 132, 136, 137, 138, 139, 140, 141, 143, 145, 146, 154, 159, 160, 161, 162, 169, 172, 173, 174, 175, 178, 179, 181, 183, 184, 185, 186, 190, 191, 193, 199, 202, 214, 215, 216, 230, 231, 236, 238, 243, 245, 246, 247, 248, 249, 250, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 267, 274, 275, 276, 277, 279, 280, 281, 282, 283, 284], "generate_capt": [160, 161, 162], "generate_faq": 148, "generate_stream": 95, "generate_transcript": [160, 161, 162], "generated_text": [115, 202, 261, 263, 264], "generation_onli": 122, "geneva": 98, "genom": 267, "geometr": 98, "german": [98, 267], "get": [3, 5, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 24, 25, 26, 27, 29, 30, 33, 34, 36, 37, 39, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 60, 61, 63, 66, 68, 69, 70, 71, 72, 73, 74, 89, 94, 97, 99, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 130, 131, 133, 134, 139, 142, 143, 148, 151, 156, 161, 162, 164, 166, 169, 172, 175, 180, 181, 184, 188, 189, 190, 192, 195, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 225, 227, 228, 229, 230, 232, 234, 238, 243, 245, 253, 254, 255, 256, 260, 261, 263, 264, 267, 270, 272, 273, 274, 275, 276, 280, 281, 282, 283], "get_context": 148, "get_fil": [19, 112, 114, 116, 120, 164, 184, 260, 261, 263, 264, 282], "get_top_doc": 64, "get_video": [19, 161, 162, 184], "getenv": 2, "gettext": 198, "gfpgan": 249, "gghcr": 118, "gha": 238, "ghcr": [3, 17, 26, 27, 34, 41, 42, 43, 44, 45, 50, 63, 69, 70, 72, 74, 86, 91, 97, 107, 112, 114, 115, 118, 141, 143, 150, 162, 186, 187, 214, 215, 216, 227, 260, 261, 263, 264, 282, 283], "gif": 254, "gigabyt": 89, "girl": 30, "git": [2, 12, 45, 54, 61, 77, 88, 91, 93, 95, 97, 100, 103, 104, 105, 110, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 195, 223, 225, 238, 255, 260, 261, 263, 264, 268, 270, 274], "github": [1, 2, 11, 13, 16, 17, 23, 45, 54, 57, 61, 77, 87, 88, 89, 91, 92, 93, 95, 97, 100, 103, 104, 105, 110, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 159, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 193, 195, 198, 199, 200, 223, 225, 236, 238, 241, 242, 243, 252, 254, 255, 258, 259, 260, 261, 263, 264, 265, 266, 268, 270, 273, 274, 275, 277, 282, 283], "githubusercont": [109, 112, 198, 202, 227, 273], "gitignor": 282, "give": [168, 172, 173, 174, 175, 184, 225, 237, 265, 267, 274, 283], "given": [3, 89, 117, 199, 225, 247, 248, 249, 253, 254, 267], "global": [200, 201, 203, 204, 208, 209, 213, 214, 215, 216, 218, 220, 221, 232, 255, 281], "glue": 250, "gm": 283, "gmc": [107, 118, 126, 134, 143, 168, 175, 181, 189, 190, 196, 198, 238, 250, 252, 255, 259, 262, 280, 281, 282, 283, 284, 285], "gmc_codegen": 126, "gmc_codetran": 134, "gmc_searchqa": 175, "gmc_translat": 181, "gmc_visualqna": 189, "gmcconnector": 229, "gmcmanag": [190, 226, 270], "gmconnecto": 229, "gmconnector": [107, 118, 143, 227, 228, 230, 270], "gmcontrol": 229, "gmcrouter": [190, 226, 270, 282], "gmctarget": 229, "gmcyaml": [226, 270], "gnr": 267, "go": [2, 5, 12, 51, 52, 53, 93, 95, 110, 168, 178, 198, 225, 243, 254, 255, 259, 260, 261, 263, 264, 274], "go_": 225, "goal": [4, 238, 244, 250, 266, 267], "goe": 254, "golang": [130, 131, 132, 133, 134, 204, 280], "golden": 95, "gomaxproc": 225, "good": [35, 98, 250, 254, 255], "goodwil": 241, "googl": [172, 173, 174, 175, 198, 228, 234, 282], "google_api_kei": [86, 172, 173, 174, 175, 219, 228], "google_cse_id": [86, 172, 173, 174, 175, 219, 228], "googleapi": [161, 162, 232], "got": 98, "gotcha": 200, "goto": [4, 203], "govern": [241, 267], "gpg": 273, "gpqa": 250, "gpt": [13, 43, 44, 50, 88, 100, 191, 253, 267], "gpt3": 284, "gpu": [11, 17, 18, 51, 52, 53, 168, 191, 201, 230, 238, 252, 259, 262, 265, 268, 280, 282, 283, 284], "gracefulli": 237, "grade": [2, 137, 138, 236, 266, 275, 276], "gradio": 249, "grafana": [9, 250, 258, 282], "gragh": 42, "grain": [2, 225, 245, 246, 276], "gram": 98, "grammar": 267, "grammat": 98, "grant_typ": [197, 198], "granular": [91, 267], "graph": [5, 74, 95, 100, 123, 124, 190, 191, 253, 254, 263, 264, 266, 267, 277, 280, 283, 284], "graphic": [249, 267], "graphrag": [283, 284], "graphviz": [243, 254, 255, 257], "grasp": 163, "great": [97, 259], "greater": 253, "greatli": [98, 254], "green": [33, 195, 254], "grei": 256, "grep": [57, 64, 89, 109, 112, 113, 114, 116, 166, 197, 199, 202], "grid": 254, "grok": [130, 131, 132, 133, 134, 191, 204, 282, 284], "ground": [250, 267], "ground_truth": [96, 99], "ground_truth_fil": 96, "grounded": 267, "groundtruth": 96, "groundwork": 225, "group": [96, 112, 113, 123, 131, 140, 149, 161, 178, 186, 198, 240, 241, 254, 274, 276], "group1": 198, "group2": 198, "group_var": 274, "groupnam": 198, "grow": [115, 200, 263, 264, 267], "grubb": [236, 240], "gsm8k": 88, "gte": [43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221], "gtv": [161, 162], "guarante": [89, 253, 267], "guard": [31, 32, 34, 208, 248, 261, 267, 277, 281, 282, 283, 284], "guardrail": [31, 32, 33, 35, 36, 37, 38, 39, 190, 201, 226, 231, 238, 242, 244, 252, 266, 267, 270, 279, 281, 282, 283, 284], "guardrail_service_host_ip": 261, "guardrails_tgi": 34, "guarente": 253, "guess": 254, "gui": [94, 250, 267], "guid": [2, 8, 29, 51, 52, 53, 60, 82, 97, 102, 109, 110, 112, 121, 122, 127, 130, 139, 144, 147, 153, 156, 160, 165, 169, 172, 177, 183, 185, 194, 197, 198, 218, 223, 228, 238, 250, 254, 265, 267, 272, 274, 276, 280, 282], "guidanc": 110, "guidelin": [2, 45, 168, 239, 241, 243, 257, 267], "gun": 34, "guo": 242, "guradrails_model_id": 261, "gv7b9": 230, "gz": [92, 225, 259, 273], "h": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 227, 229, 230, 232, 260, 261, 263, 264, 268, 270], "h1": [254, 255, 282], "h100": 234, "h2": 254, "h3": [254, 255], "h4": [254, 255], "h5": 254, "h6": [254, 255], "h7": 254, "ha": [3, 5, 11, 12, 22, 35, 53, 82, 91, 95, 97, 98, 110, 111, 112, 113, 118, 122, 141, 150, 161, 162, 164, 184, 186, 195, 198, 199, 201, 203, 204, 221, 227, 229, 230, 232, 238, 241, 248, 254, 255, 260, 261, 263, 264, 266, 267, 270, 273, 274, 280], "habana": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 88, 91, 97, 109, 114, 115, 121, 130, 139, 158, 160, 171, 172, 185, 222, 223, 261, 280, 282], "habana_framework": 115, "habana_metric_url": 223, "habana_visible_devic": [3, 6, 30, 34, 40, 42, 46, 47, 55, 75, 97, 114, 115, 158, 171, 261], "habanalab": 190, "hack": 267, "had": 261, "hadolint": 238, "hafner": [236, 240], "haihao": [1, 87, 159, 253], "half": [241, 254], "hallucin": [33, 88, 109, 232, 246, 248, 258, 259, 267, 281], "halt": 34, "halucin": 250, "halv": 117, "han": 242, "hand": [89, 254], "handl": [20, 23, 24, 42, 65, 67, 70, 72, 73, 74, 80, 88, 90, 182, 183, 190, 196, 198, 226, 238, 245, 254, 267, 281, 283], "handle_request": 245, "handler": [9, 245], "hang": 259, "haoranxu": [178, 179, 191], "happen": [89, 115], "happi": 77, "har": [3, 122, 147, 172, 191, 236, 246, 258, 266, 267, 276, 279, 284], "harass": 237, "hard": [199, 254], "hardcod": 200, "hardwar": [46, 47, 51, 52, 91, 109, 130, 160, 168, 177, 185, 191, 195, 249, 259, 261, 262, 265, 266, 267, 268, 283], "hardware_info": 91, "hardware_info_gaudi": 91, "harm": [34, 38, 237], "hash": 273, "hasn": 261, "hasten": 34, "hat": [236, 240, 259, 262, 266, 282, 283], "hate": [34, 38, 39], "have": [1, 2, 3, 12, 13, 17, 34, 35, 39, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 63, 67, 68, 70, 72, 73, 74, 87, 88, 89, 91, 92, 93, 95, 98, 99, 104, 105, 107, 110, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 131, 132, 133, 134, 139, 140, 141, 142, 143, 144, 149, 150, 153, 156, 159, 161, 162, 163, 166, 168, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 191, 193, 194, 195, 198, 199, 200, 225, 226, 227, 228, 230, 231, 232, 234, 237, 238, 241, 244, 246, 248, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 282], "haven": 255, "haystack": [71, 113, 267, 284], "hbchr": 230, "hbq78": 274, "hdr4k": 89, "head": [30, 45, 94, 95, 112, 113, 140, 149, 161, 178, 186, 202, 236, 238, 240, 244, 255, 282, 283], "head_node_ip": 30, "header": [9, 77, 197, 254, 255, 282], "headless": [94, 223], "health": [69, 70, 72, 74], "health_check": [24, 26, 27, 34, 43, 44, 45, 46, 47, 50, 51, 61, 63, 66, 68, 69, 70, 71, 72, 73, 74, 184], "healthi": 237, "heard": [115, 263, 264], "heart": [238, 244, 255], "heavi": [20, 23, 24, 89, 254], "height": 256, "hellaswag": 88, "hello": [21, 22, 25, 26, 27, 78, 98, 111, 112, 113, 114, 116, 130, 131, 132, 133, 134, 161, 162, 164, 173, 174, 204, 207, 259, 260, 261, 263, 264], "helm": [89, 97, 168, 192, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 238, 242, 254, 262, 273, 279, 280, 281, 282, 283, 284], "helmchart": [250, 280, 281, 282, 283], "help": [6, 9, 29, 33, 45, 50, 51, 75, 88, 93, 96, 97, 110, 115, 168, 198, 199, 200, 202, 223, 225, 232, 238, 243, 250, 253, 259, 261, 263, 264, 267, 268], "here": [2, 5, 9, 11, 12, 14, 17, 29, 30, 42, 48, 58, 67, 69, 80, 89, 92, 95, 100, 103, 106, 108, 109, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 125, 127, 128, 129, 131, 132, 133, 135, 141, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 164, 166, 167, 168, 169, 172, 175, 176, 180, 182, 184, 196, 198, 200, 201, 203, 204, 208, 209, 214, 215, 216, 218, 221, 222, 226, 228, 231, 232, 234, 236, 243, 244, 251, 254, 255, 256, 259, 260, 261, 262, 263, 264, 266, 267, 268, 271, 274, 278, 281], "herebi": 249, "herein": 241, "herm": 49, "hf": [30, 42, 45, 50, 51, 52, 53, 54, 57, 63, 88, 95, 99, 104, 105, 112, 114, 118, 121, 123, 124, 125, 156, 160, 161, 162, 164, 173, 174, 185, 186, 187, 191, 203, 227, 230, 267, 282], "hf_cach": 95, "hf_cache_dir": 95, "hf_chat_processor": 45, "hf_endpoint": [112, 114, 282], "hf_home": 95, "hf_hub_disable_progress_bar": [261, 263, 264], "hf_hub_enable_hf_transf": [261, 263, 264], "hf_llm_model": 45, "hf_token": [3, 30, 32, 34, 35, 38, 43, 44, 45, 50, 63, 97, 110, 112, 114, 157, 158, 170, 171, 261, 263, 264], "hftoken": [201, 203, 204, 208, 209, 216, 218, 221, 281], "hi": [29, 249], "hidehyperthread": 89, "hierarch": [5, 100, 191], "hierarchi": [115, 254, 260, 261, 263, 264], "high": [2, 20, 23, 24, 43, 44, 50, 88, 89, 90, 98, 100, 109, 113, 121, 122, 123, 124, 125, 139, 140, 141, 142, 143, 149, 150, 151, 161, 164, 178, 186, 196, 203, 221, 245, 249, 267, 276, 281, 282, 283], "higher": [2, 3, 37, 98, 190, 225, 245, 246, 253, 259, 267, 276], "highest": [65, 67, 70, 72, 73, 74, 86, 260, 261, 263, 264, 267], "highli": [65, 67, 70, 72, 73, 74, 238, 250], "highlight": [90, 123, 124, 267, 282, 283], "hint": 283, "hipaa": 267, "histogram": 9, "histor": [119, 120, 164, 167, 176, 185], "histori": [29, 119, 120, 163, 166, 167, 176, 190, 267, 277, 280, 281, 282], "hit": [89, 97, 267], "hl": 172, "hnoeiwdiqkl4kact9go0u4bxoaaaaaelftksuqmcc": [55, 56, 161, 162, 186, 187], "hnswlib": 267, "hold": [241, 255, 270], "holder": 241, "holidai": [173, 174], "home": [3, 11, 22, 35, 90, 92, 93, 110, 115, 255, 259, 260, 263, 264, 273, 274, 276, 282], "hometown": 101, "honest": [50, 51, 202], "hood": 254, "hook": 225, "hoong": 242, "hop": [248, 267], "horizont": [199, 254, 256], "horizontalpodautoscal": [200, 201, 214, 215, 216, 252, 283], "host": [2, 3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 58, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 88, 89, 94, 97, 103, 111, 112, 113, 114, 115, 116, 121, 123, 124, 140, 149, 150, 157, 158, 164, 170, 171, 184, 186, 187, 198, 208, 214, 215, 216, 218, 225, 226, 228, 232, 234, 238, 245, 248, 260, 261, 263, 264, 274], "host_ip": [8, 16, 18, 19, 29, 60, 95, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 133, 137, 138, 139, 140, 141, 149, 150, 151, 160, 161, 162, 164, 165, 172, 173, 174, 178, 179, 184, 185, 186, 187, 198, 259, 260, 261, 263, 264, 268, 282], "hostnam": [3, 6, 12, 19, 23, 40, 45, 55, 57, 64, 67, 75, 95, 101, 104, 105, 111, 160, 173, 260, 261, 263, 264, 273, 274], "hostpath": [197, 226], "hotpotqa": 267, "hour": [57, 263, 264], "hous": 256, "how": [2, 3, 30, 34, 38, 42, 51, 52, 53, 89, 92, 102, 111, 112, 113, 114, 121, 127, 144, 153, 156, 165, 168, 169, 172, 185, 191, 192, 195, 200, 202, 208, 232, 238, 243, 245, 246, 250, 252, 253, 254, 255, 256, 260, 261, 263, 264, 265, 267, 268, 273, 276, 277, 283], "how_to_validate_servic": 238, "howev": [61, 63, 98, 110, 199, 200, 238, 241, 245, 248, 254, 260, 261, 263, 264, 267], "howpublish": [1, 87, 159, 193], "hp_token": [32, 35, 38], "hpa": [200, 201, 214, 215, 216, 252, 282, 283], "hpu": [6, 23, 51, 52, 53, 55, 75, 88, 91, 105, 106, 109, 110, 114, 115, 117, 121, 124, 125, 130, 132, 133, 138, 139, 141, 142, 150, 151, 160, 162, 172, 174, 180, 185, 187, 188, 190, 238, 261, 268, 280, 282, 283], "hq": [11, 13, 16, 17], "hshen14": [245, 246, 247], "html": [94, 237, 254, 255, 256, 272, 280, 282, 283], "html_context": 255, "http": [1, 2, 3, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 100, 101, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 157, 158, 159, 161, 162, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 178, 179, 180, 184, 186, 187, 188, 189, 190, 193, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 227, 229, 230, 232, 236, 237, 238, 241, 243, 245, 248, 250, 254, 255, 259, 260, 261, 263, 264, 268, 270, 272, 273, 274, 276, 281, 282, 283], "http2": 232, "http_code": [161, 162, 197, 198], "http_connection_manag": 232, "http_filter": 232, "http_proxi": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 100, 103, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 127, 130, 131, 132, 137, 138, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 178, 179, 184, 185, 186, 187, 200, 260, 261, 263, 264, 268, 273, 274], "http_request_size_byt": 9, "http_request_size_bytes_count": 9, "http_request_size_bytes_sum": 9, "http_requests_tot": 9, "http_statu": 281, "httpendpoint": 89, "https_proxi": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 100, 103, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 127, 130, 131, 132, 137, 138, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 178, 179, 184, 185, 186, 187, 200, 260, 261, 263, 264, 268, 273, 274], "httpstatu": [161, 162], "huailong": 242, "hub": [35, 51, 52, 107, 109, 112, 113, 114, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 139, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 170, 171, 172, 174, 175, 178, 179, 181, 184, 186, 187, 189, 190, 226, 227, 231, 232, 238, 260, 261, 263, 264, 267, 268, 272, 281, 282, 283], "hug": [51, 52, 98, 121, 208, 209, 214, 215, 216, 218, 226, 228, 234, 236, 266, 267, 283], "huge": 238, "hugging_face_hub_token": [42, 51, 52, 114, 115, 148], "huggingfac": [3, 17, 26, 27, 34, 35, 40, 41, 42, 43, 44, 45, 50, 51, 52, 53, 63, 69, 70, 72, 74, 86, 91, 95, 97, 106, 107, 110, 111, 112, 113, 114, 115, 117, 118, 121, 125, 127, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 162, 164, 166, 180, 184, 186, 187, 190, 200, 201, 203, 204, 208, 209, 214, 215, 216, 218, 221, 226, 227, 228, 232, 234, 260, 261, 263, 264, 266, 282, 283], "huggingface_token": 110, "huggingfacebgeembed": 99, "huggingfaceembed": 282, "huggingfaceh4": [42, 130, 131, 132, 133, 134, 191, 204], "huggingfacehub_api_token": [3, 12, 17, 32, 34, 35, 38, 41, 42, 43, 51, 52, 53, 72, 95, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 164, 166, 172, 173, 174, 178, 179, 180, 184, 200, 201, 203, 204, 208, 209, 216, 218, 221, 260, 261, 263, 264, 268], "huggingfacehubembed": 2, "huggingfaceinferenceapiembed": 282, "human": [98, 115, 156, 172, 191, 249, 259, 260, 261, 263, 264, 267], "humanev": [88, 122], "hundr": 88, "hungri": 89, "hurt": [89, 254], "hw": [2, 109, 160, 191, 199, 223, 267], "hw_mode": [51, 52], "hybrid": 267, "hyper": 91, "hyperlink": [254, 283], "hyperscal": 274, "hyperthread": 89, "hypervisor": [254, 256, 267], "hyphen": 254, "i": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 82, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 153, 156, 159, 160, 161, 162, 164, 165, 166, 168, 169, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 219, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 270, 273, 274, 275, 276, 279, 281, 283], "iaar": [91, 97], "iam": 272, "icmp_seq": 273, "icon": [120, 123, 124, 176], "id": [3, 6, 8, 11, 14, 17, 26, 27, 28, 29, 34, 41, 42, 43, 44, 45, 50, 59, 63, 64, 69, 70, 72, 74, 78, 86, 89, 97, 112, 114, 115, 121, 137, 138, 151, 161, 162, 164, 173, 174, 175, 197, 198, 200, 201, 203, 204, 208, 214, 215, 216, 218, 221, 227, 228, 234, 253, 260, 261, 263, 264, 272, 273, 274, 282, 283], "id_rsa": 274, "id_token": 198, "idc": [260, 263, 264, 284], "idea": [98, 238, 243, 275], "ideal": [20, 23, 24, 25], "ident": [12, 98, 198, 237, 252, 272], "identifi": [7, 31, 35, 36, 64, 172, 191, 198, 226, 229, 232, 238, 241, 253, 254, 259], "idl": 89, "idx": 225, "ignor": [9, 37, 114, 116, 124, 131, 132, 141, 149, 150, 157, 158, 170, 171, 174, 187, 198, 273], "ilankelman": [161, 162, 186, 187, 188, 189], "illeg": 34, "illustr": [126, 134, 139, 175, 181, 189, 259, 267, 268], "imag": [69, 91, 95, 100, 109, 110, 115, 121, 126, 130, 134, 139, 143, 160, 163, 166, 168, 172, 175, 181, 183, 185, 188, 189, 191, 198, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 230, 231, 238, 249, 250, 255, 256, 265, 268, 270, 273, 277, 280, 281, 282, 283, 284, 285], "image2video": 40, "image8": 267, "image_path": 40, "image_tag": 110, "image_url": [161, 162, 186, 187, 188, 189], "imagenet": 250, "imageprompt": 283, "imageri": 237, "images_path": 40, "img_b64_str": [161, 162], "immedi": [241, 250, 254], "immens": [61, 63], "impact": [2, 91, 95, 168, 237, 238, 244, 245, 246, 253, 266, 267, 285], "impair": 185, "imparti": 267, "imped": 266, "implement": [3, 23, 25, 26, 27, 44, 88, 89, 98, 109, 110, 121, 122, 123, 124, 125, 137, 138, 139, 147, 160, 183, 191, 198, 203, 238, 240, 241, 244, 247, 250, 254, 267, 268, 275, 276, 282], "implic": 238, "import": [2, 5, 9, 11, 12, 17, 18, 30, 32, 35, 36, 38, 66, 67, 68, 69, 70, 71, 72, 73, 74, 78, 80, 86, 88, 89, 94, 98, 99, 109, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 200, 212, 219, 232, 245, 250, 254, 259, 260, 261, 263, 264, 267, 268, 282], "improv": [2, 3, 5, 17, 30, 89, 100, 110, 121, 130, 168, 169, 191, 198, 238, 243, 245, 249, 267, 280, 281, 282, 283], "inabl": 34, "inappropri": [32, 237], "inbound": [241, 254], "inc": [115, 202, 260, 261, 263, 264], "incept": 241, "incid": 237, "includ": [1, 5, 12, 20, 23, 24, 29, 38, 42, 43, 44, 48, 50, 87, 89, 90, 91, 93, 95, 100, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 142, 143, 149, 150, 151, 157, 158, 159, 161, 162, 164, 168, 170, 171, 178, 179, 184, 185, 186, 187, 193, 194, 198, 199, 201, 221, 222, 223, 225, 226, 229, 236, 237, 238, 239, 240, 241, 243, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 256, 259, 268, 272, 273, 276, 279, 283], "inclus": [237, 254], "incom": [2, 9, 69, 232, 245, 246, 259, 276], "incompat": [238, 244, 245], "incomplet": 253, "inconsist": 241, "incorpor": [202, 254], "incorrect": 283, "incorrectli": [109, 160, 185], "incorrefin": 283, "increas": [88, 90, 91, 98, 112, 241, 245, 253, 255, 267, 282], "increasingli": 249, "incub": [3, 241], "indent": [282, 283], "independ": [2, 241, 245, 246, 267, 276], "index": [20, 30, 61, 63, 65, 67, 70, 72, 73, 74, 80, 95, 115, 137, 138, 161, 162, 172, 225, 244, 251, 253, 254, 255, 260, 261, 263, 264, 266, 267, 277, 280, 282, 283], "index_data": 95, "index_nam": [12, 14, 17, 19, 67, 70, 71, 72, 73, 74, 111, 113, 137, 138, 161, 162, 164, 184, 260, 261, 263, 264], "indexretrivel": 282, "indic": [33, 37, 39, 98, 115, 241, 254, 255, 260, 261, 263, 264, 267], "individu": [2, 5, 89, 90, 98, 123, 124, 182, 185, 237, 241, 245, 246, 254, 259, 276], "industri": [109, 147, 249, 259, 261, 266, 267], "inexpens": 98, "infer": [17, 26, 27, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 63, 69, 70, 72, 74, 86, 89, 91, 107, 109, 110, 112, 115, 117, 118, 121, 130, 139, 140, 141, 142, 143, 147, 149, 150, 151, 160, 164, 177, 183, 186, 190, 191, 214, 215, 216, 218, 221, 227, 249, 250, 260, 261, 263, 264, 267, 281, 282, 283], "inferec": 248, "inferenc": 199, "inferencecli": [50, 112, 114], "inferi": 267, "infin": [107, 118, 126, 134, 143, 175, 181, 189, 198, 227, 230, 270, 273], "infinit": 94, "info": [5, 28, 77, 94, 109, 112, 113, 114, 115, 116, 225, 229, 236, 238, 261, 263, 264, 266, 267, 280], "inform": [2, 3, 7, 8, 12, 20, 23, 24, 29, 31, 34, 35, 36, 38, 53, 60, 65, 67, 70, 72, 73, 74, 77, 80, 88, 89, 91, 93, 97, 100, 109, 112, 113, 115, 121, 123, 124, 130, 131, 136, 137, 138, 139, 140, 147, 149, 160, 161, 163, 168, 172, 178, 186, 191, 194, 196, 198, 200, 202, 205, 206, 207, 208, 209, 211, 212, 217, 219, 222, 223, 230, 232, 237, 238, 241, 243, 244, 252, 254, 255, 258, 259, 260, 261, 263, 264, 265, 267, 270, 272, 273, 274, 277, 281], "informant": 42, "infrastructur": [2, 3, 51, 58, 193, 194, 234, 245, 246, 250, 266, 267, 276, 282, 285], "ingest": [12, 70, 72, 73, 74, 80, 95, 97, 101, 160, 184, 266, 267, 281], "ingest_doc": 97, "ingest_video": 19, "ingredi": 267, "ingress": [197, 198, 248], "ingress_host": [198, 232], "ingress_port": [198, 232], "ingressgatewai": [198, 232], "inher": 267, "inherit": 3, "ini": 274, "init": [70, 81, 273, 281], "initdb": [70, 81], "initi": [2, 3, 34, 45, 46, 47, 108, 114, 119, 120, 164, 167, 176, 230, 241, 245, 250, 260, 261, 263, 264, 267, 272, 273, 274, 280, 281, 282, 283], "initial_queri": [50, 51, 61, 62, 63, 64, 111, 112, 113, 114, 115, 116, 137, 138, 161, 162, 164, 173, 174, 184, 202, 211, 253, 260, 261, 263, 264], "inject": [25, 33, 36, 39, 49, 56, 198, 231, 277], "injest": 42, "inlin": [123, 124, 254], "inner": 74, "innov": [3, 236, 250, 266, 267, 276], "inproceed": 98, "input": [2, 3, 6, 17, 20, 22, 23, 24, 26, 27, 31, 32, 34, 38, 39, 41, 42, 43, 44, 45, 50, 55, 56, 61, 63, 65, 67, 69, 70, 72, 73, 74, 95, 97, 99, 102, 104, 105, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 120, 121, 122, 123, 124, 125, 128, 129, 130, 131, 132, 137, 138, 139, 140, 141, 148, 149, 150, 160, 162, 164, 167, 172, 173, 174, 176, 178, 179, 185, 190, 191, 195, 203, 214, 216, 248, 249, 253, 259, 260, 261, 263, 264, 267, 281, 282, 283], "input_datatyp": [2, 245], "input_str": 22, "inquiri": [147, 190], "insecur": [190, 274], "insert": [88, 106, 117, 122, 123, 124, 125, 127, 133, 142, 144, 151, 153, 165, 166, 175, 180, 184, 200, 201, 203, 204, 208, 209, 216, 218, 221, 226, 228, 232, 254], "insert_befor": 232, "insert_your_ip_her": 151, "insid": [80, 92, 95, 198, 230, 259], "insight": [88, 90, 110, 121, 147, 160, 163, 210, 238, 250, 267], "inspir": [110, 237, 261], "instal": [11, 48, 51, 52, 54, 75, 78, 92, 94, 97, 103, 107, 108, 109, 111, 112, 113, 117, 118, 119, 120, 121, 122, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 139, 140, 142, 143, 144, 145, 146, 149, 153, 154, 155, 161, 162, 164, 166, 167, 168, 175, 176, 178, 180, 181, 182, 184, 186, 188, 189, 192, 194, 198, 200, 222, 225, 226, 227, 231, 232, 238, 239, 259, 260, 267, 280, 281, 282, 283], "installt": [226, 228], "instanc": [38, 48, 79, 89, 112, 113, 118, 140, 149, 161, 178, 186, 199, 223, 226, 227, 228, 237, 245, 249, 260, 261, 263, 264, 267], "instancenam": 223, "instanti": 267, "instead": [89, 98, 114, 199, 222, 223, 225, 231, 245, 253, 254, 261, 267, 281, 283], "instruct": [3, 45, 46, 47, 48, 50, 51, 52, 67, 80, 95, 97, 99, 100, 102, 109, 110, 111, 112, 113, 114, 121, 130, 139, 147, 148, 149, 150, 151, 160, 163, 168, 172, 177, 178, 179, 183, 185, 186, 187, 191, 197, 198, 223, 228, 232, 248, 250, 255, 259, 260, 261, 263, 264, 265, 267, 268, 280, 281, 282, 283, 284], "instructhumanev": [88, 122], "instruction_token": 122, "instructiontun": 283, "instrument": [9, 89, 109, 115, 136, 137, 138, 259, 260, 261, 263, 264, 267], "insuffici": 90, "insult": 237, "int": [3, 98], "int8": 61, "integ": 253, "integr": [2, 3, 7, 20, 23, 24, 25, 28, 33, 36, 37, 39, 42, 45, 49, 56, 59, 91, 102, 103, 111, 112, 113, 114, 116, 121, 123, 124, 137, 138, 140, 141, 149, 150, 161, 162, 164, 172, 178, 179, 184, 186, 187, 191, 196, 198, 230, 238, 241, 245, 246, 248, 249, 250, 254, 267, 275, 276, 280, 283], "intel": [2, 3, 30, 32, 35, 38, 44, 45, 50, 51, 52, 53, 54, 57, 61, 88, 90, 91, 100, 102, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 147, 150, 151, 153, 157, 158, 160, 161, 162, 164, 166, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 191, 200, 201, 218, 221, 225, 227, 234, 236, 238, 240, 242, 245, 246, 247, 248, 249, 252, 253, 254, 260, 261, 263, 264, 265, 267, 268, 279, 282, 283, 284], "intel_hpu": [6, 23, 30, 40, 55, 75, 105, 114, 158, 171, 261], "intellab": [19, 61, 74, 85], "intellectu": 196, "intellig": [45, 98, 163, 261, 266], "intend": [35, 238, 241, 254, 266, 267], "intens": 91, "intent": [37, 249, 277, 283], "intent_detect": [41, 238, 242], "inter": [248, 267, 273, 283], "interact": [2, 31, 34, 43, 48, 51, 52, 95, 139, 147, 185, 190, 191, 198, 237, 245, 246, 249, 250, 267, 274, 276], "interdepend": 245, "interest": [123, 124, 238, 241, 260, 261, 263, 264, 268], "interfac": [2, 89, 100, 123, 124, 127, 144, 153, 166, 190, 225, 238, 244, 245, 246, 248, 250, 253, 254, 255, 259, 267, 272, 276, 279, 283, 284], "interfer": 199, "interim": [240, 267], "intermedi": 267, "intern": [98, 109, 111, 112, 113, 114, 116, 121, 123, 124, 130, 139, 143, 164, 172, 184, 186, 187, 226, 241, 259, 260, 261, 263, 264, 267], "internalservic": [118, 227, 229, 230], "internet": [110, 227, 267, 273, 274], "interoper": [121, 267], "interpret": 254, "interv": 225, "interven": 254, "intric": 267, "intro": 35, "introduc": [3, 34, 92, 95, 98, 123, 124, 191, 232, 238, 245, 249, 267, 270, 272, 281, 283], "introduct": [9, 254, 277], "introductori": 254, "intuit": [20, 23, 24], "inur": 241, "invalid": [121, 122, 123, 124, 125, 198, 203, 229, 283], "invalu": [2, 168], "invest": 266, "investig": 237, "invis": [237, 253], "invit": [130, 160, 177, 185], "invok": [3, 11, 12, 14, 17, 18, 19, 35, 41, 123, 124, 197, 249], "involv": [30, 97, 107, 118, 121, 143, 227, 237, 238, 241, 245, 260, 261, 263, 264, 267, 276], "io": [3, 17, 26, 27, 34, 41, 42, 43, 44, 45, 50, 63, 69, 70, 72, 74, 80, 86, 89, 91, 97, 100, 107, 112, 114, 115, 118, 141, 143, 150, 162, 186, 187, 197, 198, 199, 200, 202, 214, 215, 216, 223, 225, 227, 228, 230, 231, 232, 243, 254, 255, 260, 261, 263, 264, 270, 273, 282, 283], "io_gmconnector": [226, 270], "ip": [35, 45, 58, 74, 91, 104, 105, 110, 111, 112, 113, 114, 123, 124, 133, 137, 138, 140, 141, 149, 150, 151, 161, 162, 164, 173, 174, 184, 186, 187, 198, 201, 203, 204, 221, 223, 232, 260, 261, 263, 264, 273, 274], "ip6tabl": 273, "ip_address": [3, 6, 23, 40, 55, 57, 64, 75, 100, 101, 148, 151], "ip_forward": 273, "ipaddr": 274, "ipc": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 21, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 54, 55, 61, 62, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 86, 88, 97, 103, 112, 114, 115, 116, 123, 124, 140, 149, 150, 157, 158, 170, 171, 260, 261, 263, 264], "ipconfig": 111, "ippool": 273, "iptabl": 273, "ipv": 273, "ipv4": [111, 113, 161, 162, 164, 184, 186, 260, 273], "ir": 232, "iri": 242, "is_complex": 115, "is_floating_point": 115, "is_releas": 255, "is_thumbs_up": 29, "isdownstreamservic": [229, 230], "isn": 254, "iso27001": 267, "isol": [2, 88, 89, 199, 245, 246], "issu": [2, 89, 92, 94, 96, 98, 99, 109, 198, 199, 201, 226, 229, 230, 234, 237, 240, 241, 243, 244, 245, 246, 251, 255, 259, 267, 273, 274, 280, 281, 282, 283], "issuer": 198, "istio": [194, 226, 231, 232, 250, 252], "istio_tag": 231, "istioctl": [231, 232], "istiod": 198, "istionamespac": 232, "istiooper": 232, "isv": 267, "ital": 254, "italian": 267, "itc": [12, 161, 162], "itd": 22, "itdc": 261, "item": [107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 202, 225, 227, 230, 254, 270, 281], "iter": [3, 100, 172], "itm": [12, 160, 161, 162], "its": [7, 12, 30, 34, 94, 97, 117, 125, 160, 169, 191, 194, 196, 198, 199, 226, 232, 238, 241, 243, 245, 249, 254, 259, 266, 267, 270, 276, 283], "itself": [92, 200, 225, 254, 256, 259, 282], "ivborw0kggoaaaansuheugaaaaoaaaakcayaaacnm": [55, 56, 161, 162, 186, 187], "j": [88, 239], "j4ltr": 230, "jacob": 282, "jaeger": [9, 282], "jaegertrac": 9, "jailbreak": 248, "japanes": 267, "java": 130, "javascript": [130, 255], "jbd6r": 273, "jfrog": [236, 240], "jianfeng": 193, "jigsaw": 38, "jinaai": 267, "jing": 98, "job": [11, 17, 18, 92, 259, 280, 282, 283], "job_nam": [92, 259], "john": [32, 35, 36, 254], "johnvansickl": 12, "join": [25, 33, 36, 37, 39, 49, 56, 243, 273, 275], "joint": [23, 241, 267], "jointli": [25, 266, 267], "joke": 49, "josef": 98, "journei": [2, 34, 168], "jpeg": 254, "jpg": [161, 162, 186, 187, 188, 189], "jq": [197, 198, 199, 202, 230], "jre": [17, 18, 19], "json": [3, 6, 8, 9, 11, 12, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 92, 95, 97, 100, 101, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 197, 198, 201, 202, 203, 204, 205, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 227, 229, 230, 231, 253, 254, 259, 260, 261, 263, 264, 267, 268, 270, 283], "json_encod": 253, "jsonl": [30, 95, 96, 101, 169, 283], "jsonpath": [107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 199, 201, 202, 203, 204, 221, 223, 227, 230, 232, 270], "judg": [4, 5, 258, 283], "judgement": 98, "jump": 238, "just": [29, 51, 52, 89, 91, 115, 118, 143, 165, 199, 227, 237, 238, 254, 268, 270, 273, 274], "justif": 241, "justifi": 256, "justin": [236, 240], "jwcrypto": 198, "jwt": 281, "k": [66, 67, 68, 72, 74, 90, 96, 115, 172, 226, 228, 250, 260, 261, 263, 264, 267, 274], "k8": [90, 91, 93, 110, 168, 195, 199, 200, 201, 203, 204, 221, 232, 238, 246, 250, 267, 274, 281, 282, 283, 284, 285], "k8s_cluster": 274, "k8s_ver": 273, "kaokao": [242, 253], "kb": 254, "kbcnv": 274, "kdd": [95, 100], "ke": [115, 236, 240, 260, 261, 263, 264, 267], "keep": [57, 77, 89, 115, 163, 226, 253, 254, 276, 281], "kefei": 242, "kei": [3, 20, 23, 24, 25, 33, 35, 36, 37, 39, 49, 56, 89, 90, 100, 110, 121, 127, 144, 153, 166, 173, 174, 175, 190, 191, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 227, 228, 234, 250, 266, 268, 270, 272, 273, 274], "kenobi": 98, "kept": [254, 256], "kernel": [89, 200, 254, 267, 273], "keycloak": [163, 196, 198, 252, 265, 281, 282], "keycloak_addr": [197, 198], "keycloak_client_id": 197, "keycloak_client_secret": 197, "keycloak_instal": 198, "keycloak_port": 198, "keycloak_realm": 197, "keycloak_service_endpoint": 164, "keycloak_setup_guid": [164, 166], "keygen": 274, "keyr": 273, "keyword": [59, 60, 123, 124, 232, 253], "kill": 6, "kilt": 267, "kind": [89, 195, 197, 198, 200, 232, 237, 254, 273, 280, 281], "kinder": 242, "kishor": 98, "km2ru94h9ht9h6ou": 273, "know": [3, 115, 202, 253, 254], "knowledg": [5, 67, 70, 72, 73, 74, 91, 95, 100, 109, 111, 112, 113, 114, 116, 119, 120, 136, 137, 138, 160, 161, 162, 164, 167, 172, 190, 191, 202, 259, 260, 261, 263, 264, 267, 277, 280, 283, 284], "knowledge_graph": [42, 190], "knowledgebas": [137, 138], "knowledgegraph": [42, 238, 242], "known": [51, 52, 98, 115, 130, 196, 254, 255, 261, 263, 264], "korean": 267, "kube": [89, 199, 202, 223, 225, 273, 274], "kube_apiserver_ip": 274, "kube_apiserver_port": 274, "kube_control_plan": 274, "kube_nod": 274, "kube_pods_subnet": 274, "kube_service_address": 274, "kubeadm": [194, 252, 271, 274], "kubeconfig": [93, 273], "kubectl": [89, 91, 93, 106, 107, 110, 117, 118, 125, 126, 127, 133, 134, 142, 143, 144, 151, 153, 166, 175, 180, 181, 188, 189, 192, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 227, 228, 230, 232, 234, 270, 272, 273], "kubelet": 273, "kuberai": [252, 281], "kubernet": [92, 93, 97, 127, 144, 153, 163, 165, 166, 168, 192, 197, 198, 199, 200, 201, 202, 203, 204, 216, 218, 221, 226, 228, 238, 242, 247, 248, 250, 254, 255, 258, 259, 265, 270, 279, 281, 282, 283], "kubespari": 274, "kubesprai": [194, 252, 271, 273], "kubespraydir": 274, "kv": [51, 52], "kwarg": 115, "kx": [236, 266], "kxxgf": 272, "l": [57, 97, 107, 118, 126, 134, 143, 175, 181, 189, 198, 202, 227, 230, 256, 270], "l1": 267, "l2": [18, 74, 267], "l29v8": 273, "l3": 267, "l6": [2, 284], "l6fsj": 228, "lab": [236, 266, 267], "label": [38, 89, 92, 110, 117, 198, 199, 202, 232, 254, 259, 273], "labelselector": 273, "lack": [245, 249, 266], "ladder": 237, "lai": 225, "lake": 117, "lambada_openai": [54, 88], "lambda_mult": [66, 67, 68, 72, 74, 90, 97], "lancedb": [277, 283], "land": 283, "landscap": [250, 261], "langchain": [2, 3, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 34, 41, 42, 43, 44, 45, 46, 48, 51, 53, 62, 65, 66, 67, 68, 69, 70, 72, 74, 78, 80, 86, 100, 109, 111, 112, 113, 114, 116, 137, 138, 139, 140, 141, 147, 149, 150, 160, 161, 162, 164, 172, 173, 174, 183, 184, 190, 191, 238, 245, 247, 248, 260, 261, 263, 264, 267, 277, 279, 280, 281, 282, 283, 284], "langchain_api_kei": [115, 260, 263, 264], "langchain_commun": [2, 99], "langchain_rai": [17, 18, 137, 138], "langchain_tracing_v2": [115, 260, 263, 264], "langflow": 250, "langgraph": [3, 4, 284], "langsmith": [267, 282], "languag": [3, 20, 31, 32, 38, 43, 44, 45, 46, 47, 48, 50, 91, 94, 97, 98, 102, 107, 109, 118, 121, 123, 124, 130, 135, 139, 143, 147, 160, 172, 177, 185, 190, 200, 226, 227, 237, 250, 253, 254, 255, 256, 259, 265, 267, 268, 270, 282, 283], "language_from": [130, 131, 132, 133, 134, 178, 179, 180, 204], "language_to": [130, 131, 132, 133, 134, 178, 179, 180, 204], "larg": [3, 12, 22, 26, 27, 30, 43, 44, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 65, 67, 70, 72, 73, 74, 88, 89, 90, 91, 102, 103, 109, 115, 121, 139, 147, 160, 161, 162, 169, 172, 183, 185, 191, 199, 226, 245, 250, 254, 259, 263, 264, 266, 267, 270, 282], "larger": [51, 52, 90, 99], "last": [5, 174, 199, 234, 238, 282], "last_index": 80, "last_modifi": 80, "lastnam": 254, "latenc": [23, 26, 27, 51, 52, 88, 89, 94, 110, 168, 245, 246, 248, 249, 250, 253, 258, 259, 267, 283], "later": [23, 26, 27, 94, 100, 115, 230, 253, 255, 261, 263, 264, 267, 273], "latest": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 85, 86, 88, 91, 93, 97, 100, 103, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 130, 131, 132, 137, 138, 139, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 170, 171, 172, 173, 174, 175, 178, 179, 184, 186, 187, 200, 201, 218, 225, 226, 227, 230, 238, 255, 260, 261, 263, 264, 268, 272, 273, 274, 275, 280, 281, 282, 283], "latter": [115, 244, 251, 254, 260, 261, 263, 264], "lau": [115, 261], "launch": [3, 13, 30, 35, 58, 68, 100, 115, 143, 156, 161, 169, 194, 250, 266, 282, 283], "launch_agent_service_openai": 100, "launch_eval_contain": 95, "launch_llm_judge_endpoint": 95, "launch_microservic": [51, 52, 53], "launch_retrieval_tool": 101, "launch_tgi": 148, "launch_vllm_servic": [45, 51, 52], "launch_vllm_service_openvino": [51, 52], "launch_vllmrai": [45, 53], "law": 241, "layer": [198, 267], "layout": 256, "le": 9, "lead": [98, 110, 196, 237, 241, 245, 248, 254, 267, 276], "leader": [35, 237], "leaderboard": [35, 267], "leadership": [266, 267], "leakag": 232, "learn": [17, 20, 23, 24, 26, 27, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 58, 61, 62, 63, 69, 70, 72, 74, 95, 104, 105, 109, 111, 112, 113, 114, 115, 116, 139, 140, 141, 148, 149, 150, 160, 164, 172, 173, 174, 178, 179, 191, 209, 211, 214, 215, 216, 218, 237, 260, 261, 263, 264, 267, 268, 275, 283], "least": [51, 52, 61, 63, 91, 93, 114, 123, 124, 187, 203, 238, 241, 254, 267, 270], "leav": [29, 31, 38, 90, 254], "lectur": 185, "led": 267, "left": [0, 88, 92, 122, 123, 124, 165, 198, 254, 255, 256, 282], "left_pad": 122, "legaci": [121, 130, 283], "legal": [2, 88, 139, 147, 168, 190, 191, 194, 252, 258, 265, 277], "legend": 267, "length": [9, 34, 35, 66, 67, 68, 70, 71, 72, 73, 74, 86, 98, 110, 111, 112, 113, 114, 115, 116, 164, 184, 253, 254, 260, 261, 263, 264, 267, 282, 283], "length_ratio": 98, "lengthi": 163, "lenovo": 249, "lenth": 242, "less": [2, 245, 246, 253, 267], "let": [2, 51, 52, 89, 94, 107, 111, 118, 143, 168, 185, 227, 238, 248, 254, 256, 259], "letong": 242, "letonghan": 245, "level": [2, 39, 88, 89, 90, 109, 115, 121, 122, 123, 124, 125, 190, 199, 203, 225, 229, 237, 238, 245, 246, 254, 255, 259, 260, 261, 263, 264, 267, 276, 280, 283], "leverag": [2, 4, 10, 12, 32, 38, 44, 86, 91, 92, 97, 107, 109, 112, 113, 118, 136, 137, 138, 140, 143, 147, 149, 161, 163, 178, 186, 191, 201, 203, 204, 221, 226, 227, 230, 232, 241, 245, 246, 248, 250, 252, 259, 267, 268, 270, 276, 277], "lexic": [61, 63], "lf": [236, 243, 266, 282], "lfaidata": 276, "lfproject": 241, "liabil": [115, 241, 260, 261, 263, 264], "liang": [1, 159], "liang1": [242, 253], "lianhao": 242, "lib": [115, 273], "librari": [30, 48, 51, 52, 53, 74, 94, 98, 127, 144, 153, 166, 238, 282], "libreoffic": 10, "librispeech": 103, "libtesseract": [11, 13, 16, 17, 18, 19], "licens": [77, 78, 102, 238, 239, 241, 267], "lifecycl": 267, "lift": 256, "lightblu": 256, "lightli": 89, "lightorang": 254, "lightweight": [32, 38, 48], "like": [2, 9, 11, 14, 17, 30, 31, 35, 38, 45, 46, 47, 51, 52, 53, 58, 80, 88, 89, 90, 92, 93, 100, 109, 112, 113, 114, 115, 116, 121, 123, 124, 130, 139, 156, 161, 162, 172, 195, 196, 197, 198, 200, 201, 214, 215, 216, 218, 223, 225, 226, 229, 237, 238, 245, 246, 248, 249, 253, 254, 255, 259, 260, 261, 263, 264, 266, 267, 270, 272, 273, 274, 279, 281], "likelihood": [37, 253], "limit": [2, 45, 88, 89, 90, 91, 94, 97, 117, 122, 172, 199, 239, 241, 245, 246, 248, 253, 254, 267, 274, 276, 282, 283], "limit_hpu_graph": [114, 115], "limit_start": 122, "limitnofil": 110, "lin": 98, "line": [48, 93, 94, 102, 110, 115, 123, 124, 199, 253, 254, 255, 256, 272, 273, 274, 282, 283], "linebreak": 283, "lingual": 267, "linguist": [32, 98], "link": [0, 9, 11, 14, 17, 18, 30, 32, 51, 52, 53, 79, 92, 95, 111, 112, 113, 114, 116, 119, 120, 131, 137, 138, 140, 149, 161, 164, 167, 172, 173, 174, 175, 178, 186, 190, 200, 238, 243, 253, 255, 267, 272, 276, 283], "link_list": [11, 17, 18, 111, 112, 113, 114, 116, 137, 138, 164, 227, 260, 261, 263, 264], "linkedin": [137, 138, 236, 238], "linux": [92, 111, 112, 113, 123, 131, 140, 149, 161, 178, 186, 225, 236, 239, 241, 254, 255, 259, 267, 273], "lip": 249, "lipsync": 249, "list": [5, 19, 30, 35, 48, 51, 52, 64, 89, 91, 98, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 134, 143, 156, 160, 161, 162, 164, 167, 168, 169, 178, 179, 183, 184, 186, 190, 191, 195, 199, 200, 203, 225, 227, 229, 230, 238, 241, 242, 243, 244, 245, 246, 255, 260, 261, 263, 264, 267, 268, 273, 276, 282, 283], "list_checkpoint": [30, 156, 169], "list_paramet": [245, 253], "list_servic": [245, 253], "listen": [80, 225, 232, 274], "literalinclud": 254, "live": 255, "liveportrait": 249, "ll": [110, 112, 113, 123, 124, 131, 140, 149, 161, 178, 186, 200, 238, 243, 255, 256, 260, 261, 264, 272, 273, 274], "llama": [20, 30, 31, 34, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 95, 99, 118, 121, 123, 124, 125, 149, 150, 151, 156, 164, 183, 184, 191, 203, 208, 227, 230, 260, 261, 267, 277, 280, 281, 282, 283, 284], "llama2": [267, 284], "llama2_page6": 18, "llama3": [3, 48, 100, 111, 260, 281, 284], "llama_guard": [34, 114, 283], "llama_index": [11, 17, 18, 20, 27, 47, 65, 73, 238], "llama_video": 57, "llamaguard2": 34, "llamaindex": [2, 17, 73, 191, 236, 240, 267, 279, 280, 281, 283, 284], "llava": [56, 160, 161, 162, 185, 186, 187, 191, 267, 280, 281, 282, 283, 284], "llava_serv": 55, "llava_server_port": [161, 162], "llc": 243, "llc_occup": 225, "llm": [2, 5, 6, 11, 13, 16, 17, 25, 33, 34, 36, 37, 39, 41, 48, 49, 53, 54, 56, 75, 86, 88, 89, 90, 91, 92, 100, 103, 107, 109, 110, 118, 121, 122, 127, 130, 133, 134, 139, 143, 144, 147, 148, 153, 156, 160, 168, 172, 184, 186, 187, 190, 191, 198, 201, 202, 203, 204, 208, 221, 226, 230, 236, 238, 242, 245, 246, 247, 248, 249, 250, 252, 258, 259, 268, 270, 276, 279, 280, 281, 282, 283, 284], "llm_as_judge_ip": 97, "llm_as_judge_port": 97, "llm_data": 42, "llm_download": [57, 184], "llm_endpoint": [42, 97, 148], "llm_endpoint_url": 3, "llm_engin": 3, "llm_gener": 253, "llm_hardwar": 138, "llm_judg": 95, "llm_model": [42, 45, 51, 52, 53], "llm_model_id": [34, 41, 43, 44, 45, 50, 97, 104, 105, 110, 113, 114, 115, 118, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 149, 150, 164, 173, 174, 178, 179, 200, 201, 203, 204, 216, 218, 221, 227, 230, 261, 263, 264], "llm_model_id_codegen": 164, "llm_native_model": [46, 47], "llm_port": 97, "llm_service_devic": 261, "llm_service_host_ip": [2, 104, 105, 111, 113, 123, 124, 137, 138, 140, 141, 149, 150, 164, 173, 174, 260, 261, 263, 264], "llm_service_host_ip_chatqna": 164, "llm_service_host_ip_codegen": 164, "llm_service_host_ip_docsum": 164, "llm_service_host_ip_faqgen": 164, "llm_service_host_port_codegen": 164, "llm_service_host_port_docsum": 164, "llm_service_host_port_faqgen": 164, "llm_service_port": [2, 104, 105, 173, 174, 261, 263, 264], "llm_vllm": 51, "llvm": 254, "lm": [277, 279, 281, 284], "lm_evaluation_har": [54, 88], "lmevalpars": 88, "lmm": 267, "load": [20, 23, 24, 51, 52, 78, 80, 88, 89, 90, 93, 94, 98, 99, 110, 112, 114, 115, 232, 245, 261, 263, 264, 267, 273, 282, 283], "load_data_path": 122, "load_generations_intermediate_path": 122, "load_generations_path": 122, "load_in_4bit": 122, "load_in_8bit": 122, "load_shap": 90, "loadbalanc": [197, 232], "loadshap": 90, "local": [12, 13, 22, 23, 30, 48, 64, 68, 69, 77, 80, 92, 96, 107, 110, 111, 112, 113, 114, 115, 116, 118, 119, 120, 123, 124, 131, 132, 140, 141, 143, 145, 146, 149, 150, 157, 158, 161, 162, 164, 167, 170, 171, 174, 184, 186, 187, 190, 195, 197, 198, 200, 202, 214, 215, 216, 218, 225, 227, 230, 231, 232, 250, 254, 255, 259, 260, 261, 263, 264, 267, 270, 273, 274, 282, 283], "local_embed": [26, 27, 282], "local_mm_embed": 23, "local_release_dir": 274, "local_rerank": 61, "localhost": [6, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 48, 49, 55, 56, 61, 62, 63, 66, 67, 68, 70, 72, 73, 74, 75, 92, 97, 109, 110, 111, 112, 113, 114, 116, 117, 121, 123, 124, 125, 130, 131, 132, 133, 139, 140, 141, 142, 149, 150, 160, 161, 162, 164, 166, 167, 172, 178, 179, 180, 184, 185, 186, 187, 188, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 229, 245, 255, 259, 260, 261, 263, 264, 268, 273, 274], "localsegmentmanag": 77, "locat": [45, 58, 89, 198, 225, 238, 254, 270, 282], "loco": 35, "locust": [88, 90, 93, 258], "locustfil": 94, "log": [3, 12, 17, 18, 19, 32, 35, 38, 45, 57, 64, 89, 90, 93, 94, 100, 109, 112, 113, 114, 116, 125, 126, 134, 137, 138, 175, 181, 184, 189, 199, 225, 229, 246, 248, 250, 253, 255, 256, 259, 267, 274, 282, 283], "log_config": 77, "log_level": 229, "log_path": [126, 134, 175, 181, 189], "logan": [236, 240], "logfmt": 225, "logger": 225, "logic": [2, 245, 246, 276, 282, 283], "login": [92, 95, 112, 165, 198, 223, 250, 272, 274], "logist": 35, "logit": 253, "logit_bia": 253, "loglevel": 229, "logo": 254, "logprob": [253, 261], "loki": 250, "long": [35, 112, 183, 184, 191, 198, 199, 225, 238, 241, 253, 254, 267, 282, 284], "longer": [94, 98, 248, 255], "look": [0, 3, 5, 9, 35, 89, 100, 127, 144, 153, 166, 198, 238, 249, 254, 255, 256, 259, 267, 274], "lora": 284, "lora_config": [30, 169], "loss": [225, 273], "lot": 89, "louie": 249, "low": [89, 246, 250, 267], "lower": [238, 253, 267], "lowest": 89, "lr": [254, 256], "lrgb6": 273, "lscpu": 89, "ltaccess": 197, "ltcdv": [226, 270], "ltrim": 254, "lu": 242, "lv": [1, 159, 242, 253], "lvliang": [245, 246, 247], "lvlm": 267, "lvm": [25, 33, 36, 37, 39, 49, 64, 160, 183, 191, 238, 242, 267, 280, 281, 282, 283, 284], "lvm_endpoint": [12, 55, 57, 161, 162, 184, 186, 187], "lvm_model_id": [162, 185, 186, 187, 188], "lvm_service_host_ip": [161, 162, 184, 186, 187], "lvm_service_port": [186, 187], "lx79h": 273, "m": [30, 32, 38, 93, 94, 110, 115, 118, 121, 199, 227, 230, 238, 261, 263, 264, 273, 274, 281, 283], "m4qgq": 230, "m7i": [112, 113, 123, 131, 140, 149, 161, 178, 186], "machin": [20, 23, 24, 45, 48, 74, 77, 93, 98, 107, 115, 118, 126, 134, 143, 175, 181, 189, 194, 198, 227, 250, 260, 261, 263, 264, 267, 274], "maco": 254, "made": [195, 241, 253, 254, 255, 267, 283], "magnitud": 267, "mai": [3, 5, 23, 26, 27, 29, 80, 89, 90, 99, 100, 107, 109, 115, 118, 121, 125, 127, 130, 139, 143, 144, 153, 160, 166, 172, 185, 194, 198, 199, 200, 227, 234, 237, 238, 241, 244, 245, 248, 250, 253, 254, 255, 260, 261, 263, 264, 267, 268, 273], "mail": [234, 237, 243, 276], "main": [11, 13, 16, 17, 23, 40, 54, 57, 88, 94, 109, 112, 115, 121, 122, 130, 131, 132, 133, 134, 161, 162, 184, 190, 194, 198, 199, 202, 204, 227, 238, 241, 253, 254, 255, 261, 263, 264, 267, 270, 273, 282, 283], "mainifest": 282, "maintain": [2, 29, 32, 38, 42, 89, 109, 119, 130, 163, 164, 167, 191, 196, 198, 200, 225, 230, 238, 241, 243, 245, 246, 250, 254, 255, 256, 259, 266, 267, 275, 276, 282], "major": [0, 241, 243, 249, 254, 266, 267], "make": [2, 3, 6, 7, 11, 12, 17, 18, 19, 20, 23, 24, 31, 32, 35, 38, 51, 52, 53, 69, 80, 82, 90, 92, 93, 95, 106, 109, 110, 112, 115, 117, 118, 119, 120, 123, 124, 125, 127, 133, 142, 144, 147, 151, 153, 164, 166, 167, 168, 176, 180, 188, 192, 194, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 225, 226, 227, 228, 230, 231, 234, 237, 238, 241, 245, 246, 250, 253, 254, 255, 259, 260, 261, 263, 264, 270, 273, 274, 276, 280, 281, 282, 283], "makefil": [254, 255], "malia": 99, "malici": 37, "malini": [236, 240, 242], "man": [184, 225], "manag": [7, 48, 51, 52, 53, 58, 59, 80, 82, 88, 93, 112, 113, 115, 123, 124, 131, 140, 147, 149, 161, 164, 165, 178, 184, 186, 190, 192, 194, 195, 196, 198, 202, 222, 226, 228, 229, 230, 240, 241, 242, 245, 250, 258, 259, 260, 261, 263, 264, 266, 267, 270, 272, 273, 274, 276, 277, 282, 283, 284], "mandatori": [230, 267], "mani": [42, 80, 90, 91, 199, 248, 253, 254, 267], "manifest": [89, 91, 97, 106, 117, 125, 127, 133, 142, 143, 144, 151, 153, 166, 168, 180, 188, 199, 225, 226, 228, 232, 238, 247, 261, 270, 273, 279, 280, 281, 282, 283], "manifests_common": 228, "manipul": [37, 255], "manner": [241, 266], "mansdorf": 282, "manual": [67, 70, 72, 73, 74, 178, 179, 195, 197, 199, 222, 223, 228, 267, 273, 274, 282, 283], "manul": 267, "map": [9, 97, 112, 113, 114, 116, 123, 124, 164, 165, 184, 186, 187, 198, 229, 232, 253, 260, 261, 263, 264, 267, 280], "mapper": 198, "mari": [35, 165, 198], "mariadb": [236, 266], "mark": [238, 241, 254, 282], "markdown": [255, 282, 283], "marker": 254, "market": [240, 241, 266, 267, 283], "markewich": [236, 240], "markup": [254, 255], "mask": 36, "mass": 253, "master": [110, 115, 225, 260, 261, 263, 264, 273, 274], "match": [35, 42, 64, 86, 89, 98, 109, 136, 137, 138, 172, 183, 191, 199, 232, 254, 255, 268, 275, 282], "matchexpress": [89, 273], "matchlabel": [223, 273], "materi": [185, 243, 254, 283], "mathemat": 253, "matrix": [194, 222, 234, 268, 280], "matter": [240, 241, 248], "max": [3, 5, 34, 35, 42, 51, 52, 94, 97, 114, 225, 250, 253, 261, 273], "max_input_token": 281, "max_length": 30, "max_length_gener": 122, "max_memory_per_gpu": 122, "max_new_token": [34, 41, 42, 44, 45, 50, 56, 57, 64, 90, 95, 97, 104, 105, 107, 112, 113, 114, 115, 116, 118, 123, 124, 131, 132, 140, 141, 148, 149, 150, 162, 164, 173, 174, 178, 179, 184, 197, 198, 202, 208, 209, 216, 227, 230, 260, 261, 263, 264, 270, 282], "max_num_seq": [51, 52], "max_ord": 98, "max_seq_len_to_captur": [51, 52], "max_token": [45, 48, 49, 50, 51, 52, 53, 104, 105, 106, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 139, 161, 162, 164, 173, 174, 186, 187, 188, 189, 218, 253, 261, 264, 283], "maxcpu": 89, "maxim": [91, 267], "maximum": [57, 90, 91, 98, 117, 223, 225, 253, 254, 267], "mayb": [11, 260, 261, 263, 264], "mb": 225, "mbe_img": 225, "mbm_local_byt": 225, "mbm_total_byt": 225, "mbp": 57, "mbpp": [88, 122], "mccain": 32, "mckai": [236, 240], "md": [11, 13, 16, 17, 201, 206, 225, 238, 241, 244, 247, 251, 254, 255, 281, 282, 283], "mdev": 273, "me": [49, 172, 173, 174, 175], "mean": [51, 52, 89, 94, 97, 98, 115, 177, 183, 200, 230, 253, 254, 259, 267, 274], "meaning": [12, 283], "meanwhil": 143, "measur": [34, 65, 67, 70, 72, 73, 74, 97, 99, 115, 168, 260, 261, 263, 264, 267, 285], "mechan": [198, 250, 254, 267], "med": 94, "media": [237, 241, 267], "medic": 249, "medium": [102, 103], "meet": [20, 23, 24, 35, 58, 94, 110, 123, 124, 163, 191, 194, 234, 241, 248, 249, 250, 266, 267, 268], "mega": [2, 58, 114, 116, 123, 124, 141, 150, 179, 187, 202, 238, 246, 249, 250, 265, 277, 282, 283, 284], "mega_flow": 245, "mega_service_host_ip": [104, 105, 111, 113, 123, 124, 137, 138, 140, 141, 149, 150, 161, 162, 164, 173, 174, 184, 186, 187, 260, 261, 263, 264], "megaflow": 249, "megaservic": [100, 101, 238, 246, 247, 259, 265, 279, 280, 281, 282, 283], "megaserviceendpoint": 245, "megeservic": 122, "mel": 249, "melissa": [236, 240], "mem": 89, "member": [198, 237, 241, 243], "membership": 198, "memori": [23, 26, 27, 51, 52, 74, 89, 117, 223, 238, 244, 250, 252, 266, 267, 270, 283], "memory_bandwidth_exporter_container_ip": 225, "menifest": 281, "mention": [99, 230, 260, 261, 263, 264], "merg": [160, 232, 238, 241, 254, 255], "mermaid": [254, 255], "mesh": [226, 284], "messag": [7, 8, 29, 45, 53, 58, 93, 109, 111, 112, 113, 114, 115, 116, 117, 119, 121, 122, 123, 124, 125, 137, 138, 139, 140, 141, 142, 149, 150, 151, 161, 162, 164, 167, 172, 173, 174, 184, 186, 187, 188, 189, 201, 203, 221, 225, 230, 238, 253, 255, 260, 261, 263, 264, 268, 283], "met": 241, "meta": [30, 34, 42, 45, 50, 51, 52, 53, 95, 99, 100, 115, 121, 123, 124, 125, 149, 150, 151, 156, 164, 191, 203, 208, 227, 248, 260, 261, 263, 264, 267], "metadata": [7, 64, 74, 78, 89, 97, 107, 118, 126, 134, 143, 161, 162, 175, 181, 184, 189, 197, 198, 200, 202, 227, 230, 232, 270, 273], "metal": [234, 267], "meter": 199, "method": [9, 36, 73, 91, 95, 98, 110, 127, 144, 153, 166, 168, 184, 191, 194, 198, 226, 245, 253, 254, 261, 267, 272, 282, 283], "methodologi": [136, 137, 138, 258], "meticul": 172, "metirc": 9, "metric": [82, 88, 90, 95, 97, 168, 199, 200, 201, 214, 215, 216, 225, 242, 245, 248, 250, 258, 259, 260, 263, 264, 267, 280, 281, 282, 283], "metric_output_path": 122, "metrics_path": [92, 259], "mi6": [281, 284], "miami": 35, "michal": 282, "michel": 99, "micro": [109, 121, 130, 139, 172, 223, 225, 246, 249, 254, 265, 276, 280, 281, 282], "micro_servic": [238, 253], "micro_service_nam": 253, "microcervic": [52, 53], "microphon": 249, "microseric": 103, "microserv": [42, 186, 187], "microservi": [42, 223], "microservic": [9, 31, 88, 90, 91, 107, 109, 110, 118, 121, 126, 130, 134, 139, 143, 157, 158, 160, 163, 166, 168, 170, 171, 172, 175, 181, 189, 191, 196, 198, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 219, 221, 227, 238, 242, 244, 246, 247, 248, 250, 253, 255, 258, 265, 267, 275, 279, 280, 281, 282, 283, 284], "microservice_dir": 45, "microservice_replicas_granular": 91, "microservice_replicas_max": 91, "microservice_replicas_min": 91, "microsoft": [2, 102, 191, 267], "mid": 267, "middl": [230, 254, 256, 282], "might": [39, 75, 200, 226, 230, 238, 253, 267, 270, 272], "mileston": 283, "milestone1": 285, "milestone2": 285, "milestone3": 285, "milestone4": 285, "millisecond": 110, "milvu": [9, 267, 277, 280, 281, 282, 283, 284], "milvus_port": [11, 66], "mimic": [172, 254], "min": [94, 267, 273], "minballoon": 89, "mincpu": 89, "mind": 274, "mini": [100, 191, 253], "minifi": 198, "minilm": [2, 284], "minim": [45, 98, 163, 238, 250, 253, 267, 280], "minimum": [89, 91, 136, 198, 230, 238, 267], "minimumreplicasavail": 230, "minio": [236, 266], "minor": [280, 281, 282, 283], "minu": 254, "minut": [35, 99, 109, 115, 125, 186, 187, 255, 261, 263, 264, 273, 274], "mircal": 267, "mircroservic": 12, "mirror": [112, 114], "misc": [1, 87, 159, 193, 282], "miscellan": [238, 244], "mismatch": [115, 282, 283], "miss": [100, 199, 249, 281, 282, 283], "mission": 236, "misspel": 0, "mistak": 237, "mistral": [3, 130, 131, 132, 133, 134, 185, 186, 187, 191, 204, 282, 284], "mistralai": [3, 97, 148], "misus": 196, "mitig": 245, "mix": 160, "mixtral": [97, 148, 267, 284], "mixtur": 254, "mkdir": [3, 12, 91, 95, 97, 200, 255, 270, 273, 274], "mkdtemp": 78, "ml": 282, "mlm": [12, 160, 161, 162], "mlperf": 250, "mm": [161, 162, 244, 251], "mm_embedding_mmei": 23, "mm_embedding_port_microservic": [23, 161, 162], "mm_embedding_service_host_ip": [161, 162], "mm_retriever_service_host_ip": [161, 162], "mmei_embedding_endpoint": [23, 161, 162], "mmlu": [88, 267], "mmr": [66, 67, 68, 72, 74, 96], "mmrag": 283, "mnt": [110, 117, 125, 133, 142, 180, 188, 197, 201, 203, 204, 208, 213, 214, 215, 216, 218, 220, 221, 226, 228], "mobi": 273, "mock": [66, 67, 68, 70, 71, 72, 73, 74, 86, 95, 100, 111, 112, 113, 114, 115, 116, 164, 184, 260, 261, 263, 264], "modal": [23, 24, 283], "mode": [3, 35, 45, 50, 51, 52, 77, 80, 88, 89, 112, 114, 122, 250, 260, 261, 263, 264, 267, 281, 282, 283], "model": [2, 3, 12, 13, 17, 20, 22, 23, 24, 25, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 51, 52, 53, 55, 56, 57, 61, 63, 64, 69, 70, 72, 74, 80, 82, 86, 88, 95, 96, 97, 98, 99, 103, 106, 107, 110, 111, 115, 117, 118, 122, 123, 124, 125, 127, 142, 143, 144, 147, 148, 153, 156, 164, 166, 168, 172, 180, 184, 188, 190, 191, 199, 200, 201, 203, 204, 208, 213, 214, 215, 216, 218, 220, 221, 226, 228, 230, 234, 239, 249, 250, 253, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 279, 281, 282, 283], "model_arg": [54, 88], "model_id": [34, 91, 106, 115, 117, 125, 127, 133, 134, 142, 143, 144, 151, 153, 166, 180, 261, 263, 264], "model_id_or_path": 45, "model_nam": [51, 52, 53, 90, 99, 112, 114], "model_name_or_path": [102, 103, 253], "model_path": [112, 114, 232], "modeldir": [201, 203, 204, 213, 214, 215, 216, 218, 220, 221], "modelfil": 48, "modelnam": [201, 203, 204, 214, 215, 216, 218, 221], "modelscop": [109, 112, 114, 283], "modeltyp": 122, "modelusehostpath": [200, 201, 203, 204, 208, 213, 214, 215, 216, 218, 220, 221, 281], "modelusepvc": 200, "moder": [29, 34, 237], "modern": [121, 163, 191], "modif": [238, 250, 267, 282], "modifi": [7, 32, 48, 57, 80, 89, 94, 108, 109, 110, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 133, 135, 139, 140, 141, 142, 145, 146, 149, 150, 154, 155, 164, 172, 176, 180, 182, 184, 186, 187, 188, 200, 226, 227, 230, 238, 241, 242, 253, 255, 260, 261, 263, 264, 268, 270, 282, 283], "modle_id": 115, "modprob": 273, "modul": [3, 115, 245, 266, 267, 273], "modular": [2, 245, 246, 259, 275, 276], "moment": 96, "monei": [232, 266], "mongo": [8, 29, 60, 164, 166], "mongo_host": [8, 29, 60, 164], "mongo_port": [8, 29, 60, 164], "mongodb": [190, 277], "monitor": [88, 194, 199, 222, 246, 250, 253, 267, 285], "monolith": 245, "month": [98, 241], "montim": 225, "more": [2, 3, 7, 23, 26, 27, 28, 30, 33, 35, 38, 39, 43, 44, 50, 51, 52, 53, 59, 77, 80, 82, 86, 88, 89, 90, 91, 92, 93, 95, 97, 98, 99, 100, 101, 102, 103, 109, 110, 112, 113, 114, 115, 116, 119, 121, 130, 139, 160, 164, 166, 167, 168, 172, 178, 179, 185, 190, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 219, 221, 222, 223, 226, 230, 234, 238, 240, 241, 245, 246, 249, 250, 253, 254, 256, 259, 260, 261, 263, 264, 267, 270, 272, 273, 276, 281, 283, 284], "moreov": [95, 227, 267], "mosec": [277, 280, 281, 282], "mosec_embed": 282, "mosec_embedding_endpoint": [11, 21, 66], "mosec_embedding_host_ip": 21, "mosec_reranking_endpoint": 62, "most": [43, 44, 50, 61, 63, 64, 89, 91, 94, 98, 100, 109, 110, 136, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 160, 164, 168, 172, 191, 200, 202, 221, 243, 248, 253, 254, 259, 260, 261, 263, 264, 267], "mostli": 97, "motiv": [238, 244, 266], "mount": [110, 127, 144, 153, 166, 208, 214, 215, 216, 218, 225, 283], "mount_dir": [226, 228, 234], "mountpath": 232, "move": [89, 238, 241, 254, 260, 261, 263, 264, 267, 268, 283], "mozilla": 237, "mp4": [12, 19, 57, 161, 162, 184, 249], "mpi": 30, "mpnet": 284, "mrr": 97, "mtbench": 267, "mteb": [35, 267], "mteval": 98, "mtl": 248, "much": [238, 254, 255, 261], "multi": [5, 17, 23, 24, 30, 42, 53, 100, 123, 124, 191, 236, 249, 255, 259, 266, 267, 274, 276, 280, 281, 283, 284, 285], "multihop": [281, 282], "multihoprag": 97, "multilingu": 267, "multimod": [17, 25, 55, 56, 67, 160, 184, 185, 191, 249, 277, 283], "multimodal_clip": [24, 184], "multimodal_embed": [161, 162], "multimodal_langchain": [19, 23, 161, 162, 184], "multimodal_retriev": [67, 160, 161, 162], "multimodalqna": 283, "multimodalragqnawithvideo": 283, "multimodalragwithvideo": 283, "multipart": [11, 12, 13, 16, 17, 18, 19, 30, 109, 110, 111, 112, 113, 114, 116, 137, 138, 156, 161, 162, 164, 169, 184, 202, 206, 227, 260, 261, 263, 264], "multipl": [2, 5, 11, 17, 18, 19, 53, 74, 90, 96, 98, 121, 123, 124, 130, 135, 164, 172, 177, 182, 184, 190, 199, 225, 238, 240, 241, 245, 246, 248, 253, 254, 259, 267, 276, 280, 281, 282], "multiplatform": 283, "multitud": 267, "museum": 185, "music": 95, "must": [12, 42, 45, 61, 63, 65, 67, 70, 72, 73, 74, 89, 97, 106, 115, 117, 125, 133, 142, 151, 180, 192, 199, 229, 238, 241, 245, 253, 254, 267, 272], "my": [36, 38, 238, 254, 272], "my_funct": 253, "my_tool": 3, "myclust": 274, "myreleas": 200, "myriad": 266, "myst": [254, 255], "myst_pars": 254, "mytgi": 200, "myth": 86, "myvllm": 218, "n": [32, 38, 49, 50, 51, 78, 88, 89, 90, 98, 107, 115, 118, 126, 130, 131, 132, 133, 134, 143, 162, 175, 181, 189, 197, 198, 199, 202, 204, 223, 225, 226, 227, 228, 230, 232, 234, 238, 246, 247, 248, 250, 253, 256, 260, 261, 263, 264, 270, 284], "n2023": [115, 260, 261, 263, 264], "n_sampl": [88, 122], "na": [2, 115, 260, 261, 263, 264], "name": [2, 3, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 81, 82, 86, 89, 90, 92, 94, 102, 103, 107, 109, 110, 112, 114, 115, 117, 118, 121, 126, 130, 131, 134, 139, 143, 157, 161, 162, 165, 170, 172, 175, 181, 189, 195, 197, 198, 199, 200, 202, 218, 223, 225, 226, 227, 228, 229, 230, 232, 238, 240, 241, 244, 245, 251, 253, 255, 256, 259, 260, 261, 263, 264, 267, 270, 272, 273, 274, 280, 281, 282, 283], "namesapc": 281, "namespac": [89, 107, 118, 126, 134, 143, 175, 181, 189, 197, 198, 199, 225, 226, 227, 228, 229, 230, 232, 270, 273, 274, 280, 281, 282], "namespace_whitelist": 225, "namespacewhitelist": 225, "nani": [115, 260, 261, 263, 264], "narrow": [238, 254], "nathan": [236, 240], "nation": 237, "nativ": [2, 53, 77, 168, 194, 234, 246, 248, 252, 255, 259, 267, 276, 277, 281, 282, 283, 284], "natoutgo": 273, "natur": [20, 97, 98, 119, 147, 164, 167, 185, 190, 191, 237, 248, 249, 254, 267], "nav": 255, "navig": [0, 198, 223, 238, 254], "nbar": 78, "nbaz": 78, "nbootload": 256, "ncash": [115, 260, 261, 263, 264], "nchines": [178, 179, 181], "ncontent": 256, "ndcg": 267, "ndeep": [115, 261, 263, 264], "nderiv": [115, 260, 261, 263, 264], "ndevic": 256, "nearest": 74, "necessari": [8, 29, 45, 48, 60, 98, 106, 119, 151, 164, 166, 167, 197, 222, 238, 240, 241, 250, 254, 260, 261, 263, 264, 267, 268, 273], "necessit": [160, 245], "need": [5, 6, 11, 17, 20, 23, 24, 26, 27, 30, 34, 42, 43, 44, 45, 46, 47, 50, 51, 52, 57, 58, 63, 67, 70, 72, 73, 74, 75, 80, 82, 89, 91, 92, 93, 94, 95, 98, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 130, 131, 132, 133, 134, 139, 140, 141, 142, 148, 149, 150, 151, 157, 158, 160, 161, 162, 163, 164, 166, 168, 170, 171, 174, 178, 179, 180, 184, 185, 186, 187, 188, 191, 194, 196, 197, 198, 199, 203, 205, 206, 207, 208, 209, 211, 212, 217, 219, 223, 225, 226, 228, 230, 238, 243, 245, 247, 248, 249, 250, 254, 255, 259, 260, 261, 263, 264, 267, 268, 272, 273, 274, 275, 276, 283], "needl": 267, "neighbor": [38, 74], "neither": 98, "nemo": 267, "nenglish": [178, 179, 181], "neo4j": [277, 283, 284], "neo4j_auth": [13, 42, 68], "neo4j_data": 42, "neo4j_endpoint": 42, "neo4j_password": [13, 42, 68], "neo4j_plugin": [13, 68], "neo4j_uri": [13, 68], "neo4j_us": 42, "neo4j_usernam": [13, 42, 68], "neo4jlabs_plugin": 42, "neox": [43, 44, 50], "nequival": [115, 260, 261, 263, 264], "nerdctl": 273, "nerdctl_ver": 273, "nest": 254, "net": [30, 41, 115, 158, 171, 260, 261, 263, 264, 273, 274], "netshoot": 273, "network": [19, 23, 26, 27, 48, 58, 69, 80, 90, 113, 123, 127, 131, 140, 144, 149, 153, 161, 166, 178, 186, 226, 232, 245, 248, 260, 261, 270, 273, 274, 283], "network_mod": 69, "neural": [2, 45, 50, 54, 88, 90, 91, 104, 105, 109, 110, 112, 113, 114, 115, 116, 123, 124, 139, 140, 141, 143, 164, 173, 174, 200, 201, 218, 221, 227, 249, 260, 261, 263, 264, 265], "neuralchat": 191, "neuralspe": 283, "neutral": [32, 266], "never": [89, 94, 199], "nevertheless": 267, "new": [2, 7, 8, 35, 80, 86, 89, 92, 110, 118, 130, 139, 165, 168, 172, 173, 174, 175, 178, 179, 198, 199, 225, 226, 227, 230, 241, 244, 245, 246, 247, 249, 250, 253, 254, 255, 256, 266, 267, 270, 272, 280], "new_arg": 115, "newer": [117, 255, 260, 261, 263, 264], "newli": [91, 238, 255], "newreplicasetavail": 230, "nexport": 255, "next": [92, 94, 95, 110, 115, 156, 184, 185, 191, 198, 201, 203, 238, 250, 254, 260, 261, 263, 264, 267, 282, 283], "nf": [200, 273], "nfd": 202, "nfspv": 200, "nfspvc": 200, "nfunc": [130, 131, 132, 133, 134, 204], "nginx": [133, 201, 203, 204, 221, 238, 242, 274, 282, 283], "nginx_port": [58, 112, 114, 116, 130, 131, 132, 178, 179], "nhello": 253, "ni": [32, 38, 240], "nice": [78, 238], "nick": 240, "nicolaka": 273, "nicpon": 282, "nike": [66, 67, 68, 69, 70, 71, 72, 73, 74, 109, 111, 112, 113, 114, 115, 116, 117, 118, 161, 162, 164, 197, 198, 201, 202, 212, 227, 230, 260, 261, 263, 264, 268, 270], "nil": [229, 267], "nimport": [130, 131, 132, 133, 134, 204], "nist": 267, "nke": [109, 111, 112, 114, 116, 164, 202, 260, 261, 263, 264, 283], "nkernel": 256, "nlabel": 256, "nleft": 256, "nlp": [57, 183, 184, 191], "nltk": [98, 267], "nmai": [115, 260, 261, 263, 264], "nn": 115, "no_proxi": [8, 11, 13, 16, 29, 30, 34, 45, 57, 60, 66, 68, 86, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 127, 130, 131, 132, 139, 140, 141, 143, 144, 149, 150, 153, 158, 160, 161, 162, 164, 166, 171, 172, 178, 179, 184, 185, 186, 187, 200, 260, 261, 263, 264, 268, 273, 280], "no_subtree_check": 200, "no_wrapp": 283, "nobodi": 200, "node": [30, 53, 88, 89, 112, 114, 117, 125, 133, 142, 180, 188, 197, 199, 200, 201, 203, 204, 221, 225, 226, 229, 248, 256, 259, 272, 280, 282, 283, 285], "node0": 89, "node1": [89, 94, 229, 274], "node123": 229, "node2": 89, "node3": 89, "node4": 89, "node5": 89, "node6": 89, "node7": 89, "node_1": 110, "node_2": 110, "node_4": 110, "node_cidr": 273, "node_ip": 197, "node_metr": 225, "node_nam": 225, "node_port": 197, "nodeaddressautodetectionv4": 273, "nodelocaldn": 274, "nodenam": 229, "nodeport": [197, 198, 201, 203, 204, 221, 232], "nodeselector": [117, 273], "noffset": [115, 260, 261, 263, 264], "nogroup": 200, "nohup": [6, 55, 75, 92, 259], "nomic": 35, "nomin": 273, "non": [43, 44, 45, 46, 47, 50, 51, 115, 121, 199, 238, 241, 244, 255, 260, 261, 263, 264, 267, 282], "non_block": 115, "none": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 89, 90, 97, 110, 114, 115, 158, 166, 171, 225, 253, 254, 261, 263, 264, 273, 274], "noproxi": 48, "nor": 98, "norm": [240, 241], "normal": [86, 98, 254, 255, 267, 273, 282], "north": 273, "notat": 254, "note": [3, 5, 6, 11, 12, 13, 16, 17, 25, 29, 35, 48, 51, 52, 69, 80, 88, 89, 91, 93, 95, 97, 99, 106, 107, 111, 112, 113, 114, 115, 117, 118, 122, 123, 124, 125, 133, 140, 141, 142, 143, 149, 150, 151, 161, 162, 164, 178, 179, 180, 184, 186, 187, 188, 191, 194, 198, 199, 200, 202, 218, 223, 226, 227, 228, 230, 234, 238, 250, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 270, 274], "noteworthi": 185, "noth": 112, "notic": [1, 58, 87, 109, 112, 114, 115, 121, 130, 139, 159, 160, 161, 162, 172, 185, 193, 198, 254, 260, 261, 263, 264], "notimplementederror": 245, "notion": 139, "now": [3, 11, 17, 18, 25, 34, 89, 92, 109, 115, 140, 149, 178, 179, 195, 198, 199, 232, 238, 241, 254, 255, 259, 267, 268, 273, 274], "nozzl": 256, "npackag": [130, 131, 132], "npath": 256, "npm": [78, 108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 167, 176, 182], "npx": 6, "nq": 267, "nri": 199, "nright": 256, "nriplugin": 225, "nthe": [115, 260, 261, 263, 264], "nto": [115, 260, 261, 263, 264], "nucleu": 253, "null": [30, 122, 169, 198, 201, 203, 214, 215, 216, 218, 253, 261, 281], "num": [51, 52, 97, 261], "num_card": 91, "numa": 89, "number": [5, 9, 33, 35, 36, 37, 39, 51, 52, 53, 63, 64, 74, 89, 90, 91, 94, 98, 109, 110, 122, 160, 185, 199, 223, 225, 232, 253, 254, 255, 259, 260, 261, 263, 264, 267, 273, 281, 282, 283], "numer": [92, 97, 259], "numpi": 94, "nutrit": 267, "nv": [201, 282, 283, 284], "nvalu": [115, 260, 261, 263, 264], "nvidia": [168, 201, 230, 238, 249, 252, 259, 262, 265, 267, 268, 280, 281, 282, 283], "nvidia_gpu": 238, "o": [2, 3, 78, 89, 93, 107, 118, 126, 134, 143, 161, 162, 175, 181, 189, 197, 198, 199, 202, 223, 227, 230, 232, 234, 250, 256, 270, 273, 283], "oauth": 282, "oauth2": [196, 282], "oauth2_instal": 198, "obama": 99, "object": [45, 156, 191, 199, 238, 244, 253, 261, 267], "oblig": [237, 239], "obserbl": 225, "observ": [3, 17, 202, 225, 252, 255, 267, 283], "obsolet": [115, 260, 263, 264], "obtain": [45, 143, 166, 197, 202, 254], "occasion": [10, 255], "occupi": 6, "occur": [3, 11, 17, 18, 32, 35, 37, 38], "occurr": [64, 254], "och": 98, "oci": [197, 225, 272, 273], "ocr": [11, 16, 17, 18, 19, 282], "odd": 254, "off": [51, 52, 89, 90, 165, 198, 238, 241, 254, 255], "offens": [38, 237], "offer": [2, 31, 34, 45, 65, 67, 70, 72, 73, 74, 109, 110, 121, 160, 168, 196, 238, 245, 246, 250, 254, 259, 266, 267, 268], "offic": 35, "offici": [53, 141, 150, 194, 197, 200, 232, 234, 237, 259, 273, 280, 282], "offlin": [103, 112, 114, 237], "offline_evalu": 103, "offset": [115, 260, 261, 263, 264], "ofir": 267, "oft": 238, "often": [61, 63, 98, 130, 147, 160, 261], "oh": 266, "oidc": [196, 252, 283], "old": [225, 274], "older": [199, 255], "ollama": [111, 190, 280, 281, 282, 283, 284], "ollama_endpoint": [111, 260], "ollama_host": [111, 260], "ollama_model": [111, 260, 282], "omit": [97, 232], "ompi_mca_btl_vader_single_copy_mechan": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 97, 114, 115, 158, 171, 261], "onc": [3, 11, 12, 13, 14, 15, 16, 17, 18, 19, 32, 35, 38, 41, 51, 52, 89, 95, 112, 113, 114, 116, 123, 131, 140, 141, 149, 150, 161, 178, 184, 186, 194, 197, 238, 250, 255, 260, 261, 263, 264, 267, 273], "one": [2, 4, 5, 9, 18, 19, 23, 26, 27, 30, 32, 35, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 63, 67, 70, 72, 73, 74, 80, 89, 92, 95, 98, 109, 112, 113, 114, 123, 124, 130, 131, 140, 143, 149, 156, 160, 161, 168, 169, 178, 185, 186, 187, 190, 191, 198, 199, 200, 201, 203, 204, 221, 227, 230, 231, 238, 241, 245, 246, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 273, 276, 281, 282, 283], "oneccl": 30, "oneccl_bind_pt": 30, "oneccl_bindings_for_pytorch": 30, "oneclick": [280, 284], "ones": [7, 98, 199], "ongo": 3, "ongsoone": 250, "onli": [5, 9, 12, 25, 35, 46, 47, 89, 90, 91, 94, 95, 96, 97, 109, 115, 121, 126, 130, 134, 139, 160, 172, 175, 181, 183, 184, 185, 189, 191, 194, 196, 197, 198, 199, 200, 225, 229, 234, 238, 248, 250, 253, 254, 255, 260, 261, 263, 264, 267, 283], "onlin": [103, 112, 114, 227, 237, 267], "online_evalu": 103, "onprem": 250, "ons": [194, 252], "onto": [48, 239], "oob": 283, "op_1_0320241830": 184, "opanai_api_kei": 100, "opea": [1, 3, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 87, 88, 91, 93, 95, 97, 100, 101, 103, 104, 105, 107, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 143, 149, 150, 157, 158, 159, 161, 162, 163, 164, 170, 171, 172, 173, 174, 177, 178, 179, 180, 184, 185, 186, 187, 188, 190, 191, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 228, 232, 238, 240, 244, 245, 251, 252, 254, 257, 258, 259, 260, 261, 263, 264, 270, 274, 277, 278], "opea_genaicomps_root": 45, "opea_image_repo": 200, "opea_index_retriev": 3, "opea_mega_servic": [91, 245], "opea_micro_servic": [91, 245], "opea_rag_queri": 3, "opea_release_data": 283, "opea_servic": [2, 51], "opea_telemetri": 9, "opeadev": 236, "open": [2, 3, 25, 33, 35, 36, 37, 39, 42, 43, 44, 48, 49, 50, 53, 56, 58, 77, 88, 90, 92, 94, 95, 100, 109, 111, 112, 113, 114, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 160, 161, 163, 164, 166, 167, 168, 172, 178, 179, 180, 184, 185, 186, 187, 188, 191, 196, 198, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 236, 237, 238, 240, 241, 242, 246, 250, 255, 259, 260, 261, 263, 264, 272, 276, 282, 283, 284], "open_t": 78, "openai": [2, 3, 13, 22, 30, 50, 51, 52, 53, 78, 96, 100, 102, 103, 183, 184, 191, 220, 238, 253, 261, 267, 282, 283], "openai_api_kei": [3, 100], "openai_kei": 13, "openaiembed": 78, "opencodeinterpret": 121, "opencontain": 273, "opencv": 254, "openeb": 202, "openid": [196, 197, 198], "openrag": 267, "openshift": [259, 262, 282, 283, 284], "opentelemetri": [9, 248, 250], "opentelemetrycli": 77, "openvino": [231, 232, 248, 280, 282], "openvino_model": 232, "openvino_token": 232, "oper": [45, 46, 47, 58, 65, 67, 70, 72, 73, 74, 89, 91, 107, 115, 118, 121, 122, 123, 124, 125, 143, 168, 172, 183, 184, 191, 194, 196, 199, 202, 203, 223, 225, 227, 232, 247, 250, 252, 259, 260, 261, 263, 264, 267, 273, 274, 279, 282], "opinion": 237, "oplu": 254, "opportun": [98, 267], "opt": [199, 218, 225, 248, 273, 280, 283], "optim": [20, 23, 24, 38, 42, 46, 47, 51, 52, 58, 61, 63, 95, 110, 112, 113, 140, 149, 160, 161, 172, 178, 183, 186, 190, 238, 250, 258, 259, 266, 280, 281, 282, 283, 285], "optimum": [6, 46, 47, 55, 75, 88, 232], "option": [4, 36, 49, 51, 52, 88, 89, 90, 92, 93, 100, 111, 127, 131, 144, 153, 161, 166, 168, 178, 179, 186, 190, 196, 197, 198, 199, 201, 203, 204, 221, 238, 252, 253, 254, 256, 259, 265, 267, 268, 274, 277, 280, 281, 282, 283], "oracl": 284, "orang": [98, 254], "orchestr": [2, 91, 202, 238, 241, 245, 246, 259, 267, 276, 279, 280, 281, 282], "orchestrator_with_yaml": 238, "order": [34, 43, 44, 45, 46, 47, 50, 61, 63, 98, 110, 254, 260, 261, 263, 264, 267, 274], "org": [30, 98, 161, 162, 186, 187, 188, 189, 197, 237, 241, 254, 282], "organ": [17, 18, 34, 147, 194, 196, 236, 241, 243, 255], "organiz": 254, "orgniz": 247, "orient": 237, "origin": [35, 95, 98, 130, 165, 172, 190, 191, 195, 238, 241, 254, 255], "orphan": 254, "oss": [92, 259, 267], "otel": 250, "other": [6, 9, 30, 32, 34, 35, 42, 53, 58, 65, 67, 70, 72, 73, 74, 89, 90, 91, 94, 95, 99, 100, 109, 112, 114, 115, 116, 121, 130, 131, 132, 139, 140, 141, 143, 147, 149, 150, 151, 160, 168, 172, 177, 178, 179, 184, 185, 190, 191, 197, 198, 199, 223, 225, 229, 231, 237, 238, 239, 240, 241, 244, 246, 250, 254, 255, 259, 265, 267, 268, 273, 274, 280, 281, 282, 283, 284], "other_kei": [64, 184], "otherwis": [3, 6, 9, 12, 117, 123, 124, 125, 133, 142, 180, 188, 198, 199, 201, 203, 237, 238, 241, 259, 274], "oti": 232, "ought": 226, "ouput": 248, "our": [0, 32, 35, 58, 91, 95, 110, 111, 115, 122, 147, 163, 191, 198, 230, 253, 254, 255, 261, 263, 264, 266, 273], "out": [9, 36, 89, 91, 110, 115, 161, 162, 225, 232, 236, 238, 243, 245, 248, 250, 254, 255, 259, 260, 261, 263, 264, 266, 267, 274, 282, 283], "outbound": [241, 254], "outlin": [104, 105, 107, 111, 112, 113, 114, 116, 118, 123, 124, 126, 131, 132, 134, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 165, 166, 170, 171, 173, 174, 175, 178, 179, 181, 184, 186, 187, 189, 227, 245, 250, 266], "output": [3, 4, 6, 9, 31, 32, 33, 34, 38, 39, 42, 45, 51, 55, 56, 89, 90, 94, 97, 100, 110, 114, 115, 123, 124, 137, 138, 139, 148, 156, 184, 185, 190, 191, 199, 201, 202, 203, 204, 221, 225, 238, 241, 248, 249, 253, 254, 255, 256, 260, 261, 263, 264, 267, 273, 274, 281, 282, 283], "output_datatyp": [2, 245], "output_dir": 97, "output_fil": 93, "outsid": [123, 124, 198, 254], "outstand": 267, "over": [2, 5, 35, 88, 91, 94, 95, 98, 198, 241, 245, 246, 266, 274, 276], "overal": [2, 42, 45, 61, 63, 65, 67, 70, 72, 73, 74, 98, 115, 191, 198, 237, 244, 245, 249, 260, 261, 263, 264, 267], "overhead": [248, 283], "overlai": 273, "overlap": 98, "overlin": 254, "overrid": 255, "override_system_hostnam": 274, "oversight": [240, 241], "overview": [89, 168, 198], "overwrit": [199, 280], "ovm": 284, "owasp": 267, "owid": 273, "own": [45, 67, 70, 72, 73, 74, 89, 95, 123, 124, 168, 194, 198, 200, 208, 209, 226, 228, 234, 241, 242, 243, 246, 249, 250, 252, 254, 259, 267], "owner": [238, 241, 243, 282, 283], "ownership": 274, "p": [3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 81, 83, 84, 85, 86, 88, 97, 100, 103, 112, 114, 115, 121, 157, 158, 170, 171, 200, 210, 225, 226, 230, 250, 260, 261, 263, 264, 270, 273, 274], "p50": [94, 110, 283], "p90": [110, 282, 283], "p99": [94, 110, 283], "pace": 266, "pack": 89, "packag": [6, 34, 44, 45, 48, 50, 61, 63, 67, 70, 72, 73, 74, 89, 90, 93, 111, 112, 113, 115, 130, 131, 132, 133, 134, 140, 162, 164, 184, 186, 192, 204, 239, 250, 254, 267, 273, 274], "packet": 273, "pad": [30, 260, 261, 263, 264], "page": [86, 93, 98, 112, 114, 139, 172, 222, 238, 244, 251, 254, 255, 256, 267, 283], "page_cont": 78, "pagedattent": [51, 52, 53], "pai": 274, "pair": [23, 95, 156, 191, 274], "pandei": 242, "pane": [165, 198, 267], "panel": [92, 255, 259], "panic": 229, "paper": [3, 139], "papineni": 98, "papineni02bleu": 98, "paragraph": [254, 282], "parallel": [3, 17, 51, 52, 172, 194, 225, 226, 238, 259, 261, 270], "parallel_numb": [51, 52, 53], "param": [38, 90, 115, 282], "param_appli": 115, "paramet": [34, 36, 41, 42, 44, 45, 48, 50, 51, 52, 53, 58, 63, 66, 67, 68, 72, 74, 79, 88, 89, 90, 94, 95, 96, 98, 99, 104, 105, 107, 110, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 140, 141, 148, 149, 150, 162, 164, 173, 174, 178, 179, 197, 198, 202, 208, 216, 227, 230, 245, 250, 254, 258, 260, 261, 263, 264, 267, 270, 274, 280, 281, 282, 283], "parameter_nam": 253, "parametr": 5, "paraphras": 284, "parent": [11, 14, 17, 112, 114, 255], "pars": [13, 35, 80, 254], "parser": [254, 255], "parseunstructur": 80, "part": [2, 42, 95, 168, 178, 179, 184, 190, 198, 230, 254, 255, 261, 266, 267, 283], "parti": [1, 11, 17, 18, 159, 238, 267], "partial": 253, "particip": [237, 238, 241], "particular": [7, 32, 95, 107, 118, 143, 160, 227, 238, 253, 267], "particularli": [65, 67, 70, 72, 73, 74, 91, 245, 254, 267], "partner": [241, 267], "pass": [9, 11, 35, 51, 52, 53, 96, 102, 122, 195, 200, 214, 215, 216, 218, 238, 253, 259, 260, 261, 263, 264, 267], "passag": 33, "passage_max_len": 30, "password": [13, 35, 68, 92, 165, 197, 198, 223, 259, 272, 274], "past": [145, 146, 154, 155, 164, 167, 190], "pat": 6, "patch": [89, 198, 232, 267, 283], "patch32": [183, 184, 191], "patchruntimeconfig": 89, "path": [3, 11, 12, 14, 15, 17, 18, 19, 30, 79, 93, 111, 112, 113, 114, 116, 164, 197, 198, 200, 208, 214, 215, 216, 218, 225, 226, 228, 234, 242, 249, 254, 255, 260, 261, 263, 264, 267, 280, 281, 282, 283], "path_to_comp": [12, 13, 16, 17, 18, 19], "pathwai": [277, 283], "pathway_host": [69, 80], "pathway_port": [69, 80], "patronu": 35, "pattern": [51, 52, 90, 121, 237, 244, 251, 255], "payload": [11, 17, 18, 35], "paymentservic": 42, "pc": [111, 238, 259, 260, 262, 267, 281, 284], "pdf": [11, 13, 16, 17, 18, 109, 111, 112, 113, 114, 116, 139, 164, 202, 260, 261, 263, 264, 267, 283], "pdf2imag": 282, "pea": 266, "pear": 254, "peft": 283, "peft_model": 122, "pem": 198, "penal": 253, "penalti": 98, "pend": 279, "peopl": 237, "per": [53, 89, 90, 94, 95, 110, 112, 114, 116, 123, 124, 140, 141, 149, 150, 241, 250, 253, 254, 255, 259, 260, 261, 263, 264, 267, 282, 283], "percent": 241, "percentil": [9, 94], "perf": [267, 280], "perfect": 266, "perform": [2, 3, 5, 17, 20, 23, 24, 30, 32, 35, 38, 43, 44, 45, 46, 47, 50, 88, 89, 90, 91, 93, 94, 100, 102, 109, 110, 113, 121, 130, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 160, 161, 164, 168, 177, 178, 183, 184, 186, 191, 196, 199, 221, 236, 238, 241, 244, 245, 246, 250, 258, 259, 260, 261, 263, 264, 266, 274, 275, 276, 280, 281, 282, 283], "perhap": [118, 227, 238], "period": [237, 267], "perm": 254, "permiss": [45, 195, 198, 226, 237, 270, 272], "permit": 241, "persist": [7, 28, 59, 78, 125, 197, 267, 281], "persistentvolum": [197, 200], "persistentvolumeclaim": 200, "persistentvolumereclaimpolici": 200, "person": [31, 35, 36, 57, 163, 184, 232, 237, 241, 255, 270], "personnel": 196, "perspect": [96, 248, 250, 267], "pertain": [197, 241], "pertin": [61, 63, 109, 136, 137, 138, 160, 191, 259], "peteryang12": 234, "pg16": [70, 81], "pg_connection_str": [14, 70], "pgvector": [70, 277, 280, 281, 282, 284], "phase": [64, 160, 250, 267], "phi": [45, 50, 284], "philosophi": [238, 244, 246], "phoenix": 267, "phone": [35, 36, 254], "phrase": [32, 182, 254, 261], "physic": [89, 237], "physical_package_id": 89, "pick": [35, 253], "pictur": [162, 254, 283], "pid": 225, "piec": 35, "pieplin": 103, "pii": [25, 31, 33, 37, 39, 49, 56, 190, 232, 248, 277, 280, 282], "pii_detect": [35, 36], "piidetect": 35, "pilot": [231, 232], "pincpu": 89, "pinecon": [267, 277, 280, 282, 284], "pinecone_api_kei": 15, "pinecone_index_nam": 15, "ping": [210, 273], "pinmemori": 89, "pip": [2, 3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 51, 52, 54, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 88, 90, 93, 94, 97, 103, 110, 122, 255, 274, 283], "pip3": [93, 255], "pip_depend": 3, "pipe": 254, "pipelein": 238, "pipelin": [89, 91, 97, 104, 105, 109, 111, 112, 113, 114, 116, 123, 124, 131, 132, 140, 141, 149, 150, 161, 162, 164, 166, 173, 174, 178, 179, 183, 184, 186, 187, 191, 194, 226, 229, 232, 238, 245, 246, 249, 259, 260, 261, 263, 264, 266, 281, 282, 283, 284], "pkg": 273, "place": [34, 121, 122, 123, 124, 125, 127, 135, 144, 153, 166, 203, 254, 266, 268], "placehold": [35, 36, 259], "placement": 256, "plai": [65, 67, 70, 72, 73, 74, 191, 201, 203, 204, 221, 267], "plaid": 267, "plain_text": 93, "plan": [3, 34, 100, 184, 238, 244, 245, 267, 273, 277], "plan_execut": 3, "plan_executor": 4, "plane": [110, 273, 274], "planner": [4, 246], "platform": [2, 3, 48, 51, 52, 53, 116, 121, 130, 163, 168, 177, 225, 234, 236, 240, 248, 249, 250, 258, 259, 262, 265, 266, 276, 279, 281, 282, 283], "playbook": [250, 274], "playground": [250, 284], "pleas": [2, 3, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 28, 35, 41, 50, 51, 52, 53, 57, 59, 65, 66, 71, 76, 79, 91, 92, 93, 95, 96, 97, 99, 100, 101, 102, 103, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 122, 123, 124, 130, 131, 132, 134, 140, 141, 148, 149, 150, 161, 162, 164, 166, 168, 181, 183, 186, 187, 189, 190, 196, 198, 200, 201, 202, 205, 206, 207, 208, 209, 211, 217, 219, 222, 223, 228, 230, 231, 232, 238, 241, 255, 260, 261, 263, 264, 270, 273, 274], "plu": 254, "pluggabl": [94, 267], "plugin": [13, 68, 194, 196, 222, 225, 234, 273, 274, 282], "plugin_config_path": 225, "plugin_path": 225, "plusminu": 254, "png": [23, 40, 161, 162, 254, 267, 283], "poc": 267, "pod": [89, 91, 106, 107, 110, 117, 118, 125, 126, 127, 133, 134, 142, 143, 144, 151, 153, 166, 175, 180, 181, 188, 189, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 223, 225, 226, 227, 228, 230, 232, 250, 270, 273, 274, 280, 281, 283], "pod_cidr": 273, "podantiaffin": 273, "podnetwork": 273, "point": [2, 32, 48, 92, 107, 109, 115, 118, 119, 123, 124, 126, 134, 136, 137, 138, 143, 164, 167, 175, 181, 189, 190, 227, 238, 245, 246, 254, 255, 259, 260, 264, 266, 267, 276], "poison": [38, 248], "poisson": 90, "polici": [2, 88, 168, 194, 196, 198, 199, 240, 267], "polit": 237, "politician": 32, "pong": 210, "pool": 89, "poppler": [11, 13, 16, 17, 18, 19], "popul": 267, "popular": [43, 44, 50, 88, 95, 97, 127, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 164, 166, 221, 246, 248, 254, 258, 261, 267], "port": [2, 6, 9, 45, 51, 52, 53, 58, 69, 74, 77, 94, 109, 110, 113, 115, 117, 121, 123, 124, 125, 130, 133, 139, 140, 141, 142, 149, 150, 151, 160, 161, 164, 166, 172, 180, 185, 186, 187, 188, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 232, 245, 255, 259, 260, 261, 263, 264, 274, 281, 282, 283], "port_numb": [45, 51, 52, 53], "portnumb": 232, "portugues": 267, "pose": [185, 245], "posit": [237, 241, 253], "possess": [121, 160, 198], "possibl": [0, 2, 89, 98, 168, 238, 244, 250, 254, 267, 273], "post": [3, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 86, 94, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 137, 138, 139, 140, 141, 143, 148, 149, 150, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 181, 184, 189, 197, 198, 202, 206, 207, 208, 209, 211, 212, 214, 215, 216, 219, 227, 230, 236, 237, 245, 249, 253, 255, 260, 261, 263, 264, 267, 270], "post_process_faq": 148, "postfix": [260, 261, 263, 264], "postgr": [70, 81], "postgres_db": [70, 81], "postgres_host_auth_method": [70, 81], "postgres_password": [70, 81], "postgres_us": [70, 81], "postgresql": [14, 70, 197], "postgress": 197, "posthog": 77, "postprocess": 122, "potent": [61, 63], "potenti": [2, 3, 61, 63, 121, 168, 241, 245, 248, 266, 267, 282, 283], "power": [51, 52, 89, 109, 113, 147, 161, 163, 168, 190, 191, 196, 232, 248, 249, 250, 259], "pr": [238, 242, 244, 249, 255, 282, 283], "practic": [91, 95, 267, 268], "practis": 4, "pre": [3, 48, 111, 200, 228, 230, 234, 238, 250, 267, 283], "prebuilt": [143, 253], "preced": 254, "precis": [51, 52, 65, 67, 70, 72, 73, 74, 98, 122, 172, 267, 281], "predefin": [96, 229, 245], "predict": [35, 89, 98, 156, 191, 277, 283], "predictionguard": [25, 33, 36, 37, 39, 56], "predictionguard_api_kei": [25, 33, 36, 37, 39, 49, 56, 283], "predownload": [201, 203, 204, 214, 215, 216, 218, 221], "preethi": 242, "preethivenkatesh": 242, "prefer": [12, 59, 69, 112, 113, 114, 116, 123, 124, 164, 184, 186, 187, 190, 253, 254, 260, 261, 263, 264, 267], "prefernewballoon": 89, "prefil": [51, 52], "prefix": [51, 52, 78, 122, 199, 232, 267, 283], "prem": [226, 267, 270, 284], "premi": 246, "premis": [259, 267], "premise": 238, "prep": [17, 89, 161, 162, 201, 202, 230, 252, 260, 261, 263, 264, 281, 282, 283, 284], "prepaid": [115, 260, 261, 263, 264], "prepar": [57, 64, 137, 138, 140, 149, 184, 194, 226, 230, 234, 279, 283], "prepare_doc_": [115, 260, 261, 263, 264], "prepare_doc_milvu": 11, "prepare_doc_neo4j": 13, "prepare_doc_pgvector": 14, "prepare_doc_pinecon": 15, "prepare_doc_qdr": 16, "prepare_doc_redi": 17, "prepare_doc_redis_on_rai": [17, 18], "prepare_doc_vdm": 18, "prepare_videodoc_redi": 12, "preprocess": [10, 20, 23, 24, 95, 267], "preprocess_data": 95, "prerequisit": [42, 45, 270], "presence_penalti": [50, 51, 53, 112, 114, 253, 283], "present": [115, 121, 147, 172, 185, 238, 241, 246, 248, 249, 253, 254, 256, 260, 261, 263, 264, 267], "preserv": 89, "presid": [99, 241], "press": [77, 236, 255, 267], "pressur": 135, "presupposit": 32, "pretrain": [54, 88, 98, 283], "preval": 267, "prevent": [34, 39, 89, 190, 196, 198, 199, 225, 241, 267], "previou": [37, 110, 119, 123, 124, 164, 167, 195, 254, 255, 267, 273, 274, 278], "previous": [273, 274], "primari": [34, 90, 110, 168, 241, 266, 267], "primarili": [65, 67, 70, 72, 73, 74, 191], "princip": [236, 240, 272], "prinicip": [236, 240], "print": [3, 6, 9, 11, 12, 17, 18, 19, 23, 30, 32, 35, 38, 40, 45, 55, 57, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 78, 86, 93, 95, 98, 99, 101, 104, 105, 111, 112, 113, 114, 115, 116, 160, 161, 162, 164, 173, 174, 184, 212, 219, 260, 261, 263, 264, 281, 283], "print_hello_world": [126, 164], "printf": 255, "println": [130, 131, 132, 133, 134, 204], "prior": [91, 172, 241, 253], "priorit": 172, "privaci": [237, 267], "privat": [36, 107, 118, 143, 227, 237], "privileg": [198, 225, 267], "pro": [49, 238, 244, 245, 267], "proactiv": [190, 259], "probabl": 253, "probe": [199, 250, 281, 282], "problem": [3, 199, 238, 244, 254, 255, 283], "problemat": 238, "proc": 89, "proce": [107, 112, 113, 118, 123, 127, 131, 140, 143, 144, 149, 153, 161, 166, 178, 186, 222, 227, 255, 260, 261, 264], "procedur": 241, "proceed": [98, 127, 144, 153, 166, 198], "process": [2, 3, 11, 13, 16, 17, 18, 19, 20, 23, 24, 34, 45, 53, 61, 63, 77, 80, 86, 89, 90, 91, 95, 97, 104, 105, 107, 111, 112, 113, 114, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 140, 141, 143, 147, 148, 149, 150, 156, 157, 158, 161, 162, 164, 168, 169, 170, 171, 173, 174, 175, 178, 179, 181, 183, 184, 186, 187, 189, 191, 196, 198, 199, 223, 225, 227, 238, 240, 241, 242, 249, 250, 253, 254, 255, 259, 260, 261, 263, 264, 265, 266, 267, 275, 276, 280, 282], "process_": 225, "process_crud_dataset": [91, 97], "process_resident_memory_byt": 223, "process_start_time_second": 223, "process_t": [11, 13, 16, 17], "process_virtual_memory_byt": 223, "process_virtual_memory_max_byt": 223, "processor": [44, 102, 109, 112, 113, 121, 123, 130, 131, 139, 147, 160, 161, 172, 177, 178, 183, 185, 186, 191, 259, 262, 265, 267, 268], "produc": [145, 146, 154, 155, 164, 167, 255], "product": [2, 34, 35, 74, 77, 114, 121, 160, 166, 185, 191, 200, 240, 250, 259, 265, 267, 276], "productivity_suite_reactui": 166, "productivitysuit": [164, 165, 168, 242, 282, 283], "profession": [98, 237, 241, 267], "profil": 93, "program": [1, 121, 123, 124, 130, 159, 190, 191, 200, 266, 267], "programm": [121, 123, 124], "progress": [11, 13, 16, 17, 199, 230, 249, 253, 259, 267], "project": [1, 2, 3, 11, 13, 16, 17, 35, 45, 54, 82, 87, 88, 89, 93, 95, 97, 100, 101, 103, 104, 105, 109, 110, 111, 112, 113, 114, 116, 121, 122, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 159, 160, 161, 162, 164, 170, 171, 173, 174, 178, 179, 183, 184, 186, 187, 190, 193, 195, 198, 200, 202, 223, 226, 227, 238, 239, 240, 244, 247, 249, 250, 251, 254, 255, 260, 261, 263, 264, 268, 270, 281, 282, 283, 285], "projectcalico": 273, "prom": [199, 223], "prom_n": 199, "prom_svc": 199, "prom_url": 199, "prometheu": [9, 88, 225, 248, 250, 258, 280, 282], "prometheusadapt": 199, "prometheusexport": 89, "prometheusreleas": 199, "prometheusspec": 199, "promethu": 225, "promhttp_": 225, "promhttp_metric_handler_requests_in_flight": 223, "promhttp_metric_handler_requests_tot": 223, "promis": [266, 267], "promot": [2, 195, 241, 245, 246, 250, 259, 274, 276], "prompt": [25, 33, 36, 39, 45, 48, 49, 51, 52, 55, 56, 57, 64, 86, 90, 111, 112, 114, 115, 122, 161, 162, 166, 172, 183, 184, 186, 187, 190, 191, 218, 236, 248, 249, 250, 255, 259, 260, 261, 263, 264, 266, 267, 274, 276, 277, 281, 282, 283, 284], "prompt_collection_nam": 164, "prompt_id": [60, 164], "prompt_inject": 37, "prompt_registri": [60, 164, 238, 242, 282], "prompt_service_create_endpoint": 164, "prompt_service_get_endpoint": 164, "prompt_text": [60, 164], "prompt_token": [253, 261], "promptli": [34, 237], "promptregistri": [60, 164], "proper": [223, 226, 238, 270], "properli": [6, 95, 122, 123, 124, 202], "properti": 196, "propos": [240, 241, 244, 276], "proposit": 32, "proprietari": [5, 267], "prospect": 267, "protect": [34, 196, 198, 248, 267, 283], "proto": [58, 238], "protocol": [90, 94, 112, 113, 123, 131, 140, 149, 161, 178, 186, 197, 198, 232, 238, 248], "prototyp": 109, "provid": [2, 4, 7, 8, 9, 12, 17, 18, 19, 20, 23, 24, 25, 26, 27, 29, 31, 33, 35, 36, 37, 39, 40, 42, 45, 48, 49, 51, 52, 53, 56, 58, 60, 61, 63, 65, 67, 70, 72, 73, 74, 76, 82, 88, 89, 90, 91, 92, 95, 96, 100, 109, 110, 115, 121, 122, 123, 124, 127, 130, 139, 140, 141, 144, 149, 150, 151, 153, 160, 163, 164, 165, 168, 177, 182, 183, 184, 190, 191, 194, 196, 199, 200, 201, 214, 215, 216, 222, 223, 225, 226, 230, 234, 236, 237, 238, 241, 245, 246, 248, 249, 250, 252, 253, 254, 255, 258, 259, 260, 261, 263, 264, 266, 267, 268, 270, 276, 282, 283], "proviintegr": 283, "provis": [91, 230], "proxi": [11, 17, 18, 32, 35, 38, 48, 58, 77, 109, 110, 112, 114, 116, 121, 127, 130, 131, 132, 139, 143, 144, 153, 160, 166, 172, 178, 179, 185, 194, 196, 200, 232, 248, 260, 261, 263, 264, 268, 273, 282, 283], "proxy_add_x_forwarded_for": 58, "proxy_pass": 58, "proxy_set_head": 58, "proxyv2": 231, "prune": 110, "psycopg2": [14, 70], "pt_hpu_enable_lazy_collect": 97, "pub": 274, "public": [104, 105, 107, 111, 112, 113, 114, 118, 123, 124, 143, 161, 162, 164, 173, 174, 184, 186, 190, 202, 226, 227, 237, 238, 241, 243, 255, 270, 272, 274, 284], "publicli": [241, 267], "publish": [42, 97, 98, 107, 112, 113, 114, 116, 118, 123, 124, 126, 131, 132, 134, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 170, 171, 174, 175, 178, 179, 181, 184, 186, 187, 189, 197, 226, 227, 237, 238, 241, 254, 261, 266, 267, 270, 275, 282, 283], "pull": [17, 26, 27, 34, 42, 48, 63, 69, 70, 72, 74, 81, 83, 84, 85, 86, 109, 112, 114, 116, 121, 130, 139, 162, 172, 178, 179, 192, 241, 242, 250, 256, 268, 270], "pull_request_target": 282, "pump": 256, "punctuat": [254, 282], "pure": 89, "purg": 273, "purpl": 267, "purpos": [30, 35, 156, 160, 169, 190, 194, 229, 241, 250, 267], "push": [2, 168, 195, 225, 238, 255, 260, 261, 263, 264, 267, 270, 272, 280, 281, 283], "put": [95, 148, 200, 229, 241, 247, 254, 256], "pv": [200, 282], "pvc": 200, "pw": 80, "pwd": [12, 13, 34, 42, 45, 63, 68, 70, 72, 74, 83, 86, 107, 118, 143, 198, 226, 227, 230, 270], "px": 254, "py": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 51, 52, 54, 55, 56, 57, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 80, 88, 90, 91, 94, 95, 96, 97, 103, 104, 105, 110, 111, 112, 113, 114, 115, 116, 122, 123, 124, 140, 141, 148, 149, 150, 161, 162, 173, 174, 178, 179, 184, 186, 187, 198, 238, 247, 255, 260, 261, 263, 264, 281, 282, 283], "pygment": 254, "pymarkdownlnt": 255, "pypi": [2, 88], "pyspark": 280, "python": [22, 54, 57, 69, 75, 78, 86, 88, 90, 91, 93, 94, 96, 97, 100, 103, 104, 105, 107, 110, 111, 112, 113, 114, 115, 116, 118, 122, 123, 124, 126, 130, 131, 132, 133, 134, 140, 141, 143, 148, 149, 150, 161, 162, 164, 168, 173, 174, 175, 178, 179, 181, 184, 186, 187, 189, 198, 204, 219, 227, 230, 238, 253, 254, 255, 260, 261, 263, 264, 270, 274, 277, 280, 281, 283], "python3": [51, 52, 91, 93, 95, 110, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 198, 212, 255, 260, 261, 263, 264, 274], "pythonpath": [12, 13, 16, 17, 18, 19], "pytorch": [30, 46, 47], "q": [55, 56, 57, 64, 190, 267, 279], "q1": 35, "q2": 267, "q5gmm": 273, "qa": [97, 148, 172, 191, 267], "qdrant": [2, 190, 191, 236, 265, 266, 267, 277, 279, 281, 282, 284], "qdrant_host": [16, 71, 113], "qdrant_port": [16, 71, 113], "qdrant_storag": 83, "qna": [102, 103, 172, 191, 250, 258, 280], "qo": [89, 273], "qualiti": [2, 5, 13, 20, 23, 24, 65, 67, 70, 72, 73, 74, 95, 98, 100, 172, 191, 238, 249, 267, 276], "quantifi": 110, "quantiz": 267, "queri": [3, 4, 5, 32, 38, 41, 43, 44, 45, 46, 47, 48, 49, 50, 61, 63, 64, 69, 95, 96, 97, 100, 101, 102, 104, 105, 110, 111, 112, 113, 114, 115, 116, 123, 124, 126, 131, 136, 137, 138, 139, 140, 141, 143, 147, 149, 150, 164, 172, 173, 174, 178, 179, 181, 183, 184, 190, 191, 199, 202, 209, 215, 245, 249, 253, 259, 260, 261, 263, 264, 267, 282], "query_max_len": 30, "query_timeout": 90, "querywrit": 5, "question": [3, 42, 50, 51, 55, 56, 95, 99, 102, 103, 115, 119, 123, 124, 139, 147, 160, 161, 162, 163, 164, 167, 172, 189, 190, 191, 198, 200, 202, 237, 238, 242, 249, 260, 261, 263, 264, 265, 267, 281], "question_answ": 97, "question_typ": 95, "queue": 223, "queue_size_embedding_rerank_tgi": 223, "quick": [20, 23, 24, 42, 82, 168, 243, 252, 254, 260, 261, 263, 264, 272, 283], "quicker": [241, 276], "quickli": [109, 163, 191, 246, 259], "quickstar": 238, "quickstart": [82, 238], "quirk": 254, "quit": 77, "quorum": 241, "quot": [254, 282, 283], "quotaenforc": 77, "qwen": [46, 47, 97, 121, 122], "qwen2": [46, 47, 97, 191, 280, 281], "r": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 88, 90, 91, 93, 97, 103, 109, 110, 112, 113, 114, 115, 116, 122, 197, 198, 255, 256, 261, 263, 264, 273, 274], "ra": 267, "rabbit": 162, "race": [32, 237], "rachel": 242, "rag": [2, 3, 19, 25, 32, 38, 61, 86, 89, 91, 95, 100, 110, 111, 113, 118, 136, 137, 138, 160, 161, 162, 163, 164, 183, 190, 191, 194, 200, 202, 231, 232, 245, 246, 249, 250, 258, 259, 260, 261, 263, 264, 266, 276, 277, 279, 280, 281, 283, 284, 285], "rag_ag": 3, "rag_ev": [91, 97, 283], "rag_gatewai": 245, "rag_port": 245, "rag_rerank": 253, "rag_retriev": 253, "rag_servic": 245, "raga": [95, 238, 242, 258, 267, 280, 283, 284], "ragag": 283, "ragagentdocgrad": 282, "ragas_evaluation_benchmark": 96, "ragas_metr": [97, 99], "ragasmetr": [99, 280], "rai": [2, 17, 18, 42, 137, 190, 247, 252, 267, 277, 279, 280, 281, 282, 284], "rais": [3, 11, 17, 18, 32, 35, 38, 90, 121, 122, 123, 124, 125, 203, 245, 282], "raise_for_statu": [3, 11, 17, 18, 32, 35, 38], "ramasethu": 282, "ran": 238, "rancher": 273, "random": [29, 36, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 90, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 212, 219, 253, 260, 261, 263, 264, 282], "random_prompt": 90, "rang": [66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 98, 111, 112, 113, 114, 115, 116, 161, 162, 164, 168, 172, 173, 174, 184, 196, 212, 219, 260, 261, 263, 264, 265, 266, 267, 268, 282], "rank": [64, 69, 115, 259, 266, 267, 282], "rankdir": 256, "ranker": [259, 267], "rapid": [117, 131, 266], "rapidli": [65, 67, 70, 72, 73, 74, 266, 267], "rare": 199, "rarr": 254, "rate": [2, 3, 29, 90, 94, 98, 103, 245, 246, 249, 267, 276], "rather": [64, 250, 255, 267], "ratio": [89, 98, 267], "raw": [23, 57, 109, 112, 161, 162, 184, 198, 199, 202, 227, 254, 273], "ray_serv": 45, "ray_serve_endpoint": 45, "ray_serve_servic": 45, "rayserv": 280, "rbac": [198, 199, 226, 270], "rc": 195, "rdp": [112, 113, 123, 131, 140, 149, 161, 178, 186], "re": [0, 2, 69, 108, 115, 119, 120, 128, 129, 135, 145, 146, 154, 164, 167, 182, 184, 194, 200, 230, 249, 252, 254, 255, 256, 258, 259, 265, 267, 268, 272, 277, 282], "reach": [9, 80, 98, 198, 199, 238, 241], "react": [3, 4, 100, 127, 144, 153, 164, 166, 190, 238, 260, 261, 263, 264, 265, 267, 280, 281, 282, 283], "react_langchain": 3, "react_langgraph": 3, "reactui": 265, "read": [35, 51, 52, 80, 89, 172, 199, 200, 203, 254, 255], "read_model": 232, "readabl": [121, 254, 282], "reader": 254, "readi": [64, 91, 104, 105, 107, 109, 110, 112, 113, 114, 116, 118, 125, 126, 134, 143, 166, 168, 173, 175, 181, 184, 186, 187, 189, 197, 199, 225, 226, 227, 228, 230, 232, 236, 238, 250, 255, 259, 266, 270, 273, 274, 276, 279], "readili": [32, 38], "readm": [7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 28, 29, 58, 59, 60, 65, 66, 71, 76, 88, 95, 107, 109, 118, 127, 143, 144, 153, 165, 166, 190, 194, 200, 201, 206, 226, 230, 238, 247, 254, 255, 280, 281, 282, 283], "readme_gmc": [238, 254], "readonli": [200, 232], "readonlyrootfilesystem": 281, "readwritemani": 200, "readwriteonc": 197, "real": [2, 58, 80, 86, 94, 97, 110, 163, 172, 246, 248, 250, 259, 267, 274, 276, 277], "realist": 95, "realiz": 267, "realm": [58, 165, 197, 198], "rearrang": [61, 63], "reason": [3, 89, 95, 97, 98, 109, 110, 230, 237, 241, 248, 249, 259, 267, 272], "rebuild": 255, "recal": 267, "receiv": [44, 65, 67, 70, 72, 73, 74, 115, 163, 241, 260, 261, 263, 264, 267, 273], "recent": [97, 100, 267], "recheck": [104, 105, 173, 174], "recip": 267, "recogn": [115, 135, 182, 254, 260, 261, 263, 264], "recognit": [2, 6, 35, 102, 103, 190, 191], "recogniz": 12, "recommend": [3, 5, 13, 51, 52, 57, 65, 67, 70, 72, 73, 74, 89, 93, 110, 112, 194, 234, 253, 254, 255, 267, 272], "reconcil": [107, 118, 143, 227, 230, 270, 283], "reconfigur": 89, "record": [7, 28, 103, 115, 119, 120, 136, 137, 138, 148, 164, 167, 176, 191, 202, 249, 256, 259, 260, 261, 263, 264, 273], "recreat": [89, 267], "rectangl": 256, "recur": [115, 260, 261, 263, 264], "recursion_limit": [3, 5], "recursive_limit": 3, "red": [236, 240, 254, 259, 262, 266, 282, 283], "reddit": 254, "redeploi": 245, "redi": [2, 67, 72, 73, 89, 92, 109, 111, 112, 114, 115, 116, 118, 137, 138, 160, 164, 166, 190, 191, 201, 202, 206, 212, 227, 230, 252, 260, 261, 263, 264, 267, 277, 279, 280, 281, 282, 283, 284], "redirect": [165, 198], "redis_grafana": 92, "redis_host": [161, 162], "redis_url": [12, 17, 67, 72, 73, 111, 137, 138, 161, 162, 164, 206, 212, 230, 260, 261, 263, 264], "redownload": 57, "reduc": [11, 109, 200, 248, 254, 259, 267], "redund": 282, "ref": [254, 281, 283], "refact": 282, "refactor": [121, 280, 281, 282, 283, 284], "refer": [3, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 28, 33, 35, 41, 50, 51, 52, 53, 59, 65, 66, 69, 71, 76, 78, 79, 88, 89, 91, 92, 95, 97, 100, 101, 102, 103, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 122, 123, 130, 131, 139, 140, 143, 147, 148, 149, 156, 160, 161, 164, 165, 166, 167, 168, 169, 172, 177, 178, 185, 186, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 218, 219, 221, 222, 223, 226, 231, 234, 238, 240, 241, 253, 255, 260, 261, 263, 264, 268, 270, 272, 273, 279, 280, 282, 283], "refere": 148, "referenc": [229, 254], "reference_free_rubrics_scor": 148, "reference_length": 98, "refin": [61, 63, 121, 241, 281, 282, 283], "reflect": [97, 198, 267], "reflexion": 267, "refresh": [119, 120, 164, 167, 176, 197], "refus": [115, 261, 263, 264], "reg": 254, "regard": [240, 241, 248], "regardless": [237, 241, 267], "regex": 98, "region": 272, "regist": [3, 225, 238, 241, 246, 254], "register_microservic": 2, "registr": [238, 241, 245], "registri": [123, 124, 140, 141, 166, 190, 195, 197, 200, 225, 226, 246, 250, 261, 264, 270, 277, 281], "regress": [35, 238], "regul": [34, 147], "regular": [35, 94, 267, 273], "regulartori": 248, "regulatori": [196, 267], "reimer": 267, "reinforc": [196, 267], "reinstal": 273, "reinvent": 250, "reject": [34, 232, 237, 238, 244], "rel": [89, 98, 248, 254, 267], "relat": [3, 5, 20, 23, 24, 31, 42, 95, 97, 107, 109, 110, 112, 114, 115, 116, 118, 121, 130, 131, 132, 139, 143, 160, 164, 166, 172, 178, 179, 185, 202, 227, 230, 236, 238, 240, 241, 244, 249, 254, 258, 260, 261, 263, 264, 268, 270, 272, 273, 281, 285], "relationship": [42, 74], "relativepath": 254, "relaunch": 267, "releas": [30, 92, 100, 110, 168, 190, 198, 199, 200, 218, 225, 236, 238, 240, 241, 252, 254, 255, 256, 259, 260, 261, 263, 264, 273, 274], "release_not": 283, "relev": [3, 5, 60, 61, 63, 64, 74, 80, 86, 99, 100, 109, 115, 121, 136, 137, 138, 160, 163, 172, 190, 191, 202, 238, 243, 249, 253, 254, 259, 260, 261, 263, 264, 267], "reli": [89, 248, 254, 266], "reliabl": [20, 23, 24, 58, 196, 267], "relianc": 172, "religion": 237, "reload": [48, 110, 260, 273], "remain": [98, 109, 136, 137, 138, 255, 259, 267], "remaind": 241, "rememb": [67, 70, 72, 73, 74, 198], "remot": [89, 112, 113, 119, 120, 123, 131, 140, 149, 161, 164, 167, 178, 186, 255], "remote_addr": 58, "remov": [0, 7, 28, 57, 59, 64, 107, 118, 143, 164, 167, 184, 202, 227, 230, 237, 241, 254, 255, 260, 261, 263, 264, 273, 274, 281, 282, 283], "ren": 242, "renam": [0, 50, 112, 114, 282, 283], "render": [202, 254, 255], "reorg": [280, 282, 283], "repeat": [225, 253], "repetition_penalti": [45, 48, 50, 51, 96, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264, 283], "rephras": [3, 5, 100], "replac": [36, 97, 98, 102, 110, 111, 112, 113, 114, 116, 121, 123, 124, 140, 141, 149, 150, 161, 162, 164, 184, 186, 187, 198, 199, 225, 226, 228, 238, 241, 244, 254, 255, 256, 260, 261, 263, 264, 267, 272, 274, 280, 282, 283], "replace_method": 36, "replan": 3, "replann": 4, "repli": 238, "replic": 267, "replica": [91, 230, 273, 282, 283], "replica_tuning_config": 91, "replicaset": 230, "replicasetupd": 230, "repo": [69, 89, 91, 95, 97, 99, 100, 101, 108, 119, 120, 121, 128, 129, 135, 145, 146, 154, 155, 167, 176, 182, 195, 197, 199, 200, 223, 226, 238, 241, 247, 249, 254, 255, 256, 266, 272, 283], "repons": 248, "report": [110, 191, 229, 234, 237, 240, 241, 243, 249, 255, 267], "reportperiod": 89, "repositori": [45, 89, 121, 194, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 238, 241, 243, 244, 251, 252, 255, 258, 261, 265, 266, 267, 270, 272, 273, 274, 275, 277, 285], "repres": [90, 98, 174, 237, 240, 241, 253, 267, 274], "represent": [190, 253, 259, 267], "reproduc": [238, 267], "req": 94, "request": [0, 2, 3, 5, 7, 9, 11, 17, 18, 20, 23, 24, 25, 32, 33, 34, 35, 36, 37, 38, 39, 48, 49, 51, 52, 53, 56, 69, 80, 89, 90, 94, 95, 110, 121, 122, 123, 124, 125, 126, 134, 143, 175, 181, 189, 192, 197, 198, 200, 203, 225, 227, 232, 237, 241, 242, 243, 245, 246, 248, 249, 259, 260, 261, 263, 264, 267, 276, 281, 282, 284], "requestexcept": [3, 11, 17, 18, 32, 35, 38], "requir": [2, 20, 24, 36, 65, 88, 89, 90, 91, 93, 94, 97, 103, 107, 108, 110, 115, 118, 119, 120, 122, 123, 124, 126, 128, 129, 135, 143, 145, 146, 154, 155, 163, 166, 172, 175, 176, 181, 182, 189, 194, 195, 196, 197, 198, 199, 225, 227, 229, 231, 234, 238, 241, 243, 245, 246, 248, 250, 253, 254, 255, 259, 260, 261, 263, 264, 266, 267, 270, 272, 274, 276, 281, 282, 283], "require_human_feedback": 3, "requiredduringschedulingignoredduringexecut": 273, "requirements_rai": [17, 18], "requri": 261, "rerank": [2, 9, 45, 69, 88, 89, 90, 91, 97, 101, 109, 110, 118, 137, 138, 143, 168, 190, 191, 199, 201, 215, 223, 227, 230, 238, 242, 245, 252, 265, 268, 279, 280, 281, 282, 283, 284], "rerank_model_id": [30, 63, 110, 111, 113, 137, 138, 164, 173, 174, 215, 260, 261, 263, 264], "rerank_queri": [137, 138], "rerank_service_host_ip": [111, 113, 137, 138, 164, 173, 174, 184, 260, 261, 263, 264], "rerank_service_port": [173, 174], "reranked_doc": [137, 138], "rerankfinetun": 283, "reranking_doc": 202, "reranking_endpoint": 97, "reranking_t": [115, 260, 261, 263, 264], "reranking_tei_xeon": 63, "resctrl": 225, "research": [1, 87, 139, 159, 193, 267], "reserv": [184, 253], "reservedpoolnamespac": 89, "reservedresourc": 89, "reset": 274, "resign": 241, "resili": 267, "resolut": [241, 249], "resolution": 249, "resolv": [40, 121, 162, 241, 266], "resourc": [88, 107, 118, 143, 184, 194, 196, 198, 200, 225, 226, 227, 230, 246, 250, 252, 258, 270, 272, 274, 280, 282, 283, 284], "resp": [3, 11, 17, 18, 32, 35, 38], "respect": [5, 9, 45, 50, 51, 202, 206, 212, 237, 241, 254, 255, 256, 267], "respond": [80, 160, 191, 249], "respons": [3, 4, 11, 14, 17, 32, 34, 38, 43, 44, 45, 51, 89, 94, 97, 102, 109, 111, 112, 113, 114, 116, 123, 124, 136, 137, 138, 139, 160, 161, 162, 184, 191, 197, 198, 200, 238, 240, 241, 242, 245, 248, 249, 250, 259, 260, 261, 263, 264, 267, 268, 281, 282, 283], "response_format": 253, "response_typ": 198, "rest": [22, 123, 124, 248, 253, 254, 267], "restart": [48, 106, 110, 112, 114, 115, 116, 123, 124, 140, 149, 150, 151, 184, 198, 199, 200, 225, 226, 228, 230, 260, 261, 263, 264, 270, 273, 274, 282], "restor": [249, 254], "restrict": [45, 122, 198], "restructur": 283, "restructuredtext": 255, "restructuretext": 254, "result": [3, 4, 45, 64, 65, 67, 70, 72, 73, 74, 88, 89, 90, 98, 110, 115, 161, 162, 172, 201, 202, 203, 204, 221, 225, 226, 249, 253, 255, 256, 259, 260, 261, 263, 264, 266, 267, 270, 281, 282, 283], "result_on": 78, "resum": 283, "ret": 3, "retain": [119, 120, 164, 167, 176, 199, 200, 241], "retreiv": 253, "retri": 273, "retriev": [2, 3, 5, 7, 9, 11, 13, 16, 17, 20, 23, 24, 28, 29, 30, 42, 51, 59, 60, 61, 63, 64, 89, 90, 91, 95, 97, 100, 107, 109, 118, 136, 137, 138, 143, 156, 160, 163, 169, 172, 183, 185, 190, 191, 200, 201, 227, 230, 236, 238, 242, 245, 246, 249, 252, 258, 259, 265, 266, 276, 279, 280, 281, 282, 283, 284], "retrieval_endpoint": 97, "retrieval_metr": 97, "retrieval_tool": 95, "retrievaltool": [3, 101, 137, 138], "retrieve_model_id": [69, 70, 72, 74], "retrieved_data": 3, "retrieved_doc": [50, 51, 61, 62, 63, 64, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 211, 253, 260, 261, 263, 264], "retriever_neo4j": 68, "retriever_pgvector": 70, "retriever_qdr": 71, "retriever_r": [260, 261, 263, 264], "retriever_redi": [66, 67, 72, 73], "retriever_service_host_ip": [111, 113, 137, 138, 164, 184, 260, 261, 263, 264], "retriever_vdm": 74, "retrival_k": 97, "return": [2, 3, 12, 29, 33, 34, 35, 39, 42, 45, 50, 51, 60, 63, 78, 98, 107, 112, 114, 115, 118, 143, 164, 198, 210, 227, 253, 255, 259, 260, 261, 263, 264, 267, 281, 282], "return_output": 3, "reus": [135, 184, 238, 267, 280], "rev": [115, 260, 261, 263, 264, 267], "revenu": [35, 66, 67, 68, 69, 70, 71, 72, 73, 74, 109, 111, 112, 113, 114, 115, 116, 117, 118, 161, 162, 164, 197, 198, 201, 202, 212, 227, 230, 260, 261, 263, 264, 267, 268, 270], "revers": 58, "revert": [282, 283], "review": [35, 119, 121, 164, 167, 190, 237, 239, 242, 244, 245, 246, 247, 248, 249, 250, 254, 267, 282], "revis": [115, 122, 261, 263, 264, 267, 281, 282, 283], "revolution": [139, 147, 191], "rewrit": 5, "rfc": [238, 245, 246, 249], "rfc_templat": 238, "rgb": [256, 267], "rhoai": 109, "rhocp": [259, 262, 282, 283], "right": [58, 88, 94, 122, 145, 146, 148, 155, 164, 167, 237, 238, 241, 254, 255, 256, 268], "rightward": 254, "rigid": 254, "risk": [112, 115, 260, 261, 263, 264, 267], "rm": [3, 9, 32, 35, 38, 42, 57, 64, 110, 184, 273], "robert": [236, 240], "roberta": [32, 38], "robot": [123, 124, 261], "robust": [20, 23, 24, 65, 67, 70, 72, 73, 74, 95, 121, 196, 198, 236, 266, 267, 275, 276, 282], "rocket": 40, "role": [29, 45, 53, 65, 67, 70, 72, 73, 74, 110, 114, 161, 162, 165, 186, 187, 188, 189, 191, 197, 198, 241, 253, 254, 267, 272, 273, 274], "roll": 267, "rollout": 198, "root": [69, 93, 229, 254, 255, 267, 273, 274, 282], "rou": [115, 260, 261, 263, 264], "roug": 97, "roughli": 241, "rouko": 98, "roumelioti": 242, "round": 256, "rout": [2, 29, 60, 164, 190, 226, 232, 238, 245, 246, 259, 276], "router": [107, 109, 112, 113, 114, 115, 116, 118, 143, 198, 226, 227, 228, 229, 230, 232, 245, 261, 263, 264, 270, 281, 282, 283], "row": [254, 256], "row1": 256, "row2": 256, "row3": 256, "row4": 256, "rp": [94, 110], "rsa": 274, "rss": [11, 17, 18], "rst": [241, 254, 255], "rtd": 255, "rtrim": 254, "rtt": 273, "rude": [31, 38], "ruijin": 248, "rule": [198, 199, 232, 244, 247, 251, 254, 282], "run": [3, 6, 9, 22, 25, 33, 36, 37, 39, 40, 42, 51, 52, 53, 54, 55, 56, 57, 58, 64, 69, 75, 77, 78, 86, 88, 89, 90, 92, 94, 97, 100, 101, 103, 104, 105, 106, 107, 111, 113, 115, 117, 118, 121, 123, 124, 125, 127, 130, 131, 132, 133, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 161, 162, 163, 164, 166, 172, 173, 174, 178, 179, 180, 184, 186, 187, 188, 192, 195, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 228, 230, 238, 249, 250, 253, 254, 259, 260, 261, 263, 264, 267, 270, 272, 273, 274, 281, 282, 283], "run_benchmark": 95, "run_data_preprocess": 95, "run_generate_answ": 95, "run_grad": 95, "run_ingest_data": 101, "run_rag_benchmark": 96, "run_sample_data": 95, "run_test": 90, "run_tim": 90, "runasroot": 281, "runc": [3, 12, 17, 18, 30, 32, 35, 38, 157, 170, 225, 273], "runc_ver": 273, "runinng": [210, 214, 215, 216, 218], "runner": [238, 280], "runtim": [3, 6, 12, 17, 18, 30, 32, 34, 35, 38, 40, 42, 45, 46, 47, 55, 75, 89, 90, 97, 114, 115, 157, 158, 170, 171, 194, 222, 225, 227, 234, 248, 261, 273, 274, 283], "runtimeerror": 115, "ruoyu": 242, "rw": 200, "rwo": 197, "s0": 256, "s1": 256, "s2": 256, "s3": [80, 256], "sa": [236, 266], "sacrebleu": 98, "sacrif": [32, 38], "sadtalk": 249, "safe": [31, 34, 114, 238, 267], "safeguard": [25, 32, 33, 36, 37, 38, 39, 49, 56, 100, 196, 279], "safeti": [88, 230, 232, 246, 258, 267, 277], "safety_guard_endpoint": [34, 208, 261], "safety_guard_model_id": [34, 208, 261], "sai": [248, 260, 261, 263, 264], "sale": 35, "salienc": 259, "salim": 98, "same": [17, 18, 30, 89, 94, 98, 100, 118, 130, 161, 162, 191, 199, 226, 227, 238, 253, 254, 255, 267, 270, 272, 283], "sampl": [23, 24, 78, 92, 95, 122, 161, 162, 164, 168, 184, 194, 198, 226, 228, 230, 238, 250, 253, 254, 260, 261, 263, 264, 265, 267, 270, 274, 283], "samplingratepermillion": 89, "sap": 267, "sapphir": [117, 131], "sasha": 99, "satg": 274, "satisfact": 147, "save": [7, 11, 12, 13, 14, 15, 16, 17, 18, 19, 28, 29, 59, 60, 86, 88, 89, 93, 110, 117, 125, 133, 142, 148, 163, 164, 180, 184, 188, 199, 226, 228, 234, 249, 267], "save_every_k_task": 122, "save_gener": 122, "save_generations_path": 122, "save_model": 232, "save_refer": 122, "save_references_path": 122, "sbin": 273, "sbom": 282, "scalab": 74, "scalabl": [2, 3, 7, 20, 23, 24, 25, 33, 36, 37, 39, 49, 56, 89, 102, 109, 110, 112, 113, 121, 123, 130, 131, 139, 140, 147, 149, 160, 161, 168, 172, 177, 178, 183, 185, 186, 196, 198, 238, 245, 246, 259, 262, 266, 267, 285], "scale": [2, 74, 88, 90, 91, 168, 199, 225, 245, 246, 253, 265, 266, 267, 276, 283], "scaleai": 267, "scan": [195, 225, 238, 255, 282, 283, 285], "scenario": [65, 67, 70, 72, 73, 74, 79, 97, 110, 194, 198, 250, 267], "scene": 103, "scheduel": [201, 203], "schedul": [110, 117, 173, 174, 199, 273, 274, 282], "schema": 283, "scheme": [58, 92, 259], "scope": [197, 198, 238, 283, 285], "score": [32, 37, 38, 98, 115, 260, 261, 263, 264, 267], "score_threshold": [66, 67, 68, 72, 74, 90, 96], "scorecard": [88, 246, 258], "scrape": [9, 92, 172, 223, 225, 259], "scrape_config": [92, 259], "scrape_pool_target": 199, "screen": [254, 267], "screenshot": [123, 124, 165], "script": [51, 52, 53, 88, 90, 95, 96, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 140, 141, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 194, 198, 200, 234, 238, 242, 247, 255, 258, 260, 261, 263, 264, 267, 280, 281, 282, 283, 284], "scroll": [108, 120, 145, 146, 155, 164, 167, 176, 190], "sdp": [90, 93, 110], "seamless": [2, 20, 23, 24, 45, 163, 198, 245, 246, 250, 276], "seamlessli": [7, 25, 28, 33, 36, 37, 39, 49, 56, 59, 121, 249, 279], "search": [0, 25, 42, 59, 60, 61, 63, 65, 67, 70, 72, 73, 74, 86, 91, 92, 95, 112, 114, 172, 176, 183, 184, 190, 191, 200, 202, 254, 259, 267], "search_engin": 18, "search_typ": [66, 67, 68, 72, 74, 90, 91, 96, 97], "searcheddoc": [50, 51, 282], "searchedmultimodaldoc": 283, "searchqa": 175, "searchqna": [168, 190, 195, 242, 249, 280, 281, 282, 283, 284], "searchqna_gaudi": 175, "searchqna_xeon": 175, "searchsearchmenu": [137, 138], "searchstreamlin": [137, 138], "sec": [90, 250, 259], "second": [42, 90, 94, 95, 98, 100, 110, 115, 184, 223, 245, 249, 253, 260], "second_video_nam": 64, "secret": [197, 198, 281, 282], "section": [0, 3, 12, 34, 35, 69, 90, 100, 107, 110, 118, 121, 126, 134, 143, 175, 178, 181, 189, 198, 201, 214, 215, 216, 227, 229, 241, 254, 260, 261, 263, 264, 267, 268, 273, 274, 283], "secur": [2, 31, 34, 88, 113, 114, 115, 123, 131, 137, 138, 140, 149, 161, 163, 168, 178, 186, 190, 194, 196, 198, 232, 237, 238, 239, 240, 241, 244, 246, 248, 260, 261, 263, 264, 266, 267, 272, 275, 276, 279, 280, 282, 283, 284, 285], "securitycontext": 281, "sed": [51, 52, 106, 110, 117, 125, 126, 127, 133, 134, 142, 144, 151, 153, 166, 175, 180, 181, 198, 199, 200, 202, 226, 228, 273, 274], "see": [1, 2, 6, 9, 30, 35, 38, 49, 69, 77, 80, 87, 88, 89, 92, 93, 98, 100, 107, 113, 118, 121, 123, 124, 125, 127, 143, 144, 153, 159, 161, 167, 168, 184, 186, 187, 190, 193, 194, 200, 201, 214, 215, 216, 223, 225, 227, 230, 237, 241, 249, 253, 254, 255, 259, 260, 261, 263, 264, 267, 272, 273], "seed": [122, 162, 253], "seek": [123, 240, 241], "seen": 267, "segment": [98, 267], "segmentapi": 77, "select": [23, 26, 27, 51, 52, 82, 89, 92, 109, 112, 113, 123, 124, 140, 149, 161, 165, 172, 178, 186, 195, 198, 242, 250, 253, 255, 259, 266, 268, 275], "selectng": 238, "selector": [199, 232, 255, 273], "self": [2, 34, 89, 238, 241, 245, 246, 255, 261, 267, 276], "semant": [20, 23, 24, 25, 61, 63, 109, 136, 137, 138, 160, 191, 238, 259, 267], "semin": 3, "send": [5, 35, 36, 48, 64, 69, 80, 95, 115, 126, 134, 175, 181, 189, 229, 238, 249], "senior": [236, 240], "sens": [5, 267], "sensit": [31, 35, 123, 124, 196, 198, 225], "sent": [39, 183, 229, 253, 266], "sentenc": [2, 98, 115, 182, 267], "sentient": 261, "sentiment": [11, 17, 18], "sep": 275, "separ": [1, 3, 54, 87, 88, 89, 159, 184, 193, 198, 225, 238, 250, 254, 256, 280, 281], "seq": 261, "seq_len": 261, "sequenc": [35, 43, 44, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 253, 256, 267], "sequenti": [3, 194, 226, 238, 254, 259, 270], "seri": [9, 96, 237, 243, 250, 259], "seriou": 237, "serv": [2, 3, 11, 20, 22, 32, 38, 43, 44, 48, 50, 51, 52, 53, 58, 100, 110, 112, 114, 115, 121, 123, 124, 139, 140, 141, 142, 143, 149, 150, 151, 164, 184, 190, 191, 196, 221, 223, 225, 238, 241, 245, 246, 253, 259, 261, 263, 264, 267, 276, 280, 281, 282, 283], "server": [8, 9, 21, 23, 26, 27, 29, 30, 34, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 57, 58, 60, 61, 62, 63, 64, 72, 73, 74, 76, 86, 88, 90, 91, 92, 95, 100, 104, 105, 107, 109, 114, 115, 116, 117, 118, 123, 124, 126, 131, 132, 133, 134, 137, 138, 141, 143, 150, 156, 157, 158, 162, 164, 169, 170, 171, 173, 174, 175, 179, 181, 184, 187, 189, 198, 200, 227, 232, 247, 249, 250, 253, 255, 260, 261, 263, 264, 273, 274, 277], "servic": [2, 3, 9, 13, 16, 20, 22, 29, 31, 48, 65, 80, 89, 90, 91, 92, 107, 118, 122, 134, 141, 143, 150, 168, 179, 190, 191, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 230, 232, 238, 241, 246, 249, 250, 257, 259, 265, 266, 267, 268, 270, 272, 273, 276, 277, 279, 280, 281, 282, 283, 284], "service_descript": 253, "service_host_ip": 245, "service_info": 91, "service_ip": [90, 110], "service_nam": [90, 166, 253], "service_port": [90, 110, 166], "service_rol": 245, "service_ti": 253, "service_typ": [2, 245], "service_url": [22, 97], "servicemonitor": 199, "servicemonitorselectorniluseshelmvalu": 199, "servicenam": [118, 227, 229, 230], "serviceorchestr": [2, 245], "serviceorchestratorwithyaml": 245, "serviceroletyp": 245, "servicetyp": [2, 245], "serviceurl": 229, "session": [250, 267], "set": [5, 10, 11, 12, 13, 16, 17, 30, 36, 42, 43, 44, 45, 48, 50, 54, 66, 67, 68, 69, 72, 74, 77, 86, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100, 103, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 125, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 148, 149, 150, 151, 153, 160, 161, 162, 163, 164, 165, 166, 172, 178, 179, 180, 183, 184, 185, 186, 191, 192, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 228, 229, 230, 231, 234, 237, 241, 245, 250, 253, 254, 260, 261, 263, 264, 266, 267, 270, 273, 282, 283, 285], "set_env": [109, 112, 114, 116, 121, 130, 131, 132, 139, 160, 172, 178, 179, 184, 185, 238, 268, 282, 283], "setfit": 284, "setup": [9, 58, 88, 95, 97, 100, 136, 143, 166, 168, 197, 198, 199, 200, 232, 250, 252, 254, 255, 258, 265, 267, 277, 283, 285], "setuptool": [51, 52, 282], "setvar": 30, "sever": [194, 225, 253, 259, 260, 261, 263, 264, 266, 267, 272, 273, 274, 275], "sevic": 253, "sex": 237, "sexual": [34, 237], "sg": [57, 183, 184, 191], "sh": [30, 45, 51, 52, 53, 95, 100, 101, 109, 112, 114, 115, 116, 121, 130, 131, 132, 139, 148, 160, 172, 178, 179, 184, 185, 200, 201, 203, 204, 221, 225, 234, 235, 238, 260, 261, 263, 264, 268, 281, 282, 283], "sha": [112, 118, 143, 186, 227, 263, 264, 283], "sha256": 273, "shall": [197, 198, 274], "shanghai": [91, 97], "shape": [30, 90, 94, 256, 266, 267], "sharan": 282, "shard": [97, 115], "shardcannotstart": 115, "share": [2, 78, 110, 168, 200, 202, 249, 259, 267], "sharegpt_v3_unfiltered_cleaned_split": [51, 52], "shareidlecpusinsam": 89, "sharpli": 245, "sheet": [115, 260, 261, 263, 264], "shell": [51, 52, 254], "shen": [1, 87, 159, 253], "shift": [11, 13, 16, 17, 267], "shirodkar": 282, "shm": [41, 43, 44, 45, 50, 112], "shm_size": [263, 264], "short": [3, 238, 241, 244, 254, 267], "shorter": 98, "shorthand": 254, "shot": 267, "should": [6, 9, 11, 12, 13, 14, 16, 17, 30, 35, 51, 52, 57, 64, 77, 80, 89, 92, 96, 97, 100, 107, 112, 118, 123, 127, 143, 144, 153, 168, 197, 198, 199, 200, 203, 205, 208, 209, 210, 212, 217, 219, 223, 226, 227, 229, 232, 238, 241, 247, 253, 254, 255, 260, 261, 263, 264, 267, 273], "show": [30, 51, 52, 89, 93, 109, 115, 120, 156, 160, 169, 176, 177, 183, 185, 195, 197, 200, 202, 225, 227, 254, 255, 256, 260, 261, 263, 264, 266, 267], "showcas": [95, 100, 102, 121, 191, 260, 261, 263, 264, 267, 268], "shown": [3, 7, 100, 112, 113, 114, 116, 123, 124, 164, 184, 186, 187, 248, 254, 255, 256, 260, 261, 263, 264], "shut": [69, 94, 115], "sibl": 255, "side": 248, "sidecar": [198, 231, 232, 248], "sig": 274, "sign": [163, 198, 238, 241, 254, 255, 267, 273], "signal": [34, 190], "signific": [95, 238, 245, 254, 267], "significantli": [32, 38, 61, 63, 65, 67, 70, 72, 73, 74, 100, 245], "sihan": 242, "silence_girl": [57, 184], "silent": [161, 162, 239], "similar": [6, 20, 23, 24, 42, 65, 66, 67, 68, 70, 72, 73, 74, 77, 86, 90, 91, 97, 98, 109, 136, 137, 138, 183, 184, 190, 191, 198, 238, 259, 260, 261, 263, 264, 267, 274], "similarity_distance_threshold": [66, 67, 68, 72, 74], "similarity_score_threshold": [66, 67, 68, 72, 74], "similarity_search": 78, "simpl": [2, 3, 20, 23, 24, 48, 74, 95, 109, 121, 130, 139, 172, 234, 238, 259, 274], "simplest": [123, 124], "simpli": [5, 91, 93, 95, 97, 98, 141, 150, 230, 254, 274], "simplifi": [2, 107, 112, 113, 114, 116, 118, 123, 124, 126, 131, 132, 134, 140, 141, 143, 149, 150, 157, 158, 161, 162, 164, 168, 170, 171, 175, 178, 179, 181, 184, 186, 187, 189, 198, 227, 250, 254, 265, 266, 267, 268, 276], "simul": [88, 90], "simultan": [20, 23, 24, 80, 172], "sinc": [94, 98, 110, 111, 113, 123, 124, 140, 141, 149, 150, 161, 162, 164, 184, 186, 187, 223, 238, 248, 261], "singer": 267, "singl": [9, 11, 17, 18, 19, 48, 80, 89, 90, 96, 123, 124, 163, 172, 184, 198, 237, 245, 250, 253, 254, 259, 267, 280, 284], "single_gaudi": 110, "sit": 30, "site": [0, 185, 236, 241, 243, 250, 254, 255, 259], "situat": 3, "six": 267, "size": [41, 43, 44, 45, 48, 50, 51, 52, 91, 112, 113, 114, 116, 117, 164, 184, 223, 237, 238, 244, 254, 260, 261, 263, 264, 267], "skeleton": 250, "skip": [112, 114, 143, 178, 179, 254, 260, 263, 264, 273], "sky": [33, 48], "sla": [253, 267], "slack": 267, "sleep": [57, 64, 89, 107, 118, 126, 134, 143, 175, 181, 184, 189, 198, 227, 230, 270, 273], "slice": [260, 261, 263, 264], "slide": [108, 120, 176], "slight": 238, "slim": 283, "slip": 254, "slow": [89, 199], "small": [2, 5, 11, 51, 52, 61, 88, 102, 191, 199, 220, 227, 238, 254, 267, 284], "smaller": [2, 32, 38, 89, 245, 246, 276], "smallest": 48, "smart": 254, "smi": 172, "smith": [35, 254], "smooth": [98, 123, 124, 259], "smoothli": 283, "snapshot": 267, "snc": 89, "snippet": [95, 121, 123, 124, 163], "so": [6, 17, 18, 35, 57, 88, 91, 93, 95, 107, 112, 115, 118, 126, 134, 143, 168, 175, 181, 184, 189, 192, 198, 199, 201, 203, 223, 226, 227, 230, 241, 246, 247, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 267, 272, 273], "social": [32, 237, 241], "socio": 237, "sock": 225, "socket": [89, 91, 225, 273], "socket_path": 225, "soft": 267, "softwar": [1, 87, 121, 159, 193, 194, 222, 234, 236, 239, 240, 266, 267, 268], "sole": [46, 47], "solut": [2, 7, 53, 74, 95, 96, 110, 114, 160, 164, 168, 196, 198, 225, 236, 238, 245, 246, 249, 250, 259, 260, 261, 263, 264, 268, 275, 279], "solv": [3, 238, 244], "some": [9, 23, 26, 27, 29, 91, 92, 95, 96, 100, 108, 110, 111, 113, 119, 120, 123, 124, 128, 129, 130, 135, 140, 141, 145, 146, 149, 150, 154, 155, 161, 162, 164, 167, 176, 182, 184, 185, 186, 187, 199, 200, 225, 232, 238, 244, 253, 254, 255, 256, 260, 261, 262, 263, 264, 267, 270, 273, 279, 280, 281, 282, 283], "someon": [31, 38, 242], "someth": [80, 100, 238, 255, 273], "sometim": [254, 267], "soon": [31, 107, 112, 113, 118, 123, 124, 126, 131, 132, 134, 140, 143, 149, 161, 162, 164, 175, 178, 181, 184, 186, 189, 227, 260, 261, 263, 264], "sophist": [3, 267], "sorri": [0, 32, 38], "sort": [64, 89, 237, 267], "sota": [249, 267], "sound": [108, 147, 190, 191], "sourc": [1, 2, 3, 6, 10, 11, 17, 18, 30, 35, 43, 44, 48, 50, 53, 64, 77, 78, 86, 87, 88, 89, 92, 93, 94, 98, 100, 109, 110, 112, 114, 121, 130, 131, 132, 136, 137, 138, 139, 140, 141, 142, 143, 147, 149, 150, 151, 159, 160, 163, 168, 172, 173, 174, 175, 176, 177, 178, 179, 183, 184, 185, 190, 191, 193, 196, 198, 221, 225, 232, 238, 240, 241, 243, 249, 250, 254, 255, 256, 259, 260, 261, 263, 264, 267, 268, 273, 274, 275, 276, 282, 283, 284], "source_cod": [130, 131, 132, 133, 134, 204], "source_languag": [178, 179, 180], "source_video": [161, 162], "south": 273, "space": [51, 52, 65, 67, 70, 72, 73, 74, 123, 124, 160, 184, 237, 238, 259, 267, 270, 283], "spaci": 267, "spam": 232, "span": [9, 254], "spanish": 267, "sparknlp": 267, "spars": [61, 63, 267], "spawn": [51, 52, 94], "spdx": [241, 282], "speak": 249, "spec": [89, 118, 197, 198, 199, 200, 201, 202, 203, 204, 221, 226, 227, 229, 230, 232, 257, 267, 270, 273], "special": [48, 89, 121, 254, 267], "specif": [2, 3, 5, 7, 8, 20, 23, 24, 30, 88, 89, 90, 91, 93, 94, 107, 109, 112, 114, 116, 118, 122, 143, 169, 172, 185, 191, 194, 197, 198, 200, 227, 231, 232, 241, 245, 246, 250, 253, 255, 259, 260, 261, 263, 264, 268, 276, 281, 282], "specifi": [3, 5, 11, 13, 16, 17, 18, 51, 52, 53, 63, 65, 67, 70, 72, 73, 74, 88, 90, 91, 92, 97, 100, 110, 143, 197, 198, 199, 202, 206, 225, 229, 237, 245, 249, 253, 254, 255, 256, 259, 267, 270, 274, 283], "spectrogram": 249, "speech": [2, 6, 12, 38, 75, 102, 103, 104, 105, 190, 191, 217, 253], "speecht5": [102, 104, 105, 107, 190, 191, 217, 252, 281], "speecht5_serv": 75, "speecht5_tt": 2, "speecht5model": 282, "speed": [11, 13, 16, 17, 57, 74, 117, 238, 244, 267], "speedup": 17, "spell": [115, 261, 263, 264, 283], "spent": [120, 176], "sphinx": [254, 255, 256], "sphinx_": 254, "sphinx_build": 254, "sphinxcontrib": 255, "spliit": 248, "split": [280, 282], "split_merg": [91, 97], "spoken": [102, 191], "spot": 266, "spr": [89, 249], "spreadsheet": 110, "spycsh": 245, "sql": [5, 70, 81, 100, 191, 250], "sqlitedb": 77, "squad": 250, "squad_v2": 148, "squar": 256, "sqv2_context": 148, "sqv2_faq": 148, "src": [3, 78, 109, 112, 113, 114, 115, 116, 261, 263, 264], "ss": [197, 198], "ssh": [112, 113, 123, 131, 140, 149, 161, 178, 186, 274], "ssl": 274, "st": 272, "stabl": [30, 40, 178, 179, 246, 266, 267, 273, 284], "stack": [9, 67, 72, 73, 84, 115, 118, 194, 199, 210, 222, 223, 227, 234, 260, 261, 263, 264, 266, 267, 276], "stackoverflow": 254, "staf": 267, "stage": [6, 51, 52, 75, 238, 244, 259, 266, 267], "stagger": 241, "stakehold": 196, "stand": [61, 63, 254, 255], "standard": [88, 96, 98, 107, 109, 118, 143, 196, 227, 240, 241, 254, 255, 256, 259, 266, 267, 282], "star": [238, 256], "starcod": [43, 44, 50], "starpii": 35, "start": [9, 10, 51, 52, 76, 82, 88, 89, 94, 107, 108, 115, 118, 119, 120, 121, 122, 126, 130, 134, 139, 143, 157, 158, 167, 170, 171, 172, 175, 176, 181, 189, 192, 197, 200, 205, 212, 217, 219, 223, 225, 227, 238, 245, 252, 254, 255, 256, 259, 260, 261, 263, 264, 266, 267, 272, 273, 274, 275, 276, 277, 283], "start_servic": 245, "startup": [77, 112, 113, 114, 116, 168, 184, 238, 244], "stat": [93, 248], "state": [3, 51, 52, 53, 99, 115, 166, 199, 225, 236, 241, 254, 260, 261, 263, 264, 267, 276], "stateless": 248, "statement": [115, 119, 164, 167, 260, 261, 263, 264], "static": [12, 30, 61, 89, 246, 284], "static_config": [92, 259], "statist": [80, 94, 253, 273, 280, 282], "statu": [3, 9, 11, 42, 52, 53, 107, 110, 118, 125, 126, 134, 137, 138, 143, 175, 181, 189, 197, 198, 202, 223, 225, 226, 227, 228, 230, 232, 237, 241, 244, 253, 259, 270, 273, 274, 281], "stdin": 272, "steadi": 241, "steer": 243, "step": [3, 4, 5, 57, 69, 77, 91, 92, 95, 96, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 127, 130, 131, 132, 134, 139, 140, 141, 143, 144, 149, 150, 153, 157, 158, 160, 161, 162, 164, 165, 166, 170, 171, 172, 174, 175, 178, 179, 181, 184, 185, 186, 187, 189, 194, 195, 197, 198, 199, 202, 222, 227, 229, 230, 231, 234, 236, 250, 255, 260, 261, 263, 264, 267, 268, 270, 272], "step1": 48, "step2": 48, "stepnam": 229, "steve": [236, 240], "stick": 254, "still": [42, 89, 115, 119, 120, 164, 167, 176, 199, 255, 261, 263, 264, 267], "stitch": 238, "stop": [5, 57, 64, 94, 110, 190, 225, 245, 253, 255, 267, 282], "stop_reason": 261, "stopsign": [161, 162, 186, 187, 188, 189], "storag": [28, 59, 74, 80, 83, 112, 113, 123, 131, 140, 149, 161, 178, 186, 190, 197, 200, 245, 259, 267], "storageclassnam": 200, "store": [7, 8, 10, 12, 28, 59, 64, 65, 67, 69, 70, 72, 73, 74, 79, 90, 109, 136, 137, 138, 160, 172, 183, 184, 190, 191, 236, 241, 244, 245, 249, 250, 251, 259, 260, 261, 263, 264, 266, 267, 274, 276, 283], "str": [3, 98, 245], "straightforward": [20, 23, 24, 61, 63], "strategi": [4, 5, 11, 13, 16, 17, 44, 88, 91, 100, 139, 275, 282], "strategy_fil": 91, "stream": [41, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 80, 90, 104, 105, 107, 111, 112, 113, 114, 115, 116, 123, 124, 164, 172, 173, 174, 184, 209, 253, 260, 261, 263, 264, 267, 268, 282, 283], "stream_opt": 253, "streamlin": [45, 46, 47, 58, 91, 121, 163, 191, 198, 250, 275], "strength": 267, "strengthen": 282, "stress": [93, 110, 281], "stress_venv": 110, "stresscli": [88, 90, 258, 282, 283], "stresscli_virtualenv": 93, "stretch": 250, "strict": 196, "string": [20, 23, 24, 35, 36, 45, 50, 98, 115, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 229, 244, 251, 253, 254, 260, 261, 263, 264, 281, 282], "strip": 12, "strong": 254, "strongli": [115, 261, 263, 264], "strtype": 42, "struct": 254, "structur": [10, 11, 14, 17, 191, 238, 244, 245, 254, 255, 261, 276, 282, 283], "studi": [97, 248, 250], "studio": [191, 200, 231, 284], "style": [161, 162, 254, 256, 283], "sub": [89, 115, 198, 238, 240, 241, 254, 260, 263, 264], "subchart": 199, "subclass": 245, "subfilt": 232, "subject": [1, 32, 87, 115, 159, 191, 193, 241, 260, 261, 263, 264, 267], "sublist": 254, "submiss": [241, 266], "submit": [111, 112, 114, 116, 121, 123, 124, 164, 183, 192, 241, 243, 244, 251, 254, 255, 260, 261, 263, 264, 267], "submitt": 238, "subnet": 273, "subscrib": [238, 253], "subsequ": [97, 100, 172, 267], "subset": [95, 115, 223, 260, 261, 263, 264, 267], "substanc": 34, "substanti": [238, 245, 267], "substitut": [58, 110, 198, 254], "subsystem": [255, 267], "subtask": 88, "subtl": [254, 261], "subtli": 32, "succe": [94, 273], "succeed": [137, 138], "success": [3, 11, 17, 18, 32, 35, 38, 94, 100, 238, 255, 267], "successfulli": [51, 52, 100, 114, 187, 205, 206, 207, 208, 209, 211, 212, 217, 219, 230, 273, 274, 282], "sudo": [48, 110, 198, 200, 225, 255, 260, 273, 274, 282], "suffici": 90, "suggest": [57, 69, 121], "suicid": 34, "suit": [2, 31, 65, 67, 70, 72, 73, 74, 79, 110, 166, 168, 191, 194, 246, 250, 252, 260, 261, 263, 264, 265, 267, 276, 279], "suitabl": [123, 131, 168, 199], "sum": [199, 281], "summar": [12, 44, 121, 123, 124, 131, 132, 145, 146, 167, 190, 191, 200, 247, 250, 261, 265, 279, 280], "summari": [9, 74, 94, 139, 143, 164, 190, 238, 243, 254, 265, 277], "summarize_image_via_lvm": 10, "super": [115, 267], "superbowl": 267, "superglu": 250, "supervis": [156, 191], "supervisor": [5, 100, 191], "supplement": 183, "suppli": [115, 238, 261, 263, 264], "support": [2, 7, 11, 13, 16, 17, 18, 20, 23, 24, 28, 30, 34, 35, 40, 42, 46, 47, 48, 51, 52, 53, 55, 56, 57, 59, 65, 67, 69, 70, 72, 73, 74, 88, 89, 90, 92, 96, 100, 101, 107, 109, 112, 115, 117, 118, 121, 123, 124, 130, 139, 143, 160, 172, 183, 184, 185, 190, 194, 196, 198, 200, 222, 225, 226, 228, 229, 232, 234, 240, 241, 245, 246, 248, 249, 252, 253, 254, 255, 256, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 276, 279, 280, 281, 282, 283, 284], "supported_exampl": [254, 283], "suppos": [139, 160, 200], "sure": [6, 11, 12, 17, 18, 19, 69, 80, 92, 93, 106, 109, 110, 112, 115, 117, 123, 124, 125, 127, 133, 142, 144, 151, 153, 166, 180, 188, 194, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 226, 228, 230, 234, 238, 254, 259, 260, 261, 263, 264, 270, 273, 274], "surfix": 282, "surg": 249, "suspici": 255, "sustain": 237, "suyu": 242, "sv": [267, 279, 284], "svc": [55, 90, 92, 107, 110, 117, 118, 125, 133, 142, 143, 151, 161, 166, 180, 188, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 227, 229, 230, 232, 238, 259, 270, 283], "svc_endpoint": 202, "svd_endpoint": 40, "svd_server": 40, "svelt": 123, "svg": 254, "svp": [236, 240], "swap": [259, 273], "swape": 238, "swapoff": 273, "swer": [115, 260, 261, 263, 264], "swift": [100, 101], "swiftli": [61, 63, 109, 136, 137, 138, 259], "switch": [95, 226, 227, 229, 238, 259, 270, 281, 282, 283, 284], "switzerland": 98, "swjjv": 89, "sy": [89, 225], "symbol": 254, "synapse_1": 227, "sync": [9, 35, 200], "synchron": [249, 255], "synergi": 172, "synonym": 267, "synstatu": 115, "syntax": 254, "synthes": 172, "synthesi": 95, "sys_nic": [3, 6, 30, 34, 40, 42, 45, 46, 47, 55, 75, 97, 114, 115, 158, 171, 261], "sysctl": 273, "system": [2, 3, 5, 20, 23, 24, 29, 37, 48, 61, 63, 65, 67, 70, 72, 73, 77, 80, 88, 89, 90, 100, 110, 130, 131, 132, 135, 136, 137, 138, 163, 166, 172, 183, 191, 196, 198, 199, 202, 225, 226, 228, 229, 232, 236, 239, 240, 241, 243, 245, 246, 248, 250, 253, 254, 255, 258, 259, 260, 261, 263, 264, 266, 270, 273, 274, 276, 280, 281, 283], "system_fingerprint": 253, "system_namespac": [226, 270], "systemctl": [48, 110, 200, 225, 260, 273], "systemd": [48, 225, 260, 273, 274], "systemdcgroup": 273, "szgth": 89, "t": [2, 3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 88, 89, 100, 103, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 168, 170, 171, 173, 174, 178, 179, 184, 186, 187, 197, 198, 200, 201, 202, 203, 225, 228, 238, 254, 255, 260, 261, 263, 264, 266, 270, 272, 273, 274], "tab": [198, 255], "tabl": [2, 11, 13, 16, 17, 78, 109, 115, 160, 242, 260, 261, 263, 264, 265, 267, 277, 280, 282, 283], "table_strategi": [11, 13, 16, 17], "tag": [48, 91, 110, 123, 124, 140, 141, 200, 201, 210, 214, 215, 216, 218, 225, 231, 232, 254, 255, 260, 261, 263, 264, 270, 272, 274, 281, 282, 283], "tail": 95, "tailor": [2, 163, 191, 246, 259, 277], "tailwind": 267, "taint": 273, "take": [2, 3, 23, 26, 27, 29, 42, 57, 89, 95, 98, 99, 100, 109, 110, 112, 113, 114, 115, 116, 121, 122, 123, 124, 125, 130, 184, 190, 198, 199, 203, 237, 238, 241, 249, 255, 259, 260, 261, 263, 264, 267, 273, 274], "takeawai": 163, "taken": [98, 267], "talk": [6, 75, 108, 259], "talkingbot": 191, "tank": 30, "tar": [12, 92, 95, 225, 259, 273], "target": [38, 64, 88, 90, 92, 94, 177, 191, 199, 225, 246, 254, 255, 258, 259, 267, 280, 283], "task": [2, 11, 30, 40, 42, 54, 55, 56, 88, 90, 97, 98, 100, 121, 122, 123, 131, 169, 185, 191, 198, 199, 222, 245, 246, 250, 259, 260, 261, 263, 264, 267, 274, 276, 279], "tatal": 229, "tax": 241, "taylor": [100, 101], "tbd": [243, 259], "tco": 267, "tcp": [58, 110, 115, 166, 260, 261, 263, 264], "tdb": 259, "te_embed_count": 9, "te_embed_success": 9, "te_queue_s": 9, "te_request_count": 9, "te_request_inference_dur": 9, "te_request_inference_duration_bucket": 9, "te_request_success": 9, "team": [35, 42, 249, 250, 281], "tear": 273, "tech": [11, 14, 17, 18, 246, 261, 267, 283], "technic": [139, 243, 255, 267], "techniqu": [20, 23, 24, 98, 147, 191, 266], "technologi": [109, 225, 241, 266], "tee": [200, 242, 273], "tei": [2, 9, 17, 43, 44, 89, 91, 92, 109, 111, 112, 113, 114, 116, 118, 137, 138, 139, 140, 141, 142, 143, 149, 150, 151, 164, 173, 174, 190, 191, 199, 200, 201, 202, 206, 207, 211, 212, 215, 219, 221, 223, 227, 229, 230, 238, 252, 267, 277, 279, 281, 282, 283], "tei_embedding_devic": 261, "tei_embedding_endpoint": [26, 27, 69, 70, 71, 72, 74, 80, 86, 97, 111, 113, 137, 138, 164, 173, 174, 206, 207, 212, 219, 229, 260, 261, 263, 264], "tei_embedding_model_nam": [26, 27], "tei_embedding_servic": [113, 118, 227], "tei_endpoint": [14, 17, 18, 70, 230], "tei_gaudi": 136, "tei_grafana": 92, "tei_reranking_endpoint": [63, 111, 113, 137, 138, 164, 173, 174, 211, 260, 261, 263, 264], "tei_reranking_servic": 113, "tei_serv": [17, 26, 27], "tei_xeon_servic": [118, 227], "teiembed": 229, "teirerank": [89, 201, 211, 230, 252, 281], "teleconfer": 241, "telementri": 225, "telemetr": 256, "telemetri": [77, 225, 238, 246, 277, 279, 282, 284], "telemetry_endpoint": 9, "tell": [49, 255], "temp": [250, 283], "temperatur": [3, 41, 45, 48, 49, 50, 51, 52, 53, 90, 91, 96, 97, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 218, 250, 253, 260, 261, 263, 264], "tempfil": 78, "templat": [50, 51, 58, 118, 198, 200, 202, 227, 230, 255, 273, 280, 283, 284], "tempo": 250, "temporari": [165, 198], "temporarili": 90, "tenant": 90, "tenet": 266, "tensor": [51, 52, 261], "tensorflow": 98, "tensorrt": 267, "term": [1, 87, 159, 172, 193, 237, 238, 239, 241, 254, 260, 261, 263, 264, 266, 267], "termin": [95, 109, 110, 112, 115, 117, 121, 125, 130, 133, 139, 142, 172, 180, 188, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 221, 253, 255, 260, 261, 263, 264, 273, 274, 283], "terminologi": 89, "tesseract": [11, 16, 17, 18, 19], "test": [5, 8, 17, 23, 26, 27, 29, 35, 60, 86, 88, 94, 95, 96, 103, 107, 112, 114, 115, 116, 118, 121, 122, 126, 134, 143, 148, 161, 162, 164, 168, 175, 181, 184, 189, 194, 198, 199, 223, 225, 227, 230, 231, 238, 241, 242, 244, 250, 255, 260, 261, 263, 264, 265, 266, 267, 270, 280, 281, 282, 283, 284, 285], "test_": 238, "test_asr_whisp": 238, "test_cas": 90, "test_compose_on_": 238, "test_compose_on_gaudi": 238, "test_data": 30, "test_embeddings_tei_langchain": 238, "test_embeddings_tei_langchain_on_amd_gpu": 238, "test_embeddings_tei_llama_index": 238, "test_gmc_on_": 238, "test_gmc_on_gaudi": 238, "test_llm_endpoint": 95, "test_manifest_on_": 238, "test_manifest_on_gaudi": 238, "test_output_dir": [88, 90, 110], "test_report": 93, "test_suite_config": [90, 110], "testcas": 282, "testpwd": [14, 70, 81], "testspec": 93, "testus": [14, 70, 81], "text": [1, 2, 3, 5, 6, 10, 11, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 86, 87, 88, 89, 91, 93, 98, 101, 102, 103, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 130, 131, 132, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 147, 149, 150, 151, 154, 155, 159, 160, 161, 162, 164, 167, 173, 174, 175, 176, 177, 178, 179, 183, 184, 186, 187, 188, 189, 190, 191, 193, 197, 198, 202, 207, 208, 211, 212, 213, 214, 215, 216, 217, 219, 221, 227, 230, 232, 238, 247, 249, 253, 254, 256, 259, 260, 261, 263, 264, 268, 270, 279, 281, 282, 283, 284], "text_complet": 261, "text_generation_launch": 115, "text_generation_rout": [109, 112, 113, 114, 115, 116, 261, 263, 264], "text_list": 35, "text_splitt": 80, "textbook": 185, "textdoc": 2, "textgen": 49, "textgener": 5, "textload": 78, "textual": [20, 23, 24, 147, 160, 191], "tgi": [2, 3, 9, 11, 13, 16, 17, 42, 46, 47, 89, 91, 92, 95, 97, 99, 100, 104, 105, 107, 109, 113, 116, 118, 121, 123, 124, 125, 127, 131, 132, 140, 143, 144, 149, 153, 160, 162, 173, 174, 178, 179, 190, 191, 199, 200, 201, 203, 204, 208, 209, 211, 212, 221, 223, 227, 230, 238, 247, 252, 259, 267, 277, 279, 280, 281, 282, 283, 284], "tgi_grafana": [92, 223, 259], "tgi_llm_endpoint": [11, 13, 16, 17, 41, 43, 44, 45, 50, 104, 105, 113, 123, 124, 137, 138, 140, 141, 149, 150, 164, 173, 174, 208, 209, 261, 263, 264], "tgi_llm_endpoint_chatqna": 164, "tgi_llm_endpoint_codegen": 164, "tgi_llm_endpoint_docsum": 164, "tgi_llm_endpoint_faqgen": 164, "tgi_request_inference_duration_": 199, "tgi_servic": [41, 43, 45, 50, 112, 114], "tgz": 273, "than": [34, 64, 95, 98, 199, 241, 250, 253, 254, 255, 267, 268], "thank": [2, 97, 168, 238, 282], "theft": 196, "thei": [6, 89, 98, 121, 123, 124, 163, 168, 172, 194, 198, 199, 200, 201, 237, 238, 239, 241, 242, 243, 248, 249, 250, 253, 254, 259, 260, 261, 263, 264, 267, 274], "them": [2, 10, 12, 61, 63, 69, 74, 86, 89, 95, 98, 99, 107, 110, 111, 112, 113, 118, 121, 123, 124, 140, 141, 143, 149, 150, 161, 162, 164, 178, 179, 184, 186, 187, 198, 199, 200, 227, 232, 238, 245, 246, 249, 250, 254, 255, 259, 260, 261, 263, 264, 267, 276, 279], "themselv": 267, "theoret": 91, "therebi": [245, 266, 276], "therefor": [89, 95, 98], "therein": 267, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 76, 79, 80, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100, 101, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 123, 124, 126, 130, 131, 132, 134, 136, 137, 138, 139, 140, 141, 143, 147, 149, 150, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 198, 200, 202, 214, 215, 216, 218, 223, 225, 226, 227, 228, 229, 230, 234, 237, 238, 239, 241, 243, 244, 245, 246, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 272, 273, 274, 276, 277], "thing": 255, "think": 202, "third": [1, 100, 159, 238, 241, 254, 274], "those": [98, 102, 160, 190, 191, 194, 197, 199, 237, 238, 241, 243, 254, 255, 266, 267, 273, 274], "thought": 3, "thread": 89, "threaten": 237, "three": [30, 42, 53, 110, 168, 198, 254, 266, 267, 274], "threshold": 99, "thrill": [2, 168], "through": [37, 92, 97, 109, 115, 121, 174, 185, 191, 195, 196, 197, 198, 199, 200, 237, 239, 241, 243, 245, 249, 250, 254, 255, 259, 260, 261, 263, 264, 267, 279, 281, 283, 284], "throughout": [45, 254, 267], "throughput": [51, 52, 53, 88, 94, 110, 168, 246, 250, 259, 267], "throughpuut": 258, "thu": [12, 25, 69, 95, 135], "tian": [242, 253], "tiber": [261, 268], "tick": 195, "ticket": 42, "tier": [253, 267], "tier2": 284, "tiger": [34, 114, 208, 261], "tigera": [202, 225, 273], "tightli": [89, 245], "tiktoken": 267, "tiledbdens": 74, "tiledbspars": 74, "time": [2, 9, 29, 57, 80, 86, 89, 91, 94, 95, 97, 112, 113, 114, 116, 120, 163, 172, 176, 183, 184, 190, 191, 197, 199, 201, 203, 223, 237, 238, 241, 244, 245, 246, 254, 255, 259, 266, 267, 273, 276], "time_of_frame_m": [161, 162], "timelin": [34, 241], "timeout": [77, 280, 281, 282, 283], "timeout_second": [17, 18], "timeseri": [92, 259], "timestamp": [64, 184, 253], "tini": [102, 103], "titeiiko": 232, "titl": [1, 51, 87, 98, 159, 193, 238, 240, 241, 244, 251, 283], "tl": 225, "tmp": 282, "toctre": 254, "todai": [3, 115, 147, 253, 263, 264, 267], "todayopea": [137, 138], "todd": 98, "todo": [121, 122, 123, 124, 125, 203, 238, 244, 246, 248, 254], "togeth": [2, 35, 100, 164, 168, 198, 238, 254, 255, 266, 282], "toggl": 90, "toi": [30, 169], "token": [3, 6, 34, 35, 42, 51, 52, 53, 54, 63, 88, 94, 95, 97, 98, 104, 105, 106, 110, 111, 113, 114, 117, 123, 124, 125, 127, 133, 139, 140, 141, 142, 144, 149, 150, 151, 153, 164, 166, 173, 174, 180, 184, 197, 200, 201, 203, 204, 208, 209, 216, 218, 221, 226, 228, 232, 234, 250, 253, 259, 260, 261, 263, 264, 267, 273, 281, 282, 283], "token1": 198, "token2": 198, "tokena": 198, "tokenb": 198, "tokenizer_13a": 98, "tokenizers_parallel": [46, 47], "tom": 242, "toml": [225, 273], "too": [89, 107, 118, 199, 254], "tool": [5, 9, 42, 58, 61, 63, 88, 91, 93, 94, 95, 112, 163, 168, 191, 192, 194, 196, 198, 222, 225, 231, 244, 250, 251, 252, 253, 258, 259, 260, 261, 263, 264, 265, 266, 267, 272, 274, 282], "tool_choic": 253, "tool_nam": 3, "toolkit": [43, 44, 50, 139, 140, 141, 142, 143, 149, 150, 151, 164, 221, 225, 234, 259, 268], "toolset": 93, "toolset_path": 100, "tooltalk": 267, "top": [30, 35, 88, 90, 92, 115, 120, 160, 165, 172, 176, 183, 198, 199, 238, 249, 250, 253, 254, 255, 256, 260, 261, 263, 264, 267, 283], "top_k": [41, 45, 48, 49, 50, 51, 91, 96, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "top_logprob": 253, "top_n": [63, 64, 96, 161, 162, 184, 260, 261, 263, 264], "top_p": [45, 48, 49, 50, 51, 52, 53, 91, 96, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 164, 173, 174, 209, 253, 260, 261, 263, 264], "top_video_nam": [64, 184], "topic": 98, "topologi": [93, 199], "topologykei": 273, "topologyspreadconstraint": 283, "torch": [30, 115, 283], "torch_ccl": 30, "torchaudio": 30, "torchvis": [30, 282], "torso": 95, "total": [3, 9, 34, 42, 51, 74, 90, 94, 97, 114, 127, 144, 153, 223, 230, 253, 260, 261, 263, 264], "total_token": [253, 261], "toward": [11, 13, 16, 17, 237, 267], "towardsdatasci": [11, 17, 18], "toxic": [25, 31, 33, 36, 37, 49, 56, 232, 248, 277, 281, 282], "toxicchat": 38, "toxicity_detect": [38, 39], "toy_finetune_data": [30, 169], "toydata": [23, 161, 162], "tp": 250, "tpot": [51, 52], "tr": [198, 202], "trace": [246, 250, 267, 282], "traceabl": 267, "track": [3, 80, 92, 163, 243, 248, 267], "traction": 97, "trade": [241, 254], "trademark": [241, 254, 283], "tradeoff": 74, "tradit": [201, 248, 254], "traffic": [190, 196, 226, 273], "trail": 254, "train": [35, 121, 160, 172, 191, 250, 259, 267, 283], "training_fil": [30, 156, 169], "transcript": [6, 104, 105, 160, 162, 191, 205, 253], "transcript_for_infer": [161, 162], "transfer": 241, "transform": [2, 32, 38, 160, 162, 232, 245, 246, 259, 267, 276], "transit": [241, 250, 267], "translat": [98, 121, 131, 132, 134, 168, 190, 195, 200, 237, 242, 250, 253, 267, 279, 280, 281, 282, 283], "translation_gaudi": 181, "translation_length": 98, "translation_xeon": 181, "transmiss": 248, "transmit": 273, "transpar": [241, 256, 267], "transpil": 130, "transport": [267, 273], "treat": 254, "tree": [11, 13, 16, 17, 198, 199, 254, 255, 270, 283], "trellix": 238, "trend": [88, 90], "trigger": [123, 124, 195, 256, 281, 282], "trivi": [195, 282], "triviaqa": 267, "troll": 237, "troubleshoot": [252, 282, 283], "troubleshooting_guid": 226, "trqm6": 89, "true": [2, 11, 13, 16, 17, 23, 29, 35, 36, 41, 43, 44, 45, 48, 49, 50, 51, 53, 80, 88, 89, 90, 94, 96, 97, 104, 105, 107, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 161, 162, 164, 172, 173, 174, 178, 179, 184, 195, 197, 198, 199, 202, 205, 206, 207, 208, 209, 211, 212, 216, 217, 219, 227, 229, 230, 232, 245, 253, 260, 261, 263, 264, 270, 273, 282], "truncat": 281, "trunk": 254, "trust": [3, 32, 70, 81, 196, 232, 246, 266, 267, 277], "trust_remote_cod": [45, 122], "trustworthi": [31, 34, 114, 236, 266, 276], "truth": [250, 267], "truthfulqa": [88, 267], "try": [0, 3, 11, 17, 18, 32, 35, 38, 112, 113, 114, 115, 116, 118, 168, 186, 187, 197, 198, 225, 227, 254, 260, 261, 263, 264, 268], "trychroma": 77, "tsai": 249, "tsc": 243, "tt": [2, 103, 107, 190, 191, 213, 238, 242, 249, 252, 279, 280, 281, 282, 284], "ttft": [51, 52], "ttl": 273, "tts_endpoint": [75, 104, 105, 217], "tts_service_host_ip": [104, 105], "tts_service_port": [104, 105], "tune": [11, 17, 18, 32, 38, 51, 52, 89, 90, 110, 191, 199, 250, 258, 265, 266, 267, 277, 282, 283, 284], "tuning_config": 91, "turbo": 253, "turn": [51, 52, 198, 248, 260, 261, 263, 264, 267], "turnkei": [266, 275], "tutori": [232, 254, 260, 261, 263, 264, 272, 283], "tvtqq": 89, "tweak": 255, "twice": [161, 162], "twitter": [137, 138, 236, 238], "two": [9, 17, 23, 26, 27, 33, 34, 43, 44, 45, 46, 47, 50, 55, 56, 63, 67, 70, 72, 73, 74, 89, 91, 100, 107, 109, 114, 118, 121, 130, 139, 172, 178, 179, 198, 201, 203, 204, 221, 226, 227, 238, 241, 245, 254, 256, 267, 268, 272, 274, 282], "two_gaudi": 110, "txt": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 78, 88, 90, 93, 97, 103, 110, 112, 114, 122, 154, 164, 167, 227, 238, 254, 255, 260, 261, 263, 264, 274, 282, 283], "tyour": [111, 113, 164], "type": [5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 89, 91, 94, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 151, 156, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 180, 181, 184, 186, 187, 188, 189, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 234, 238, 239, 248, 253, 254, 259, 260, 261, 263, 264, 267, 268, 270, 282], "typed_config": 232, "typescript": 130, "typha": 273, "typic": [36, 48, 89, 160, 185, 254, 255, 259], "typical_p": [45, 48, 50, 51, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 164, 173, 174, 209, 260, 261, 263, 264], "typo": [281, 282, 283], "tzchw": 230, "u": [30, 34, 89, 96, 110, 114, 208, 236, 237, 254, 259, 261, 272, 273, 274, 281, 282, 283], "u32_t": 254, "u8": [51, 52], "u8_t": 254, "ubuntu": [115, 194, 200, 234, 255, 260, 261, 263, 264, 273, 274], "udat": 283, "udp": 58, "udpat": 281, "ue": [115, 260, 261, 263, 264], "uefi": 256, "ui": [9, 89, 92, 94, 109, 115, 121, 127, 130, 139, 144, 153, 165, 166, 172, 190, 197, 238, 250, 259, 265, 267, 268, 280, 281, 282, 283], "uklgrigaaabxqvzfzm10ibiaaaabaaearkwaaihyaqacabaaaabkyxrhagaaaaea": [6, 104, 105, 106, 107, 205, 220], "ulimit": [88, 90, 110, 283], "ultim": [245, 254, 259], "unabl": [112, 114], "unaccept": 237, "unauthor": [196, 198], "unavail": 230, "uncertainti": 267, "unclear": 39, "uncom": 80, "uncontrol": 283, "uncov": 88, "undeploi": [226, 228], "under": [1, 9, 12, 20, 23, 24, 77, 80, 87, 89, 92, 102, 159, 193, 194, 195, 198, 225, 238, 241, 244, 245, 246, 247, 248, 249, 250, 254, 259, 266, 267, 281, 282, 283], "undergo": 121, "undergon": 267, "underli": [2, 89, 107, 118, 143, 199, 208, 227, 245, 246, 254, 276], "underlin": 254, "underscor": [199, 254], "understand": [3, 11, 13, 16, 17, 115, 119, 121, 147, 164, 167, 190, 191, 239, 249, 253, 259, 263, 264], "understood": 267, "understudi": 98, "undertak": 241, "unexpect": [238, 255], "unhid": 89, "unicod": 254, "unifi": [35, 160, 248, 282, 283], "uniform": [66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 212, 219, 254, 260, 261, 263, 264], "uninstal": [89, 226, 272, 274], "unintention": 254, "uninterpret": 254, "uniqu": [2, 7, 148, 161, 162, 168, 172, 229, 249, 253, 254, 260, 261, 263, 264], "unit": [91, 99, 238, 282, 283, 285], "unix": [223, 253], "unknown": [98, 199, 267, 281, 282], "unless": [199, 238, 241, 254, 274], "unlik": [2, 89, 94, 245, 246, 276], "unlock": 267, "unnecessari": [281, 282, 283], "unobstruct": 266, "unord": 254, "unpredict": 34, "unprincipl": 32, "unprofession": 237, "unreason": [31, 38], "unsaf": [34, 282], "unsolicit": 237, "unstructur": [10, 267], "unsuccess": [3, 11, 17, 18, 32, 35, 38], "untermin": 254, "until": [55, 57, 64, 80, 89, 109, 123, 124, 184, 197, 241, 253, 273], "unus": [281, 283], "unwelcom": 237, "up": [11, 12, 13, 14, 15, 16, 17, 19, 23, 24, 26, 27, 34, 35, 41, 43, 44, 45, 46, 47, 48, 50, 55, 57, 58, 63, 64, 67, 69, 70, 72, 73, 74, 77, 79, 90, 91, 95, 96, 100, 104, 105, 107, 109, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 127, 130, 131, 132, 134, 137, 138, 139, 140, 141, 143, 144, 148, 149, 150, 153, 160, 161, 162, 163, 164, 166, 172, 173, 174, 175, 178, 179, 181, 184, 185, 186, 187, 189, 191, 192, 197, 199, 200, 223, 226, 227, 245, 253, 254, 260, 261, 263, 264, 266, 267, 268, 282, 285], "updat": [7, 8, 10, 17, 18, 19, 28, 29, 80, 111, 112, 113, 114, 116, 118, 121, 122, 123, 124, 125, 161, 162, 164, 185, 192, 194, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 217, 219, 221, 223, 227, 228, 230, 234, 238, 250, 254, 255, 260, 261, 263, 264, 267, 272, 273, 274, 280, 281, 282, 283], "update_depend": [201, 203, 204, 221], "update_genaiexampl": 200, "update_manifest": 200, "upgrad": [88, 228, 230, 267, 281, 283], "upload": [18, 19, 67, 92, 108, 111, 112, 113, 114, 116, 117, 119, 120, 145, 146, 154, 161, 162, 164, 167, 184, 190, 199, 202, 227, 249, 259, 281, 282, 283], "upload_fil": 110, "upload_file_base_url": 120, "upload_file_no_rerank": 110, "upload_training_fil": 283, "uploaded_file_1": [11, 14, 17], "uploaded_file_2": [11, 14, 17], "upon": [77, 107, 110, 118, 143, 190, 227, 241], "upper": [89, 91], "upstream": [241, 255, 259, 281, 283], "uptim": 253, "urandom": 198, "uri": [78, 165, 197, 198, 232], "url": [1, 3, 11, 17, 18, 23, 30, 32, 35, 38, 58, 65, 67, 70, 72, 73, 87, 92, 98, 99, 107, 109, 111, 112, 113, 114, 116, 118, 121, 130, 131, 132, 139, 140, 141, 143, 149, 150, 159, 161, 162, 164, 165, 166, 172, 178, 179, 184, 186, 187, 188, 189, 193, 197, 198, 199, 206, 212, 226, 227, 230, 238, 253, 254, 255, 259, 260, 261, 263, 264, 267, 270, 282, 283], "urlencod": [197, 198, 199], "us": [0, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 30, 32, 34, 36, 38, 40, 41, 42, 44, 45, 46, 47, 48, 51, 52, 53, 55, 56, 57, 58, 64, 67, 69, 70, 72, 73, 74, 80, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 100, 101, 102, 104, 105, 110, 111, 113, 116, 117, 122, 125, 126, 127, 131, 132, 133, 134, 136, 137, 138, 140, 141, 143, 144, 147, 148, 149, 150, 151, 153, 156, 159, 160, 161, 162, 163, 165, 166, 168, 169, 172, 173, 174, 175, 177, 178, 179, 181, 183, 185, 186, 187, 189, 190, 191, 192, 193, 195, 197, 198, 199, 201, 202, 203, 204, 206, 208, 213, 218, 220, 221, 223, 225, 228, 231, 236, 237, 238, 239, 241, 243, 244, 246, 248, 249, 250, 251, 252, 253, 254, 255, 257, 259, 262, 266, 267, 268, 271, 275, 276, 277, 280, 281, 282, 283, 284], "usag": [23, 26, 27, 32, 45, 89, 117, 199, 225, 241, 250, 252, 253, 258, 261, 267, 283], "usage_guid": 226, "use_auth_token": 122, "use_flash_attent": [114, 115], "use_openai_kei": 96, "use_remote_servic": [2, 245], "usecas": [64, 283], "useclip": 184, "useless": [282, 283], "user": [2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 28, 29, 32, 33, 34, 35, 36, 38, 39, 41, 42, 45, 50, 51, 52, 53, 58, 59, 60, 65, 67, 70, 72, 73, 74, 75, 90, 94, 100, 102, 107, 109, 111, 112, 114, 115, 118, 119, 120, 121, 123, 124, 127, 128, 129, 130, 136, 137, 138, 139, 143, 144, 153, 156, 160, 161, 162, 164, 165, 167, 168, 172, 176, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 200, 202, 225, 226, 227, 228, 232, 238, 240, 241, 243, 244, 245, 246, 249, 250, 251, 252, 253, 254, 255, 259, 260, 261, 263, 264, 267, 268, 270, 272, 273, 274, 276, 280, 281, 282, 283, 284], "user_model": 88, "user_queri": [90, 110], "userguid": 272, "userinfo": 197, "usernam": [92, 165, 197, 198, 223, 255, 259, 272, 274], "uservic": [89, 127, 144, 153, 201, 203, 204, 208, 221, 230, 252, 281], "using_microservice_to_implement_chatqna": [244, 251], "usr": [12, 115, 225, 273], "usual": [3, 232, 253, 254], "usvc": [89, 201, 202, 230, 252, 281, 282], "ut": [238, 281, 282, 283, 285], "utf": 254, "util": [11, 13, 16, 17, 18, 19, 20, 23, 24, 25, 30, 33, 34, 36, 37, 39, 42, 45, 49, 51, 52, 53, 56, 57, 58, 65, 67, 70, 72, 73, 74, 91, 97, 104, 105, 107, 111, 112, 113, 114, 116, 118, 121, 123, 124, 126, 131, 132, 134, 139, 140, 141, 143, 147, 149, 150, 157, 158, 160, 161, 162, 163, 164, 166, 170, 171, 173, 174, 175, 178, 179, 181, 184, 185, 186, 187, 189, 191, 196, 223, 225, 227, 250, 253, 255, 259, 260, 261, 263, 264, 267, 274, 281], "uuid": [29, 161, 162], "uvicorn": [57, 64, 77, 282], "ux": 250, "v": [3, 13, 17, 26, 27, 34, 35, 41, 42, 43, 44, 45, 50, 63, 68, 70, 72, 74, 80, 81, 83, 86, 112, 114, 123, 124, 195, 246, 267, 272, 273, 274], "v0": [3, 97, 100, 110, 148, 195, 249, 254, 257, 278, 283], "v1": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 80, 86, 91, 94, 97, 99, 100, 101, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 148, 149, 150, 151, 156, 160, 161, 162, 164, 169, 172, 173, 174, 178, 179, 180, 184, 185, 186, 187, 188, 191, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 229, 230, 232, 238, 245, 253, 260, 261, 263, 264, 268, 272, 273, 274, 278, 281, 282], "v11": 92, "v13a": 98, "v1alpha1": [89, 232], "v1alpha3": [226, 229, 232], "v1beta1": 199, "v2": [2, 92, 103, 259, 274, 284], "v3": [2, 45, 50, 54, 88, 90, 91, 102, 104, 105, 109, 110, 112, 113, 114, 115, 116, 139, 140, 141, 143, 164, 173, 174, 200, 201, 218, 221, 227, 232, 261, 263, 264, 273], "v6bvq": 89, "v8": 259, "v9": [67, 72, 73, 84, 115, 118, 210, 227, 260, 261, 263, 264], "v95sp": 274, "vagrant": 273, "valid": [5, 51, 52, 95, 103, 109, 110, 121, 130, 139, 148, 165, 172, 198, 229, 238, 248, 249, 265, 266, 267, 281, 282, 283, 284], "validate_servic": [111, 112, 113, 114], "validate_topologi": 93, "valu": [3, 9, 29, 30, 63, 64, 89, 91, 97, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 127, 130, 131, 132, 133, 134, 137, 138, 142, 144, 151, 153, 160, 161, 162, 164, 166, 167, 178, 179, 180, 183, 184, 186, 191, 195, 198, 199, 200, 227, 229, 230, 232, 241, 253, 256, 260, 261, 263, 264, 267, 270, 273, 274, 276, 281, 282, 283], "valuabl": [163, 238, 244, 267], "values_apisix_gw": 197, "vanilla": 259, "var": [95, 100, 225, 273, 274], "vari": [98, 241, 253, 260, 261, 263, 264], "variabl": [3, 9, 10, 30, 57, 58, 64, 69, 80, 86, 95, 108, 110, 119, 120, 128, 129, 135, 143, 145, 146, 151, 154, 155, 167, 176, 182, 198, 199, 218, 238, 259, 273, 282, 283], "variant": 88, "variat": [238, 267], "varieti": [48, 53, 74, 88, 260, 261, 263, 264, 267, 268, 271], "variou": [2, 7, 10, 20, 23, 24, 28, 59, 76, 77, 88, 90, 121, 147, 168, 191, 196, 198, 245, 246, 254, 266, 267, 274, 276], "vast": 147, "vaswani": 98, "vault": 223, "vcpu": 89, "vdm": [183, 184, 191, 277, 283], "vdms_host": [18, 19, 184], "vdms_port": [18, 19, 184], "ve": [0, 57, 112, 113, 123, 131, 140, 149, 161, 178, 186, 199, 205, 206, 207, 208, 209, 211, 212, 217, 219, 254, 255, 273, 274], "vecotor": [113, 114, 115, 116], "vector": [10, 12, 19, 20, 23, 24, 25, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 86, 89, 95, 97, 100, 109, 111, 112, 113, 114, 115, 116, 118, 136, 137, 138, 160, 161, 164, 172, 183, 184, 191, 201, 202, 206, 212, 227, 230, 250, 252, 253, 259, 260, 261, 263, 264, 266, 267, 277, 279, 281, 282, 283], "vector_stor": 78, "vectordb": [14, 65, 78, 81, 86, 109, 160, 183, 190, 279, 284], "vectorstor": [12, 70, 78, 80, 81, 238, 242, 245, 280, 283], "vectorstore_pathwai": 80, "vendor": [130, 160, 177, 185, 238, 266, 267, 283], "venkatesh": 242, "venv": [93, 110, 274], "venvdir": 274, "ver": 234, "verbal": 249, "verbatim": 253, "verbos": 198, "veri": [57, 74, 95, 97, 115, 238, 261, 263, 264, 267, 274], "veriabl": 115, "verifi": [42, 86, 107, 111, 112, 113, 118, 148, 194, 198, 227, 238, 255, 267, 268, 273], "versatil": 58, "version": [1, 2, 3, 17, 18, 19, 48, 87, 93, 109, 110, 112, 114, 115, 116, 121, 130, 136, 139, 143, 159, 168, 172, 190, 193, 194, 197, 199, 200, 222, 223, 225, 228, 230, 234, 237, 241, 245, 246, 254, 260, 261, 263, 264, 266, 267, 268, 273, 274, 276, 280, 281, 282, 283], "versu": 267, "vertex": [11, 17, 18], "vertic": [250, 256, 259, 266, 267], "vespa": 267, "vfv45": 89, "via": [2, 3, 29, 48, 51, 52, 56, 74, 109, 111, 112, 113, 114, 116, 121, 123, 124, 127, 130, 131, 132, 137, 138, 139, 140, 141, 144, 145, 146, 149, 150, 153, 154, 155, 161, 162, 163, 164, 165, 167, 172, 173, 178, 179, 184, 186, 187, 201, 203, 204, 221, 230, 237, 238, 241, 245, 252, 253, 254, 259, 260, 261, 263, 264, 267, 274, 282], "victoriametr": 250, "vicuna": [160, 162, 185], "videl": 283, "video": [19, 64, 74, 160, 161, 162, 183, 184, 191, 249, 272, 277, 282, 283, 284], "video1": 12, "video2": 12, "video_fn": [161, 162], "video_id": [161, 162], "video_nam": 184, "video_url": [57, 64, 184], "videonam": [161, 162], "videoname_uuid": [161, 162], "videoqna": [64, 283], "videoragqna": 283, "view": [32, 48, 94, 115, 119, 120, 164, 166, 167, 176, 198, 238, 254, 255, 259, 261, 263, 264, 267], "viewer": [165, 198], "viewpoint": 237, "vim": [3, 48, 92, 259, 283], "violat": [237, 241], "violenc": 34, "virtu": 198, "virtual": [93, 223, 232, 255, 256, 274], "virtualenv": 93, "virtualservic": 232, "visibl": [237, 241, 267], "vision": [57, 160, 183, 267, 284], "visit": [121, 160, 255, 268, 274], "visual": [55, 56, 88, 90, 160, 189, 191, 200, 223, 231, 249, 250, 258, 259, 265, 267], "visualchat": 250, "visualqna": [88, 90, 168, 242, 281, 282, 283], "visualqna_gaudi": 189, "visualqna_xeon": 189, "visuralqna": 187, "vit": [183, 184, 191], "vital": [65, 67, 70, 72, 73, 74, 230], "vite_backend_service_endpoint_chatqna": 167, "vite_backend_service_endpoint_codegen": 167, "vite_backend_service_endpoint_docsum": 167, "vite_backend_service_endpoint_faqgen": 167, "vite_chat_history_create_endpoint": 167, "vite_chat_history_delete_endpoint": 167, "vite_chat_history_get_endpoint": 167, "vite_code_gen_url": 128, "vite_dataprep_delete_file_endpoint": 167, "vite_dataprep_get_file_endpoint": 167, "vite_dataprep_service_endpoint": 167, "vite_doc_sum_url": [145, 154], "vite_keycloak_service_endpoint": 167, "vite_prompt_service_create_endpoint": 167, "vite_prompt_service_get_endpoint": 167, "vllm": [2, 9, 42, 44, 46, 47, 50, 109, 190, 238, 247, 252, 263, 267, 277, 280, 281, 282, 283, 284], "vllm_cpu_kvcache_spac": [45, 261], "vllm_endpoint": [51, 52], "vllm_llm_endpoint": [45, 261, 264], "vllm_openvino_cpu_kv_cache_precis": [51, 52], "vllm_openvino_enable_quantized_weight": [51, 52], "vllm_openvino_kvcache_spac": [51, 52], "vllm_ray_endpoint": 53, "vllm_servic": [45, 264], "vllmopenai": [51, 112, 114], "vm": [115, 261, 263, 264], "vmware": [236, 266], "voic": [108, 249], "vol": 197, "volum": [20, 23, 24, 34, 42, 57, 63, 70, 72, 74, 79, 86, 106, 115, 117, 125, 127, 133, 142, 144, 151, 153, 166, 180, 184, 188, 232, 245, 261, 263, 264, 282], "volumemod": 200, "volumemount": 232, "volumesourc": 232, "vote": 240, "vpc": 272, "vqa": 185, "vtt": 12, "vulner": [238, 243, 244], "vwqqj": 274, "vxlancrosssubnet": 273, "w": [197, 198, 238, 283], "w200": 254, "wa": [0, 35, 95, 98, 107, 115, 118, 199, 227, 237, 253, 254, 261, 263, 264, 267], "wai": [2, 12, 17, 18, 23, 26, 27, 45, 48, 76, 93, 95, 101, 109, 110, 112, 114, 121, 123, 124, 130, 139, 147, 168, 172, 191, 194, 234, 237, 241, 243, 246, 249, 252, 254, 260, 261, 263, 264, 271, 272, 274], "wait": [2, 55, 64, 77, 80, 90, 112, 115, 168, 184, 186, 187, 197, 208, 209, 261, 263, 264, 273], "wait_util_all_pod_readi": 283, "walk": [255, 260, 261, 263, 264], "wander": 255, "wang": [87, 242], "want": [3, 5, 29, 36, 42, 51, 52, 53, 58, 69, 80, 91, 92, 96, 102, 103, 109, 110, 111, 112, 113, 114, 116, 118, 130, 131, 132, 139, 140, 141, 143, 149, 150, 151, 161, 164, 168, 186, 194, 198, 200, 201, 203, 226, 227, 229, 230, 238, 244, 245, 254, 259, 260, 261, 263, 264, 266, 268, 270, 273, 274], "ward": 98, "ware": 282, "warm": [46, 47, 90, 115, 261, 263, 264], "warm_up": 90, "warn": [89, 115, 225, 229, 234, 260, 261, 263, 264, 281, 282, 283], "warp": [51, 52, 53], "wasn": 254, "watch": [30, 225, 272, 283], "wav2lip": 249, "wav2lip_onli": 249, "we": [0, 2, 3, 5, 11, 13, 16, 17, 18, 19, 20, 23, 26, 27, 30, 32, 34, 35, 38, 42, 50, 51, 52, 53, 58, 64, 69, 77, 80, 88, 89, 91, 92, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 122, 123, 124, 126, 130, 131, 132, 134, 139, 140, 141, 143, 147, 148, 149, 150, 151, 157, 158, 160, 161, 162, 164, 168, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 191, 194, 196, 198, 200, 202, 223, 225, 227, 228, 232, 234, 237, 238, 245, 247, 249, 252, 253, 254, 255, 256, 258, 260, 261, 263, 264, 265, 266, 267, 268, 272, 273, 274, 277, 281], "weak": 267, "weapon": 34, "wearegoingonbullrun": [161, 162], "wearegoingonbullrun_6d13cf26": [161, 162], "wearegoingonbullrun_7ac553a1": [161, 162], "wearegoingonbullrun_8c7461df": [161, 162], "weather": 3, "weaviat": [267, 284], "web": [58, 94, 95, 112, 121, 165, 173, 174, 176, 190, 225, 241, 252, 254, 255, 267, 277], "web_listen_address": 225, "web_retriev": [86, 173, 174, 219, 238, 242], "web_retriever_service_host_ip": [173, 174], "web_retriever_service_port": [173, 174], "webhook": [229, 282], "weblink": 249, "webpag": 45, "websearch": [5, 100, 191, 280], "websit": [3, 93, 95, 195, 236, 243, 254, 255, 274], "week": 250, "weekli": 283, "wei": 98, "weight": [48, 51, 52, 99, 260, 261, 263, 264, 267], "weight_shar": 115, "welcom": [2, 168, 237, 238, 243, 267, 275], "well": [35, 48, 69, 89, 95, 109, 121, 127, 130, 139, 144, 153, 166, 172, 196, 198, 201, 223, 225, 237, 243, 247, 254, 255, 259, 266, 267], "wer": [103, 283], "were": [3, 95, 237, 254, 255, 267], "weren": 255, "west": [272, 273], "wf": 282, "wget": [12, 92, 109, 112, 161, 162, 198, 202, 225, 259, 273], "what": [2, 3, 6, 17, 26, 27, 35, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 56, 57, 58, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 89, 95, 104, 105, 109, 111, 112, 113, 114, 115, 116, 117, 118, 139, 140, 141, 148, 149, 150, 161, 162, 164, 168, 172, 173, 174, 175, 178, 179, 184, 186, 187, 188, 189, 197, 198, 201, 202, 209, 211, 212, 214, 215, 216, 218, 219, 227, 230, 237, 238, 239, 243, 244, 253, 254, 255, 260, 261, 263, 264, 267, 270, 275], "wheel": [250, 255], "when": [6, 12, 35, 37, 61, 63, 75, 89, 94, 98, 100, 107, 112, 118, 119, 121, 130, 143, 160, 164, 167, 178, 179, 183, 184, 194, 197, 199, 200, 227, 237, 238, 239, 241, 242, 244, 248, 253, 254, 255, 267, 274, 281, 282, 283], "whenev": 80, "where": [2, 5, 45, 65, 67, 70, 72, 73, 74, 89, 95, 98, 115, 117, 119, 120, 123, 124, 125, 133, 142, 161, 162, 164, 167, 168, 176, 180, 188, 198, 201, 203, 240, 241, 245, 246, 247, 249, 253, 254, 255, 256, 260, 261, 263, 264, 267], "wherea": 249, "wherev": 267, "whether": [2, 53, 89, 98, 112, 113, 114, 116, 139, 168, 195, 199, 202, 238, 241, 244, 249, 253, 255, 267], "which": [2, 5, 17, 23, 26, 27, 35, 36, 42, 45, 54, 58, 88, 89, 90, 95, 97, 98, 103, 107, 109, 110, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 134, 136, 137, 138, 140, 141, 143, 145, 146, 148, 149, 150, 154, 155, 156, 160, 164, 167, 168, 174, 175, 181, 184, 189, 190, 194, 195, 196, 197, 198, 200, 214, 215, 216, 225, 227, 230, 237, 238, 241, 245, 246, 248, 250, 253, 254, 256, 259, 260, 261, 263, 264, 266, 267, 268, 273, 274, 276, 281, 283], "while": [6, 11, 97, 115, 130, 166, 172, 191, 197, 198, 241, 248, 249, 253, 254, 255, 259, 260, 261, 263, 264, 266, 267, 268, 270, 274, 276, 282], "whisper": [2, 12, 102, 103, 104, 105, 107, 162, 190, 191, 205, 238, 252, 281, 282], "whisper_model": [12, 161, 162], "whisper_serv": 6, "whitelist": 225, "whitepap": 267, "whitespac": 98, "whl": 30, "who": [3, 6, 75, 99, 104, 105, 109, 112, 114, 195, 198, 213, 217, 241, 281], "whole": [89, 96, 98, 246, 254, 255, 282], "whose": 225, "why": [48, 199, 237, 238, 244, 272], "wide": [89, 109, 136, 137, 138, 168, 172, 196, 254, 259, 265, 266, 267], "widespread": 267, "width": [254, 256], "wife": 99, "wiki": [237, 254, 276], "wikinewscommun": [137, 138], "wikipedia": [254, 267], "willing": 243, "win": [267, 281], "window": [48, 111, 112, 113, 123, 124, 131, 140, 149, 161, 178, 186, 195, 254, 255, 284], "winogrand": 88, "wish": [29, 99, 160, 260, 261, 263, 264, 267], "with_metadata": 80, "with_rerank": 110, "within": [2, 34, 65, 67, 70, 72, 73, 74, 89, 104, 105, 111, 112, 113, 114, 116, 123, 124, 140, 141, 147, 149, 150, 160, 161, 162, 163, 165, 172, 173, 174, 178, 179, 184, 186, 187, 198, 201, 229, 236, 237, 241, 242, 243, 245, 246, 250, 254, 255, 256, 259, 260, 261, 263, 264, 267, 276, 283], "without": [32, 38, 46, 47, 89, 90, 94, 110, 112, 114, 119, 120, 164, 167, 176, 190, 197, 198, 200, 230, 232, 237, 238, 241, 248, 254, 255, 259, 262, 267, 274, 281, 282, 283], "without_rerank": [112, 114], "wizard": 250, "wmt": 98, "wo": 283, "won": [57, 197, 273], "word": [32, 98, 103, 156, 182, 191, 254], "word_token": 98, "work": [2, 3, 17, 51, 52, 69, 89, 94, 95, 97, 100, 109, 113, 115, 117, 121, 125, 130, 133, 139, 142, 161, 168, 172, 180, 186, 188, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 219, 221, 238, 240, 241, 244, 246, 248, 249, 253, 254, 267, 270, 272, 273, 276], "work1": 110, "work2": 110, "work3": 110, "workaround": 89, "workdai": 267, "workdir": [95, 100], "worker": [5, 30, 53, 77, 89, 100, 191, 273, 274], "worker1": [110, 273], "worker2": 110, "worker3": 110, "workflow": [2, 20, 23, 24, 42, 121, 130, 137, 138, 163, 172, 183, 191, 195, 236, 238, 240, 241, 244, 245, 246, 248, 250, 253, 267, 275, 276, 280, 281, 282, 283, 285], "workload": [93, 110, 112, 113, 117, 125, 133, 140, 142, 149, 161, 178, 180, 186, 188, 194, 195, 196, 198, 200, 230, 234, 250, 252, 266, 273, 283], "workloadselector": 232, "worklod": 281, "workpath": 3, "workplac": 267, "world": [2, 21, 22, 25, 26, 27, 78, 97, 110, 130, 131, 132, 133, 134, 147, 204, 246, 248, 250, 259, 276, 277], "worth": [123, 124], "worthnot": 249, "would": [29, 45, 89, 98, 115, 164, 167, 199, 200, 201, 230, 238, 254, 255, 256, 260, 261, 263, 264, 267, 281], "wouldn": 254, "wrap": [3, 99], "wrapper": 283, "write": [95, 161, 162, 195, 254, 256, 274, 283], "written": [119, 120, 123, 124, 130, 164, 167, 176, 190, 191, 237, 254, 255], "wrong": 282, "wrongli": 253, "wsl": 255, "wukong": 86, "wvktt": 274, "www": [11, 14, 17, 18, 98, 161, 162, 186, 187, 188, 189, 197, 198, 236, 237, 241, 272], "x": [3, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 86, 90, 95, 100, 101, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 121, 123, 124, 126, 130, 131, 132, 134, 137, 138, 139, 140, 141, 143, 148, 149, 150, 156, 160, 161, 162, 164, 169, 172, 173, 174, 175, 178, 179, 181, 184, 185, 189, 197, 198, 202, 206, 207, 208, 209, 211, 212, 214, 215, 216, 219, 227, 229, 230, 236, 238, 254, 260, 261, 263, 264, 270], "x86": [51, 52], "xbwtc": 274, "xeon": [2, 6, 22, 23, 32, 38, 40, 44, 55, 57, 75, 89, 100, 124, 126, 127, 134, 136, 138, 141, 143, 144, 150, 153, 162, 163, 166, 168, 171, 175, 181, 189, 191, 195, 200, 201, 202, 203, 223, 227, 238, 247, 249, 254, 259, 261, 262, 263, 265, 266, 268, 279, 280, 281, 282, 283, 284, 285], "xf": 95, "xft": [280, 283], "xinyao": 242, "xinyu": 242, "xl": 284, "xlwsb": 273, "xml": 232, "xoen": 137, "xpost": [6, 40, 55, 75, 186, 187, 205, 213, 217, 220], "xpu": 138, "xrhw5": 273, "xue": 242, "xuhui": 242, "xvf": 12, "xvz": 273, "xvzf": [92, 259], "xx": [110, 121, 225], "xxx": [58, 86, 109, 112, 114, 244, 251], "xxx_model_id": [109, 112, 113, 114, 116], "xxxx": [13, 106, 151], "xz": 12, "y": [11, 13, 16, 17, 18, 19, 110, 254, 273, 274], "yaml": [3, 11, 12, 13, 14, 15, 16, 17, 19, 23, 24, 26, 27, 34, 41, 43, 44, 45, 46, 47, 50, 57, 58, 63, 64, 67, 69, 70, 72, 73, 74, 79, 88, 90, 93, 96, 100, 102, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 130, 133, 134, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 160, 161, 162, 164, 166, 172, 175, 180, 181, 183, 184, 185, 186, 187, 188, 189, 197, 198, 199, 200, 201, 203, 204, 216, 218, 221, 223, 225, 226, 227, 228, 230, 232, 238, 247, 250, 260, 261, 263, 264, 268, 270, 273, 280, 281, 282, 283, 284], "yaml_file_path": 245, "yang": 234, "ycguo": 242, "ye": [5, 242, 254, 273], "year": [1, 35, 87, 95, 98, 159, 193, 241], "yellow": [161, 162, 267], "yellowbrick": [236, 266], "yeoh": 242, "yet": [2, 61, 63, 89, 109, 123, 199, 245, 246, 249, 259, 261, 267, 276], "yew": 98, "ying": 242, "yingchun": 242, "yinghu5": 283, "yixuantt": 97, "yml": [77, 92, 259, 274, 282], "yogesh": 242, "you": [0, 1, 2, 3, 5, 6, 9, 11, 12, 13, 14, 16, 17, 18, 23, 25, 26, 27, 29, 33, 34, 36, 37, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 61, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 153, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 168, 170, 171, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 238, 239, 243, 244, 253, 254, 255, 256, 259, 260, 261, 263, 264, 268, 270, 272, 273, 274, 276, 279], "your": [1, 2, 9, 17, 23, 26, 27, 32, 34, 35, 38, 39, 45, 48, 50, 58, 67, 70, 72, 73, 74, 77, 79, 80, 87, 88, 92, 93, 94, 95, 96, 97, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 153, 159, 160, 161, 162, 163, 164, 165, 166, 168, 172, 173, 174, 175, 178, 179, 180, 181, 184, 185, 186, 187, 189, 191, 192, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 208, 209, 216, 218, 221, 223, 225, 226, 227, 228, 234, 239, 243, 244, 253, 254, 255, 259, 260, 261, 262, 263, 264, 265, 268, 270, 272, 273, 275, 276], "your_async_func": 9, "your_backend_service_ip": 58, "your_chatqna_ip": 97, "your_chatqna_port": 97, "your_chosen_microservic": 45, "your_client_nam": 198, "your_client_secret": 198, "your_collection_nam": [11, 16, 18, 66], "your_cse_id": 172, "your_dataprep_ip": 97, "your_dataprep_port": 97, "your_document_nam": 11, "your_embed": [66, 67, 68, 70, 71, 72, 73, 74, 86, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 212, 219, 260, 261, 263, 264], "your_embedding_dimens": 71, "your_embedding_endpoint": 11, "your_embedding_ip": 97, "your_embedding_port": 97, "your_embedding_port_microservic": 23, "your_emdding_endpoint": 66, "your_fil": [13, 16, 17, 113], "your_frontend_service_ip": 58, "your_google_api_kei": [172, 228, 234], "your_google_cse_id": [228, 234], "your_hf_api_token": [12, 17, 19, 34, 41, 43, 44, 45, 50, 53, 63, 111, 113, 123, 124, 137, 138, 140, 141, 143, 149, 150, 164, 184], "your_hf_chatprocessor": 45, "your_hf_llm_model": [30, 34, 41, 43, 44, 45, 50, 53], "your_hf_token": [19, 72, 97, 112, 114, 226, 228, 234], "your_host_ip": 11, "your_http_proxi": [8, 11, 13, 15, 16, 18, 19, 29, 41, 60, 66, 68, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 149, 150, 160, 161, 162, 172, 178, 179, 184, 185, 186, 187, 260, 261, 263, 264, 268], "your_https_proxi": [109, 110, 112, 114, 116, 121, 130, 131, 132, 139, 160, 172, 178, 179, 185, 268], "your_huggingface_api_token": [42, 109, 110, 111, 112, 113, 114, 116, 121, 130, 131, 132, 139, 164, 172, 178, 179, 184, 260, 261, 263, 264, 268], "your_huggingface_token": [30, 148, 157, 158, 170, 171], "your_index_nam": [14, 17, 67, 70, 71, 72, 73, 74], "your_ip": [11, 12, 13, 14, 16, 17, 30, 34, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 86, 88, 122, 148, 149, 150, 156, 169, 282], "your_llm_port": 97, "your_milvus_host_ip": [11, 66], "your_mmei_port": 23, "your_neo4j_host_ip": 68, "your_neo4j_password": [13, 68], "your_neo4j_url": [13, 68], "your_neo4j_usernam": [13, 68], "your_nginx_ip": 58, "your_nginx_port": [58, 112, 114, 116, 130, 131, 132, 178, 179], "your_no_proxi": [11, 13, 16, 66, 68, 109, 110, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 143, 149, 150, 160, 161, 162, 164, 172, 178, 179, 184, 185, 186, 187, 260, 261, 263, 264, 268], "your_path": 79, "your_port": [11, 17, 26, 27], "your_predictionguard_api_kei": [25, 33, 36, 37, 39, 56], "your_proxi": 48, "your_qdrant_host_ip": 71, "your_realm_nam": 198, "your_redis_index_nam": 12, "your_retrieval_ip": 97, "your_retrieval_port": 97, "your_sync_func": 9, "your_tei_embedding_ip": 97, "your_tei_embedding_port": 97, "your_tei_endpoint": 18, "yourownid": 219, "yourownkei": 219, "yourowntoken": [106, 117, 125, 127, 133, 142, 144, 151, 153, 166, 180], "yourport": [26, 27], "yourself": [109, 112, 114, 116, 223, 268], "yourtoken": 226, "youtub": 272, "yq": 230, "yuhan": 234, "yuningqiu": 249, "yy": [244, 251], "z": [57, 64, 83, 284], "z5qpv": 273, "zblxr": 273, "zephyr": 42, "zero": [199, 267], "zh": [22, 97, 282], "zhang": 242, "zhao": 248, "zhu": 98, "zhxie": 248, "zilliz": [236, 266], "ztwfg": 274, "zxhdl": 225, "zxvf": [92, 259], "\u00b5": [0, 240, 243, 244, 252, 253, 254, 255, 256, 257, 258, 259, 262, 265, 269, 275, 276, 277, 278], "\u6211\u7231\u673a\u5668\u7ffb\u8bd1": [178, 179, 180, 181]}, "titles": ["Page Not Found", "Legal Information", "Generative AI Components (GenAIComps)", "Agent Microservice", "Plan Execute", "RAG Agent", "ASR Microservice", "\ud83d\udcdd Chat History Microservice", "\ud83d\udcdd Chat History Microservice with MongoDB", "Telemetry for OPEA", "Dataprep Microservice", "Dataprep Microservice with Milvus", "Dataprep Microservice for Multimodal Data with Redis", "Dataprep Microservice with Neo4J", "Dataprep Microservice with PGVector", "Dataprep Microservice with Pinecone", "Dataprep Microservice with Qdrant", "Dataprep Microservice with Redis", "Dataprep Microservice with VDMS", "Multimodal Dataprep Microservice with VDMS", "Embeddings Microservice", "build Mosec endpoint docker image", "Embedding Server", "Multimodal Embeddings Microservice", "Multimodal CLIP Embeddings Microservice", "Embedding Generation Prediction Guard Microservice", "Embeddings Microservice with Langchain TEI", "Embeddings Microservice with Llama Index TEI", "\ud83d\udde8 Feedback Management Microservice", "\ud83d\udde8 Feedback Management Microservice with MongoDB", "Fine-tuning Microservice", "Trust and Safety with LLM", "Bias Detection Microservice", "Factuality Check Prediction Guard Microservice", "Guardrails Microservice", "PII Detection Microservice", "PII Detection Prediction Guard Microservice", "Prompt Injection Detection Prediction Guard Microservice", "Toxicity Detection Microservice", "Toxicity Checking Prediction Guard Microservice", "Image-to-Video Microservice", "Intent Detection Microservice by TGI", "Knowledge Graph Microservice", "TGI FAQGen LLM Microservice", "Document Summary TGI Microservice", "LLM Microservice", "LLM Native Microservice", "LLM Native Microservice", "Introduction", "Prediction Guard Introduction", "TGI LLM Microservice", "vLLM Endpoint Service", "vLLM Endpoint Service", "VLLM-Ray Endpoint Service", "LM-Eval Microservice", "LVM Microservice", "LVM Prediction Guard Microservice", "LVM Microservice", "Nginx for Microservice Forwarding", "\ud83e\uddfe Prompt Registry Microservice", "\ud83e\uddfe Prompt Registry Microservice with MongoDB", "Reranking Microservice", "build reranking Mosec endpoint docker image", "Reranking Microservice", "Rerank Microservice", "Retriever Microservice", "Retriever Microservice with Milvus", "Retriever Microservice", "Retriever Microservice with Neo4J", "Retriever Microservice with Pathway", "Retriever Microservice", "Retriever Microservice with Qdrant", "Retriever Microservice", "Retriever Microservice", "Retriever Microservice", "TTS Microservice", "Vectorstores Microservice", "Start Chroma server", "Start LanceDB Server", "Start Milvus server", "Start the Pathway Vector DB Server", "Start PGVector server", "Pinecone setup", "Start Qdrant server", "Start Redis server", "Start VDMS server", "Web Retriever Microservice", "Legal Information", "GenAIEval", "Kubernetes Platform Optimization with Resource Management", "OPEA Benchmark Tool", "Auto-Tuning for ChatQnA: Optimizing Resource Allocation in Kubernetes", "Setup Prometheus and Grafana to visualize microservice metrics", "StressCli", "locust scripts for OPEA ChatQnA", "CRAG Benchmark for Agent QnA systems", "AutoRAG to evaluate the RAG system performance", "Evaluation Methodology", "Metric Card for BLEU", "OPEA adaption of ragas (LLM-as-a-judge evaluation of Retrieval Augmented Generation)", "Agents for Question Answering", "Retrieval tool for agent", "AudioQnA Application", "AudioQnA accuracy Evaluation", "Build Mega Service of AudioQnA on Xeon", "Build Mega Service of AudioQnA on Gaudi", "Deploy AudioQnA in a Kubernetes Cluster", "Deploy AudioQnA in Kubernetes Cluster on Xeon and Gaudi", "AudioQnA", "ChatQnA Application", "ChatQnA Benchmarking", "Build Mega Service of ChatQnA on AIPC", "Build Mega Service of ChatQnA on Xeon", "Build Mega Service of ChatQnA (with Qdrant) on Xeon", "Build MegaService of ChatQnA on Gaudi", "How to Check and Validate Micro Service in the GenAI Example", "Build MegaService of ChatQnA on NVIDIA GPU", "Deploy ChatQnA in Kubernetes Cluster", "Deploy ChatQnA in Kubernetes Cluster on Xeon and Gaudi", "ChatQnA Conversational UI", "ChatQnA Customized UI", "Code Generation Application", "CodeGen accuracy Evaluation", "Build MegaService of CodeGen on Xeon", "Build MegaService of CodeGen on Gaudi", "Deploy CodeGen in Kubernetes Cluster", "Deploy CodeGen in a Kubernetes Cluster", "Deploy CodeGen with ReactUI", "Code Gen", "Code Gen", "Code Translation Application", "Build Mega Service of CodeTrans on Xeon", "Build Mega Service of CodeTrans on Gaudi", "Deploy CodeTrans in Kubernetes Cluster", "Deploy CodeTrans in a Kubernetes Cluster", "Code Translation", "DocRetriever Application", "DocRetriever Application with Docker", "DocRetriever Application with Docker", "Document Summarization Application", "Build Mega Service of Document Summarization on Intel Xeon Processor", "Build MegaService of Document Summarization on Gaudi", "Deploy DocSum in Kubernetes Cluster", "Deploy DocSum in Kubernetes Cluster", "Deploy DocSum with ReactUI", "Doc Summary React", "Doc Summary", "FAQ Generation Application", "FaqGen Evaluation", "Build Mega Service of FAQ Generation on Intel Xeon Processor", "Build MegaService of FAQ Generation on Gaudi", "Deploy FaqGen in Kubernetes Cluster", "<no title>", "Deploy FaqGen with ReactUI", "Doc Summary React", "FAQ Generation", "Instruction Tuning", "Deploy Instruction Tuning Service on Xeon", "Deploy Instruction Tuning Service on Gaudi", "Legal Information", "MultimodalQnA Application", "Build Mega Service of MultimodalQnA on Xeon", "Build Mega Service of MultimodalQnA on Gaudi", "Productivity Suite Application", "Build Mega Service of Productivity Suite on Xeon", "\ud83d\udd10 Keycloak Configuration Setup", "\ud83d\ude80 Deploy ProductivitySuite with ReactUI", "Productivity Suite React UI", "Generative AI Examples", "Rerank Model Finetuning", "Deploy Rerank Model Finetuning Service on Xeon", "Deploy Rerank Model Finetuning Service on Gaudi", "SearchQnA Application", "Build Mega Service of SearchQnA on Xeon", "Build Mega Service of SearchQnA on Gaudi", "Deploy SearchQnA in a Kubernetes Cluster", "Neural Chat", "Translation Application", "Build Mega Service of Translation on Xeon", "Build MegaService of Translation on Gaudi", "Deploy Translation in Kubernetes Cluster", "Deploy Translation in a Kubernetes Cluster", "Language Translation", "VideoQnA Application", "Build Mega Service of VideoQnA on Xeon", "Visual Question and Answering", "Build Mega Service of VisualQnA on Xeon", "Build MegaService of VisualQnA on Gaudi", "Deploy VisualQnA in Kubernetes Cluster", "Deploy VisualQnA in a Kubernetes Cluster", "Docker Images", "Supported Examples", "Development", "Legal Information", "GenAIInfra", "Release Branches", "Authentication and authorization", "Authentication and Authorization with APISIX and OIDC based Identity provider (Keycloak)", "Leveraging Istio to compose an OPEA Pipeline with authentication and authorization enabled", "HorizontalPodAutoscaler (HPA) support", "Helm charts for deploying GenAI Components and Examples", "ChatQnA", "ChatQnA Troubleshooting", "CodeGen", "CodeTrans", "asr", "data-prep", "embedding-usvc", "guardrails-usvc", "llm-uservice", "redis-vector-db", "reranking-usvc", "retriever-usvc", "speecht5", "tei", "teirerank", "tgi", "tts", "vllm", "web-retriever", "whisper", "DocSum", "Intel\u00ae Gaudi\u00ae Base Operator for Kubernetes", "How-To Setup Observability for OPEA Workload in Kubernetes", "Deploy Kubernetes add-ons for OPEA", "memory bandwidth exporter", "genai-microservices-connector(GMC)", "ChatQnA Use Cases in Kubernetes Cluster via GMC", "Helm chart for genai-microservices-connector(GMC)", "Troubleshooting GMC Custom Resource\uff08CR\uff09", "Usage guide for genai-microservices-connector(GMC)", "OPEA Pipeline Proxy", "Guardrails", "Scripts and tools", "NVIDIA GPU Quick-Start Guide", "Deploy Autoscaling Ray Cluster with KubeRay in Kubernetes Cluster", "OPEA Project", "Contributor Covenant Code of Conduct", "Contribution Guidelines", "Reporting a Vulnerability", "Technical Steering Committee (TSC)", "Technical Charter (the \u201cCharter\u201d) for OPEA a Series of LF Projects, LLC", "OPEA Project Code Owners", "OPEA Community", "Request for Comments (RFCs)", "24-05-16 GenAIExamples-001 Using MicroService to Implement ChatQnA", "24-05-16 OPEA-001 Overall Design", "24-05-24 OPEA-001 Code Structure", "24-06-21-OPEA-001-Guardrails-Gateway", "24-08-02-OPEA-AIAvatarChatbot", "24-08-07 OPEA-001 OPEA GenAIStudio", "RFC Archive", "Deploying GenAI", "OPEA API Service Spec (v0.9)", "Documentation Guidelines", "OPEA Documentation Generation", "Drawings Using Graphviz", "Developer Guides", "Evaluating GenAI", "ChatQnA Sample Guide", "Single node on-prem deployment with Ollama on AIPC", "Single node on-prem deployment with vLLM or TGI on Gaudi AI Accelerator", "ChatQnA Example Deployment Options", "Single node on-prem deployment with TGI on Nvidia gpu", "Single node on-prem deployment with vLLM or TGI on Xeon Scalable processors", "GenAI Examples", "OPEA Frequently Asked Questions", "Open Platform for Enterprise AI (OPEA) Framework Draft Proposal", "Getting Started with OPEA", "Glossary of Terms", "GenAI-microservices-connector(GMC) Installation", "Kubernetes Installation Options", "Kubernetes Installation using AWS EKS Cluster", "Kubernetes installation demo using kubeadm", "Kubernetes installation using Kubespray", "OPEA Project Documentation", "OPEA Overview", "GenAI Microservices", "Release Notes", "OPEA Release Notes v0.6", "OPEA Release Notes v0.7", "OPEA Release Notes v0.8", "OPEA Release Notes v0.9", "OPEA Release Notes v1.0", "OPEA 2024 - 2025 Roadmap", "OPEA CI/CD Roadmap"], "titleterms": {"": [99, 266, 268, 281, 282, 283], "0": [273, 283], "001": [245, 246, 247, 248, 250], "02": 249, "05": [245, 246, 247], "06": 248, "07": 250, "08": [249, 250], "1": [3, 6, 11, 12, 14, 17, 18, 19, 22, 23, 24, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 79, 81, 82, 83, 84, 85, 92, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 156, 157, 158, 161, 162, 164, 169, 170, 171, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 250, 267, 273, 274, 285], "10": [114, 116], "16": [223, 245, 246], "2": [3, 6, 11, 12, 14, 17, 18, 19, 22, 23, 24, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 79, 81, 82, 83, 84, 85, 92, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 156, 157, 158, 161, 162, 164, 169, 170, 171, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 250, 267, 273, 274, 285], "2024": [240, 284], "2025": 284, "21": 248, "24": [245, 246, 247, 248, 249, 250], "3": [3, 6, 11, 12, 14, 17, 18, 19, 22, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 81, 82, 92, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 156, 161, 162, 164, 169, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 250, 267, 273, 274, 285], "4": [3, 11, 12, 14, 17, 18, 19, 26, 27, 30, 32, 34, 35, 38, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 58, 63, 67, 70, 71, 72, 73, 74, 104, 105, 110, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 195, 223, 234, 237, 241, 267, 274, 285], "5": [3, 11, 12, 14, 17, 41, 70, 72, 74, 110, 111, 112, 113, 114, 115, 116, 137, 138, 141, 150, 161, 162, 164, 173, 174, 184, 195, 223, 241, 267, 274], "6": [12, 104, 105, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 184, 240, 241, 267, 279], "7": [111, 112, 113, 114, 115, 116, 164, 184, 241, 280], "8": [112, 113, 114, 115, 116, 164, 241, 281], "9": [112, 114, 116, 164, 253, 282], "A": [11, 12, 14, 17, 41, 43, 44, 45, 46, 47, 50, 63, 67, 70, 72, 73, 74, 202, 267, 276], "In": [48, 248], "It": 259, "Not": 0, "On": [106, 117, 125, 133, 142, 151, 180, 188], "The": 238, "To": [55, 194, 223, 234, 238], "Will": 266, "With": [49, 69], "a1": 267, "a2": 267, "a3": 267, "a4": 267, "a5": 267, "a6": 267, "about": 225, "acceler": 261, "accept": 238, "access": [48, 163, 223, 276], "account": 82, "accuraci": [91, 103, 122], "acknowledg": 97, "acronym": 266, "ad": 256, "adapt": 99, "add": [35, 224, 274], "addit": [2, 88, 168, 194, 238], "addon": 252, "adjust": [194, 230, 234], "affin": 89, "after": [137, 138], "against": 93, "agent": [3, 5, 95, 100, 101, 277], "agentqna": [191, 265], "ai": [2, 109, 123, 124, 168, 261, 266, 267, 284], "aiavatarchatbot": 249, "aipc": [111, 260], "align": 89, "all": [111, 112, 113, 114, 116, 123, 124, 137, 138, 161, 162, 164, 184, 186, 187, 223, 238, 260, 261, 263, 264], "alloc": 91, "altern": [245, 246, 248, 254], "amend": 241, "an": [78, 123, 131, 198, 230, 272], "anim": 249, "ansibl": 274, "answer": [95, 100, 185], "api": [3, 11, 12, 14, 17, 48, 82, 253], "apisix": [196, 197], "app": 82, "appendix": 267, "appli": [112, 113, 140, 149, 161, 178, 186], "applic": [102, 109, 121, 126, 130, 134, 136, 137, 138, 139, 147, 160, 163, 172, 175, 177, 181, 183, 189, 250, 265], "approach": 250, "ar": 266, "architectur": [109, 168, 226, 232, 250, 259, 267, 276], "archiv": 251, "ascii": 254, "ask": 266, "asr": [6, 102, 103, 104, 105, 205, 253, 277], "assess": 267, "asset": 241, "assist": [123, 124], "attribut": 237, "audioqna": [102, 103, 104, 105, 106, 107, 108, 191, 265], "aug": [284, 285], "augment": [99, 267], "authent": [196, 197, 198, 230, 252], "author": [196, 197, 198, 230, 245, 246, 247, 248, 249, 250, 252], "auto": 91, "automat": [205, 206, 207, 208, 209, 211, 212, 217, 219], "autorag": 96, "autosc": 235, "avatar": 249, "avatarchatbot": 249, "aw": [112, 113, 123, 131, 140, 149, 161, 178, 186, 272], "awar": 89, "b": [11, 12, 14, 17, 41, 43, 44, 45, 46, 47, 50, 63, 67, 70, 72, 73, 74], "backend": [112, 164], "background": 254, "ban": 237, "bandwidth": 225, "base": [123, 124, 196, 197, 222], "basic": [94, 260, 261, 263, 264], "bearer": 198, "below": 82, "benchmark": [88, 90, 95, 110, 250], "bia": [32, 98], "bigcod": 88, "binari": [225, 226], "bleu": 98, "branch": [195, 254], "bridgetow": [161, 162], "bug": 266, "build": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 80, 86, 104, 105, 111, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 225, 226, 231, 250, 260, 261, 263, 264, 274], "built": 45, "call": 88, "can": 266, "candid": 195, "capabl": 267, "card": 98, "case": [90, 227, 260, 261, 263, 264], "cd": 285, "charact": 254, "chart": [109, 121, 130, 139, 194, 195, 200, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 226, 228, 234, 252], "charter": 241, "chat": [7, 8, 109, 123, 124, 163, 164, 167, 176, 253, 267], "chatbot": 249, "chathistori": 277, "chatqna": [91, 94, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 164, 191, 201, 202, 223, 227, 230, 234, 245, 259, 260, 261, 262, 263, 264, 265, 268, 270], "chatqna_neuralchat_rerank_latest": 91, "check": [24, 26, 27, 33, 34, 39, 43, 44, 45, 46, 47, 50, 51, 61, 63, 66, 68, 70, 71, 72, 73, 74, 80, 109, 115, 228, 238, 260, 261, 263, 264], "chines": 97, "chroma": [76, 77], "ci": 285, "cicd": 242, "citat": [1, 87, 98, 159, 193], "clean": [57, 64, 110, 184, 273], "cli": [8, 11, 12, 13, 14, 15, 16, 17, 18, 26, 27, 29, 30, 34, 35, 41, 43, 44, 45, 46, 47, 50, 58, 60, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 157, 158, 170, 171], "client": [21, 22, 62], "clip": [20, 24], "clone": 45, "cloud": [196, 262], "cluster": [30, 106, 107, 110, 117, 118, 125, 126, 133, 134, 142, 143, 151, 175, 180, 181, 188, 189, 194, 225, 226, 227, 234, 235, 272, 273, 274], "code": [104, 105, 116, 121, 123, 124, 128, 129, 130, 135, 163, 200, 237, 238, 242, 245, 247, 254, 257], "codegen": [121, 122, 123, 124, 125, 126, 127, 164, 167, 191, 203, 265], "codetran": [130, 131, 132, 133, 134, 191, 204, 265], "collect": 110, "color": 254, "column": 254, "command": [88, 122, 201, 203, 204, 221, 254], "comment": 244, "commit": 192, "committe": [236, 240, 241], "commun": [238, 241, 243], "compani": [236, 266], "compar": 266, "compat": [245, 246, 248, 249, 250], "complianc": 241, "compon": [2, 200, 238, 266, 267, 268, 273], "compos": [11, 12, 13, 14, 15, 16, 17, 19, 23, 24, 26, 27, 34, 41, 43, 44, 45, 46, 47, 50, 58, 63, 67, 69, 70, 72, 73, 74, 109, 112, 114, 116, 198, 230, 234, 270], "comprehens": 276, "conceptu": 266, "condit": 199, "conduct": [237, 238], "config": [80, 91, 274], "configur": [79, 80, 81, 89, 90, 91, 93, 94, 110, 165, 166, 232, 250, 253, 273, 274], "connector": [194, 226, 228, 230, 234, 252, 270], "consid": [245, 246, 248], "consol": 272, "construct": [245, 267], "consum": [11, 12, 14, 17, 18, 19, 23, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 56, 58, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 86, 101, 109, 112, 114, 116, 121, 130, 139, 156, 169, 172], "contain": [21, 32, 38, 62, 89, 109, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 178, 179, 184, 186, 187, 232, 260, 261, 263, 264], "containerd": 225, "content": [2, 88, 90, 163, 168, 194, 199, 200, 250, 253, 254, 255], "context": 163, "continu": 242, "contribut": [2, 168, 238, 243, 266, 284], "contributor": [237, 238, 281], "convers": [112, 113, 114, 116, 119, 260, 261, 263, 264], "copilot": [123, 124], "core": [268, 277], "correct": 237, "cost": 266, "counter": 223, "coven": [237, 238], "cpu": [30, 51, 52, 54, 88, 89], "cr": 229, "crag": 95, "creat": [30, 78, 82, 123, 131, 156, 169, 195, 238, 272, 273, 274], "criteria": 238, "cross": 254, "crud": 97, "curl": [198, 201, 203, 204, 221], "current": 250, "custom": [3, 120, 123, 124, 229, 245, 276], "cypher": 42, "daemonset": 223, "dashboard": [88, 92, 109, 223, 259], "data": [10, 12, 19, 74, 80, 99, 101, 110, 164, 167, 206, 227], "databas": [101, 202], "dataprep": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 111, 112, 113, 114, 116, 161, 162, 164, 184, 260, 261, 263, 264, 277], "dataset": [78, 91, 95, 97, 103, 148], "db": [80, 210], "dbname": 81, "defin": [202, 274], "delet": [225, 226, 230, 234, 235, 260, 261, 263, 264], "delete_fil": [11, 14, 17], "delete_video": 12, "demo": [160, 249, 273], "depend": [205, 206, 207, 208, 209, 211, 212, 217, 219], "deploi": [102, 106, 107, 109, 110, 117, 118, 121, 125, 126, 127, 130, 133, 134, 139, 142, 143, 144, 147, 151, 153, 156, 157, 158, 160, 166, 168, 169, 170, 171, 172, 175, 177, 180, 181, 183, 185, 188, 189, 194, 200, 224, 225, 226, 227, 234, 235, 252, 260, 261, 263, 264, 266, 268, 274], "deploy": [136, 168, 226, 231, 232, 248, 250, 259, 260, 261, 262, 263, 264, 266, 268, 284], "deprec": [12, 17], "descript": [30, 98, 226], "design": [245, 246, 247, 248, 249, 250], "desir": 99, "detail": [109, 259, 281, 282, 283], "detect": [32, 35, 36, 37, 38, 41], "develop": [32, 38, 192, 231, 257], "diagram": 259, "differ": [136, 266], "direct": 256, "discuss": 238, "do": 266, "doc": [145, 146, 154, 167, 202, 242], "docindexretriev": [191, 265], "docker": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 86, 104, 105, 109, 110, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 137, 138, 139, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 200, 225, 226, 260, 261, 263, 264], "docretriev": [136, 137, 138], "docsum": [139, 142, 143, 144, 164, 191, 221, 265], "document": [11, 13, 14, 15, 16, 17, 18, 44, 139, 140, 141, 163, 164, 238, 254, 255, 257, 275], "doe": 266, "done": 285, "download": [81, 83, 84, 85, 123], "draft": [266, 267], "draw": [254, 256], "dump": 93, "each": 115, "edg": 256, "ek": 272, "embed": [11, 17, 20, 21, 22, 23, 24, 25, 26, 27, 30, 62, 66, 67, 68, 70, 71, 72, 74, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 207, 253, 260, 261, 263, 264, 277], "embedd": [69, 80], "enabl": [198, 199, 225, 230], "end": 267, "endpoint": [21, 35, 51, 52, 53, 62, 99, 202], "enforc": 237, "engin": 3, "english": 97, "enterpris": [250, 266, 267], "env": [260, 261, 263, 264], "environ": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 25, 29, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 56, 58, 60, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 97, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 164, 172, 173, 174, 178, 179, 184, 185, 186, 187, 196, 268, 273], "eval": 54, "evalu": [54, 88, 96, 97, 99, 103, 122, 148, 250, 258, 267], "exampl": [98, 110, 115, 168, 190, 191, 200, 238, 245, 254, 262, 265], "execut": 4, "exist": 78, "expect": [255, 259], "export": [223, 225], "extens": [123, 124], "face": 266, "factual": 33, "fake": 198, "faq": [122, 147, 148, 149, 150, 155, 163, 164, 167, 234], "faqgen": [43, 148, 151, 153, 164, 191, 265], "fastrag": 61, "featur": [7, 28, 59, 88, 90, 91, 108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 163, 164, 167, 176, 182, 231, 238, 267], "feedback": [28, 29], "feedback_manag": 277, "file": [30, 91, 94, 109, 110, 156, 169, 202, 254, 260, 261, 263, 264], "filter": 255, "fine": [30, 156, 169], "finetun": [30, 169, 170, 171, 277], "finit": 256, "first": 254, "flag": 225, "flexibl": 276, "flow": 267, "folder": 255, "forward": [58, 223], "found": 0, "foundat": 266, "four": 110, "framework": [122, 266, 267], "frequent": 266, "from": [45, 78, 82, 98, 123, 124, 200], "frontend": [123, 124, 249], "function": [88, 202, 267], "further": 98, "futur": [12, 17, 32, 38], "gatewai": [2, 232, 245, 248, 276], "gaudi": [34, 51, 52, 53, 99, 102, 105, 106, 107, 109, 110, 114, 117, 118, 121, 124, 125, 130, 132, 133, 139, 141, 142, 147, 150, 151, 156, 158, 160, 162, 169, 171, 172, 174, 177, 179, 180, 185, 187, 188, 194, 222, 223, 261], "gaudi2": [30, 88, 160, 267], "gen": [128, 129, 266], "genai": [115, 194, 200, 226, 228, 230, 234, 238, 250, 252, 258, 265, 266, 267, 270, 277], "genaicomp": [2, 45, 104, 105, 116, 242, 279, 280], "genaiev": [88, 242, 279, 280], "genaiexampl": [12, 17, 194, 234, 242, 245, 279, 280], "genaiinfra": [194, 234, 242, 279, 280], "genaistudio": 250, "gener": [2, 9, 25, 93, 99, 121, 122, 147, 148, 149, 150, 155, 163, 164, 167, 168, 198, 200, 227, 241, 253, 254, 255], "generate_capt": 12, "generate_transcript": 12, "get": [32, 35, 38, 48, 49, 77, 82, 95, 100, 108, 110, 119, 120, 128, 129, 135, 145, 146, 154, 155, 167, 168, 176, 182, 202, 226, 268], "get_fil": [11, 14, 17], "get_video": 12, "glossari": 269, "gmc": [109, 130, 139, 194, 195, 226, 227, 228, 229, 230, 234, 270], "gotcha": 199, "govern": 243, "gpu": [109, 110, 116, 234, 263], "grade": [95, 267], "grafana": [88, 92, 109, 223, 259], "graph": [42, 256], "graphviz": 256, "guard": [20, 25, 33, 36, 37, 39, 49, 56], "guardrail": [34, 114, 208, 232, 248, 261, 277], "guid": [163, 168, 226, 230, 234, 243, 252, 257, 259, 268], "guidelin": [237, 238, 254], "har": 88, "hardrware_info": 91, "hardwar": [89, 223, 238], "hat": 109, "head": 254, "health": 80, "helm": [109, 121, 130, 139, 194, 195, 200, 223, 226, 228, 234, 252], "high": 250, "highlight": [254, 279, 280], "histori": [7, 8, 164], "horizontalpodautoscal": 199, "how": [88, 98, 100, 115, 123, 124, 223, 225, 259, 266, 274], "hpa": 199, "http": 82, "hub": 200, "huggingfac": 99, "i": [238, 266], "ident": [163, 197], "imag": [6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 81, 83, 84, 85, 86, 104, 105, 107, 111, 112, 113, 114, 116, 118, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 157, 158, 161, 162, 164, 170, 171, 173, 174, 178, 179, 184, 186, 187, 190, 195, 225, 226, 227, 254, 260, 261, 263, 264, 267, 272], "image2video": 277, "implement": [7, 28, 59, 196, 245, 259, 266], "import": [92, 201, 203, 223], "includ": [266, 267], "indent": 254, "index": [27, 78, 82, 101], "individu": 267, "infer": [23, 248], "inform": [1, 87, 159, 193], "infra": 136, "ingest": 67, "ingress": 232, "initi": 266, "inject": 37, "input": [35, 98, 202], "instal": [2, 3, 6, 10, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 88, 89, 90, 93, 104, 105, 110, 116, 123, 124, 197, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 228, 234, 235, 252, 255, 270, 271, 272, 273, 274], "instanc": [123, 131], "instruct": [30, 156, 157, 158, 254], "instructiontun": [191, 265], "integr": [232, 242, 284], "intel": [99, 140, 149, 194, 222, 223, 266], "intellectu": 241, "intend": 98, "intent": 41, "intent_detect": 277, "interact": [260, 261, 263, 264, 268], "intern": 254, "introduct": [22, 32, 38, 48, 49, 77, 89, 97, 168, 199, 226, 267], "inventori": 274, "invok": [8, 13, 15, 16, 29, 60], "io": 82, "issu": 238, "istio": [196, 198, 230], "job": [30, 156, 169], "join": 266, "json": 91, "judg": [95, 97, 99], "juli": [284, 285], "june": [284, 285], "jwt": 198, "k8": [225, 226, 273], "kei": [82, 91, 163, 164, 259, 267], "keycloak": [164, 165, 166, 197], "knowledg": 42, "knowledgegraph": 277, "kubeadm": 273, "kubectl": [226, 274], "kuberai": 235, "kubernet": [88, 89, 91, 106, 107, 109, 110, 117, 118, 121, 125, 126, 130, 133, 134, 139, 142, 143, 151, 175, 180, 181, 188, 189, 194, 222, 223, 224, 227, 234, 235, 252, 262, 271, 272, 273, 274], "kubesprai": 274, "label": 256, "lancedb": [76, 78], "langchain": [23, 24, 26], "languag": [182, 191], "larg": 10, "later": 35, "latest": 266, "launch": [21, 22, 51, 52, 53, 62, 95, 97, 99, 101, 103, 111, 112, 113, 114, 116, 122, 123, 124, 131, 132, 140, 141, 148, 149, 150, 164, 178, 179, 184, 186, 187, 236, 260, 261, 263, 264], "legal": [1, 87, 159, 193], "level": 250, "leverag": [30, 198], "lf": 241, "licens": [1, 87, 159, 193], "limit": 98, "line": [88, 122], "link": [82, 254, 260, 261, 263, 264], "linux": 266, "list": [99, 253, 254], "llama": [27, 57], "llava": 55, "llc": 241, "llm": [3, 30, 31, 32, 35, 38, 42, 43, 44, 45, 46, 47, 50, 51, 52, 95, 97, 99, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 140, 141, 149, 150, 164, 173, 174, 178, 179, 209, 227, 253, 260, 261, 263, 264, 267, 277], "lm": [54, 88], "loader": 78, "local": [26, 27], "locust": 94, "log": [77, 115, 260, 261, 263, 264], "lvm": [10, 12, 55, 56, 57, 161, 162, 184, 186, 187, 277], "machin": [99, 256], "mai": [284, 285], "manag": [28, 29, 30, 74, 89, 156, 163, 166, 169], "manifest": [110, 200], "markdown": 254, "marketplac": [123, 124], "matrix": 259, "mega": [104, 105, 111, 112, 113, 115, 131, 132, 140, 149, 161, 162, 164, 173, 174, 178, 184, 186, 253, 260, 261, 263, 264, 276], "megaservic": [2, 104, 105, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 245, 249, 260, 261, 263, 264, 268, 276], "member": [236, 240, 266], "memori": 225, "methodologi": 97, "metric": [9, 92, 98, 99, 103, 110, 223], "micro": [115, 253], "microservic": [2, 3, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 86, 92, 101, 103, 104, 105, 111, 112, 113, 114, 115, 116, 122, 123, 124, 131, 132, 137, 138, 140, 141, 148, 149, 150, 161, 162, 164, 173, 174, 178, 179, 184, 186, 187, 190, 194, 226, 228, 230, 234, 245, 249, 252, 259, 260, 261, 263, 264, 268, 270, 276, 277], "mileston": 285, "milvu": [10, 11, 65, 66, 76, 79], "misc": [245, 246, 247, 248, 249], "mission": [241, 266], "ml": 35, "mmei": 23, "mode": 42, "model": [10, 26, 27, 30, 32, 35, 38, 45, 50, 54, 91, 102, 109, 112, 113, 114, 116, 121, 130, 131, 132, 133, 134, 139, 140, 141, 149, 150, 151, 160, 161, 162, 169, 170, 171, 178, 179, 183, 185, 227, 232, 284], "modifi": 223, "mongodb": [7, 8, 28, 29, 59, 60], "monitor": [109, 223, 259], "more": [225, 274], "mosec": [11, 20, 21, 62], "motiv": [245, 246, 247, 248, 249, 250], "mount": 232, "move": [12, 17], "multi": [248, 254], "multihop": 97, "multimod": [10, 12, 19, 20, 23, 24, 65, 161, 162, 267], "multimodalqna": [160, 161, 162, 191, 265], "multipl": [12, 51, 52, 227], "name": 254, "namespac": 202, "nativ": [46, 47, 196, 226, 262], "necessari": [137, 138], "need": 266, "neo4j": [13, 42, 68], "ner": 35, "network": 112, "neural": 176, "new": [78, 238, 281, 282, 283], "next": [226, 228, 259, 268, 276], "nginx": [58, 112, 114, 116, 131, 132, 178, 179, 186, 187, 277], "node": [51, 52, 110, 260, 261, 262, 263, 264, 273, 274], "non": 254, "note": [96, 201, 203, 273, 278, 279, 280, 281, 282, 283], "notic": 239, "now": 266, "nri": [89, 225], "nvidia": [109, 110, 116, 234, 263], "oauth2": 198, "object": [245, 246, 247, 248, 249, 250], "observ": [223, 248], "oidc": [197, 198], "ollama": [48, 260], "ons": 224, "opea": [2, 9, 45, 53, 90, 94, 99, 109, 168, 198, 223, 224, 230, 231, 236, 241, 242, 243, 246, 247, 248, 249, 250, 253, 255, 266, 267, 268, 275, 276, 279, 280, 281, 282, 283, 284, 285], "open": [78, 266, 267], "openshift": 109, "openvino": [51, 52], "oper": [222, 241, 253], "optim": [88, 89, 91, 267], "option": [3, 6, 11, 12, 14, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 43, 44, 45, 46, 47, 50, 55, 56, 58, 61, 63, 67, 69, 70, 71, 72, 73, 74, 75, 109, 112, 113, 114, 116, 123, 124, 137, 138, 140, 141, 149, 150, 194, 200, 260, 261, 262, 263, 264, 266, 271, 273], "option1": [205, 206, 207, 208, 209, 211, 212, 217, 219], "option2": [205, 206, 207, 208, 209, 211, 212, 217, 219], "organ": 254, "origin": [112, 114, 116, 131, 132], "other": [80, 253, 260, 261, 263, 264, 266], "our": 237, "outlin": 259, "output": [35, 77, 91, 93, 98, 259], "over": 267, "overal": 246, "overview": [3, 95, 100, 194, 238, 255, 259, 260, 261, 263, 264, 276], "own": [3, 100, 274], "owner": 242, "page": 0, "pair": 12, "paper": 98, "paramet": [30, 91, 253, 268], "parser": 80, "part": 250, "partner": 266, "password": 81, "pathwai": [65, 69, 76, 80], "pc": 109, "pcm": 223, "perform": [51, 52, 96, 103, 148, 198, 223, 267], "perman": 237, "persist": 200, "persona": [226, 250], "pgvector": [10, 14, 65, 76, 81], "pii": [35, 36], "pinecon": [10, 15, 76, 82], "pipelin": [99, 107, 118, 143, 198, 227, 230, 231, 234, 252, 267, 270], "place": 248, "plan": 4, "platform": [88, 89, 109, 267], "pledg": 237, "plugin": [89, 123, 124], "polici": [89, 241], "popular": 98, "port": [112, 114, 116, 131, 132, 184, 223], "post": [32, 38, 199], "pre": [32, 38, 192, 199], "prebuilt": [107, 118, 227], "predict": [20, 25, 33, 36, 37, 39, 49, 56], "predictionguard": 49, "prem": [260, 261, 263, 264], "prep": 206, "prepar": [11, 12, 13, 14, 15, 16, 17, 18, 19, 32, 35, 38, 91, 96, 97, 110, 178, 179, 223, 227, 232, 260, 261, 263, 264, 274], "prerequir": 93, "prerequisit": [90, 97, 110, 127, 144, 153, 166, 168, 192, 194, 197, 198, 226, 234, 259, 260, 261, 263, 264, 268, 272, 274], "present": 255, "preset": 227, "pretrain": 30, "privat": [200, 272], "problem": 266, "processor": [140, 149, 255, 264], "product": [163, 164, 167, 194], "productivitysuit": [166, 191, 265], "project": [108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 167, 176, 182, 236, 241, 242, 243, 266, 275, 276], "prometheu": [92, 109, 199, 223, 259], "prompt": [37, 59, 60, 164], "prompt_registri": 277, "pronounc": 266, "properti": 241, "propos": [238, 243, 245, 246, 247, 248, 249, 250, 267], "proposit": 250, "proprietari": 266, "provid": [3, 136, 197, 198], "proxi": [198, 231, 252, 274], "publish": [45, 195, 255], "pull": [141, 150, 186, 187, 238, 260, 261, 263, 264], "purpos": [110, 259], "py": 93, "python": [3, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 245], "q": 202, "q1": 284, "q4": 284, "qdrant": [10, 16, 65, 71, 76, 83, 113], "qna": [95, 167, 267], "queri": [42, 51, 52, 53], "question": [100, 185, 266], "quick": [22, 109, 112, 114, 116, 234, 274], "quickstart": [109, 112, 114, 116], "rag": [5, 42, 96, 97, 109, 126, 134, 143, 175, 181, 227, 253, 267], "raga": [99, 148, 277], "rai": [30, 45, 53, 114, 235], "rdt": 225, "react": [112, 113, 114, 116, 123, 124, 140, 141, 145, 149, 150, 154, 167], "reactui": [127, 144, 153, 166], "readi": 267, "real": 249, "red": 109, "redi": [10, 12, 17, 65, 76, 84, 161, 162, 210], "ref": 202, "refer": [98, 254, 266, 267, 274], "regist": 100, "registri": [59, 60, 164, 272], "relat": 91, "releas": [137, 138, 195, 278, 279, 280, 281, 282, 283], "relev": 273, "remot": 88, "remov": 89, "report": [93, 238, 239, 266], "repositori": [200, 242], "request": [199, 238, 244, 253], "requir": [3, 6, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 30, 32, 34, 35, 38, 40, 41, 44, 45, 50, 55, 56, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 109, 112, 113, 114, 116, 121, 130, 131, 132, 133, 134, 139, 140, 141, 149, 150, 151, 160, 161, 162, 178, 179, 183, 185, 268], "rerank": [30, 61, 62, 63, 64, 111, 112, 113, 114, 115, 116, 164, 169, 170, 171, 173, 174, 184, 202, 211, 253, 260, 261, 263, 264, 277], "rerankfinetun": [191, 265], "reset": 273, "resourc": [89, 91, 199, 229, 243], "respons": [237, 253], "restructuredtext": 254, "result": [103, 122, 148, 228, 232], "retriev": [65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 86, 99, 101, 110, 111, 112, 113, 114, 115, 116, 161, 162, 164, 173, 174, 184, 202, 212, 219, 253, 260, 261, 263, 264, 267, 277], "review": 238, "rfc": [243, 244, 250, 251], "rhocp": 109, "roadmap": [100, 243, 284, 285], "rule": 241, "run": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 32, 34, 35, 38, 41, 43, 44, 45, 46, 47, 48, 49, 50, 60, 61, 62, 63, 66, 67, 68, 70, 71, 72, 73, 74, 79, 80, 81, 83, 84, 85, 91, 93, 95, 99, 108, 109, 110, 112, 114, 116, 119, 120, 128, 129, 135, 145, 146, 154, 155, 157, 158, 167, 170, 171, 176, 182, 194, 234, 255], "safeti": 31, "sai": 266, "sampl": 259, "saniti": [260, 261, 263, 264], "scalabl": [264, 276], "scale": 274, "scope": [237, 241, 250], "screen": 167, "screenshot": [108, 119, 120, 128, 129, 135, 145, 146, 154, 155, 164, 167, 176, 182], "script": [3, 11, 12, 13, 14, 15, 16, 17, 18, 19, 30, 32, 35, 38, 41, 44, 45, 50, 61, 63, 91, 94, 233, 239, 252], "searchqna": [172, 173, 174, 175, 191, 265], "second": 254, "secur": 112, "see": 266, "select": 267, "sep": 284, "separ": [69, 205, 206, 207, 208, 209, 211, 212, 217, 219], "septemb": 240, "seri": 241, "serv": 45, "server": [6, 11, 12, 13, 15, 16, 17, 18, 19, 22, 40, 54, 55, 66, 68, 71, 75, 77, 78, 79, 80, 81, 83, 84, 85, 112, 113, 140, 149, 161, 178, 186, 259], "servic": [6, 11, 17, 23, 24, 25, 26, 27, 30, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 79, 81, 83, 84, 85, 86, 88, 96, 97, 100, 101, 102, 104, 105, 106, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 123, 124, 125, 127, 130, 131, 132, 133, 137, 138, 139, 140, 142, 144, 147, 148, 149, 151, 153, 156, 157, 158, 160, 161, 162, 164, 166, 169, 170, 171, 172, 173, 174, 177, 178, 180, 183, 184, 185, 186, 187, 188, 202, 223, 234, 245, 248, 253, 260, 261, 263, 264], "servicemonitor": 223, "set": [51, 52, 53, 58, 80, 104, 105, 123, 124, 173, 174, 255, 259, 268, 274], "setup": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 25, 29, 30, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 50, 56, 60, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 78, 82, 92, 109, 111, 112, 113, 114, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 163, 164, 165, 172, 178, 179, 184, 185, 186, 187, 194, 223, 225, 234, 260, 261, 263, 264, 268], "shoot": [137, 138], "shot": 167, "simpl": 256, "singl": [12, 51, 52, 110, 260, 261, 262, 263, 264, 274], "solut": [266, 267, 276], "sourc": [45, 80, 104, 105, 116, 164, 167, 200, 266], "space": [250, 254], "spec": [93, 253, 266], "specif": [9, 238, 254, 267], "speecht5": [75, 213], "splitter": 80, "stack": [12, 17], "stand": 266, "standard": 237, "start": [3, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 58, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 83, 84, 85, 86, 95, 100, 104, 105, 109, 110, 111, 112, 113, 114, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 168, 173, 174, 178, 179, 184, 186, 187, 226, 234, 235, 268], "state": [248, 256], "statu": [12, 17, 18, 19, 24, 26, 27, 32, 34, 35, 38, 43, 44, 45, 46, 47, 50, 51, 61, 63, 66, 68, 70, 71, 72, 73, 74, 89, 109, 115, 238, 245, 246, 247, 248, 249, 250, 260, 261, 263, 264], "steer": [236, 240, 241], "step": [110, 223, 226, 228, 238, 254, 259, 273, 274, 276], "stop": [260, 261, 263, 264], "store": 80, "stragegi": 250, "strategi": [3, 35], "stream": 49, "stresscli": 93, "structur": [247, 267], "studio": 250, "submit": 238, "suggest": [123, 124], "suit": [90, 163, 164, 167], "summar": [10, 139, 140, 141, 163, 164], "summari": [44, 145, 146, 154, 167, 259, 267], "support": [3, 102, 168, 191, 199, 227, 238, 243], "svd": 40, "svelt": [124, 140, 141], "sw": 267, "system": [74, 95, 96, 97, 267], "tab": 254, "tabl": [90, 199, 200, 253, 254, 256], "tag": 195, "technic": [236, 240, 241, 266], "tei": [20, 26, 27, 63, 69, 70, 72, 74, 86, 115, 214, 260, 261, 263, 264], "teirerank": 215, "telemetri": 9, "templat": [238, 244], "temporari": 237, "term": 269, "termin": 48, "test": [6, 21, 22, 40, 55, 57, 62, 64, 75, 90, 93, 104, 105, 110, 173, 174, 192, 195, 234], "text": [55, 78, 267], "tgi": [34, 41, 43, 44, 45, 50, 112, 114, 115, 141, 148, 150, 164, 186, 187, 202, 216, 261, 263, 264], "thank": 281, "theme": 255, "through": [201, 203, 204, 221], "time": 249, "tip": [51, 52], "titl": 254, "token": 198, "tool": [3, 90, 100, 101, 110, 233, 255, 284], "topologi": 89, "toxic": [38, 39], "trace": 9, "train": [30, 156, 169], "transcript": 12, "translat": [130, 135, 177, 178, 179, 180, 181, 182, 191, 265], "troubl": [137, 138], "troubleshoot": [11, 99, 109, 121, 130, 139, 172, 201, 202, 226, 229, 234, 259], "trust": 31, "trustworthi": 267, "tsc": [240, 241], "tt": [75, 102, 104, 105, 217, 277], "tune": [30, 91, 156, 157, 158, 169], "two": 110, "type": [3, 284], "ui": [111, 112, 113, 114, 116, 119, 120, 123, 124, 131, 132, 140, 141, 149, 150, 151, 161, 162, 164, 167, 173, 178, 179, 184, 186, 187, 198, 201, 203, 204, 221, 249, 260, 261, 263, 264], "understand": 268, "uninstal": [197, 228, 235], "up": [51, 52, 53, 80, 110, 255, 259, 273, 274], "updat": [197, 202], "upload": [11, 12, 14, 17, 30, 109, 110, 156, 169, 260, 261, 263, 264, 272], "url": [123, 124], "us": [10, 35, 88, 95, 98, 99, 107, 109, 112, 114, 115, 118, 121, 123, 124, 130, 139, 164, 184, 194, 200, 226, 227, 230, 232, 234, 245, 256, 260, 261, 263, 264, 270, 272, 273, 274], "usag": [48, 78, 88, 90, 91, 93, 94, 122, 194, 197, 230, 234, 239], "user": [99, 163, 166], "usernam": 81, "uservic": 209, "usvc": [207, 208, 211, 212], "v": 254, "v0": [253, 279, 280, 281, 282], "v1": [223, 283], "valid": [3, 45, 50, 89, 93, 100, 101, 111, 112, 113, 114, 115, 116, 123, 124, 131, 132, 137, 138, 140, 141, 149, 150, 161, 162, 164, 178, 179, 184, 186, 187, 232, 259, 260, 261, 263, 264], "valu": [98, 197, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 250], "variabl": [8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 25, 29, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 56, 60, 61, 63, 66, 67, 68, 70, 71, 72, 73, 74, 104, 105, 109, 111, 112, 113, 114, 115, 116, 121, 123, 124, 130, 131, 132, 139, 140, 141, 149, 150, 160, 161, 162, 164, 172, 173, 174, 178, 179, 184, 185, 186, 187, 260, 261, 263, 264, 268], "vdm": [10, 18, 19, 65, 74, 76, 85], "vector": [80, 101, 210], "vectordb": [67, 70, 72, 73, 74, 260, 261, 263, 264], "vectorstor": [76, 277], "verifi": [34, 41, 44, 45, 50, 63, 70, 72, 74, 106, 117, 125, 127, 133, 142, 144, 151, 153, 166, 180, 188, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223], "version": 255, "via": [166, 198, 226, 227], "video": [12, 40, 57, 67, 267], "videoqna": [183, 184, 191, 265], "videos_with_transcript": 12, "vision": 10, "visual": [9, 74, 92, 185, 268], "visualqna": [185, 186, 187, 188, 189, 191, 265], "vllm": [45, 51, 52, 53, 112, 114, 218, 261, 264], "volum": 200, "vote": 241, "vscode": [123, 124], "vulner": [239, 266], "wai": [238, 266], "warn": [237, 255], "we": 136, "web": [86, 219], "web_retriev": 277, "what": [266, 268, 281, 282, 283], "when": 266, "where": 266, "whisper": [6, 220], "why": [100, 266], "within": 266, "without": [49, 109, 130, 139], "work": [250, 255, 259, 266], "workflow": 139, "workload": [201, 203, 204, 221, 223], "xeon": [102, 104, 106, 107, 109, 110, 112, 113, 117, 118, 121, 123, 125, 130, 131, 133, 139, 140, 142, 147, 149, 151, 156, 157, 160, 161, 164, 169, 170, 172, 173, 177, 178, 180, 183, 184, 185, 186, 188, 264, 267], "yaml": [91, 245], "you": 266, "your": [3, 99, 100, 238, 274]}}) \ No newline at end of file