Skip to content

Commit

Permalink
Deployed 43ccb0b with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seankim658 committed Sep 21, 2024
1 parent 58448d2 commit 2bf8afc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions options/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1785,15 +1785,15 @@ <h3 id="vector-store">Vector Store</h3>
<li><code>VectorStoreIndex</code> (default): This is the default built-in vector store provided directly by the LlamaIndex library. While it does support metadata filtering, by default it does not perform any metadata filtering.</li>
</ul>
<h3 id="similarity-top-k">Similarity Top K</h3>
<p>The <code>similarity_top_k</code> parameter in the similarity search process refers to the number of nodes to return as a result of the semantic retrieval process. When the semantic search process is performend, the node embeddings are ranked by how smenatically similar they are to the query embedding. After the ranking process is completed, the top <code>k</code> most similar embeddings are sent to the LLM along with the query. Larger values will result in more input tokens.</p>
<p>The <code>similarity_top_k</code> parameter in the similarity search process refers to the number of nodes to return as a result of the retrieval process. When the retrieval process is performend, the node embeddings are ranked by how smenatically similar they are to the query embedding. After the ranking process is completed, the top <code>k</code> most similar embeddings are sent to the LLM along with the query. Larger values will result in more input tokens.</p>
<p>Note: The <code>similarity_top_k</code> parameter here is unrelated to the <code>top k</code> parameter for large language models which limits the model's vocabulary sampling set when considering the next word to generate.</p>
<h3 id="llm-model">LLM Model</h3>
<p>The currently supported LLM models are:</p>
<ul>
<li><code>gpt-3.5-turbo</code>: This is the least powerful model, offering the fastest performance at a low cost with the caveat of being the least powerful of the OpenAI offerings.</li>
<li><code>gpt-4-turbo</code> (default): This is the default model and is OpenAI's newest offering. As of writing, this model currently points to the <code>gpt-4-turbo-2024-04-09</code> model.</li>
<li><code>gpt-4-turbo-preview</code>: As of writing, this model currently points to the <code>gpt-4-0125-preview</code> model. Generally not recommended outside of testing purposes as the <code>gpt-4-turbo</code> offers better performance at the same cost.</li>
<li><code>gpt-4</code>: This is the most powerful model, but also the most expensive.</li>
<li><code>gpt-4-turbo</code>: This is the default model and is OpenAI's newest offering. As of writing, this model currently points to the <code>gpt-4-turbo-2024-04-09</code> model.</li>
<li><code>gpt-4</code>: This is the legacy model in the version 4 line, but also the most expensive.</li>
<li><code>gpt-4o</code> (default): Similar to <code>gpt-4</code> but faster and cheaper.</li>
</ul>
<p>Currently, only OpenAI LLM models are supported. Futher documentation on the specific LLM models can be found <a href="https://platform.openai.com/docs/models/overview">here</a> and information on pricing can be found <a href="https://openai.com/pricing">here</a>.</p>
<h3 id="mode">Mode</h3>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit 2bf8afc

Please sign in to comment.