Deploying to gh-pages from @ microsoft/graphrag@b912081f1b 🚀

This commit is contained in:
AlonsoGuevara 2024-07-08 20:07:52 +00:00
parent 53ee5ebf7d
commit 636a5a7615
3 changed files with 28 additions and 4 deletions

Binary file not shown.

View File

@ -467,14 +467,14 @@ a {
<td>25</td>
</tr>
<tr>
<td><code>GRAPHRAG_LLM_TPM</code></td>
<td><code>GRAPHRAG_LLM_TOKENS_PER_MINUTE</code></td>
<td></td>
<td>The number of tokens per minute to allow for the LLM client. 0 = Bypass</td>
<td><code>int</code></td>
<td>0</td>
</tr>
<tr>
<td><code>GRAPHRAG_LLM_RPM</code></td>
<td><code>GRAPHRAG_LLM_REQUESTS_PER_MINUTE</code></td>
<td></td>
<td>The number of requests per minute to allow for the LLM client. 0 = Bypass</td>
<td><code>int</code></td>
@ -501,6 +501,27 @@ a {
<td><code>bool</code></td>
<td><code>True</code></td>
</tr>
<tr>
<td><code>GRAPHRAG_LLM_TEMPERATURE</code></td>
<td></td>
<td>The temperature to use generation.</td>
<td><code>float</code></td>
<td>0</td>
</tr>
<tr>
<td><code>GRAPHRAG_LLM_TOP_P</code></td>
<td></td>
<td>The top_p to use for sampling.</td>
<td><code>float</code></td>
<td>1</td>
</tr>
<tr>
<td><code>GRAPHRAG_LLM_N</code></td>
<td></td>
<td>The number of responses to generate.</td>
<td><code>int</code></td>
<td>1</td>
</tr>
</tbody>
</table>
<h2>Text Embedding Settings</h2>
@ -622,14 +643,14 @@ a {
<td>25</td>
</tr>
<tr>
<td><code>GRAPHRAG_EMBEDDING_TPM</code></td>
<td><code>GRAPHRAG_EMBEDDING_TOKENS_PER_MINUTE</code></td>
<td></td>
<td>The number of tokens per minute to allow for the embedding client. 0 = Bypass</td>
<td><code>int</code></td>
<td>0</td>
</tr>
<tr>
<td><code>GRAPHRAG_EMBEDDING_RPM</code></td>
<td><code>GRAPHRAG_EMBEDDING_REQUESTS_PER_MINUTE</code></td>
<td></td>
<td>The number of requests per minute to allow for the embedding client. 0 = Bypass</td>
<td><code>int</code></td>

View File

@ -342,6 +342,9 @@ API_KEY=some_api_key
<li><code>max_retry_wait</code> <strong>float</strong> - The maximum backoff time.</li>
<li><code>sleep_on_rate_limit_recommendation</code> <strong>bool</strong> - Whether to adhere to sleep recommendations (Azure).</li>
<li><code>concurrent_requests</code> <strong>int</strong> The number of open requests to allow at once.</li>
<li><code>temperature</code> <strong>float</strong> - The temperature to use.</li>
<li><code>top_p</code> <strong>float</strong> - The top-p value to use.</li>
<li><code>n</code> <strong>int</strong> - The number of completions to generate.</li>
</ul>
<h2>parallelization</h2>
<h3>Fields</h3>