diff --git a/data/operation_dulce/dataset.zip b/data/operation_dulce/dataset.zip index dc0c2cdd..33920982 100644 Binary files a/data/operation_dulce/dataset.zip and b/data/operation_dulce/dataset.zip differ diff --git a/posts/config/env_vars/index.html b/posts/config/env_vars/index.html index 0f104230..45574dc4 100644 --- a/posts/config/env_vars/index.html +++ b/posts/config/env_vars/index.html @@ -467,14 +467,14 @@ a { 25 -GRAPHRAG_LLM_TPM +GRAPHRAG_LLM_TOKENS_PER_MINUTE The number of tokens per minute to allow for the LLM client. 0 = Bypass int 0 -GRAPHRAG_LLM_RPM +GRAPHRAG_LLM_REQUESTS_PER_MINUTE The number of requests per minute to allow for the LLM client. 0 = Bypass int @@ -501,6 +501,27 @@ a { bool True + +GRAPHRAG_LLM_TEMPERATURE + +The temperature to use generation. +float +0 + + +GRAPHRAG_LLM_TOP_P + +The top_p to use for sampling. +float +1 + + +GRAPHRAG_LLM_N + +The number of responses to generate. +int +1 +

Text Embedding Settings

@@ -622,14 +643,14 @@ a { 25 -GRAPHRAG_EMBEDDING_TPM +GRAPHRAG_EMBEDDING_TOKENS_PER_MINUTE The number of tokens per minute to allow for the embedding client. 0 = Bypass int 0 -GRAPHRAG_EMBEDDING_RPM +GRAPHRAG_EMBEDDING_REQUESTS_PER_MINUTE The number of requests per minute to allow for the embedding client. 0 = Bypass int diff --git a/posts/config/json_yaml/index.html b/posts/config/json_yaml/index.html index 77752000..b8ca590e 100644 --- a/posts/config/json_yaml/index.html +++ b/posts/config/json_yaml/index.html @@ -342,6 +342,9 @@ API_KEY=some_api_key
  • max_retry_wait float - The maximum backoff time.
  • sleep_on_rate_limit_recommendation bool - Whether to adhere to sleep recommendations (Azure).
  • concurrent_requests int The number of open requests to allow at once.
  • +
  • temperature float - The temperature to use.
  • +
  • top_p float - The top-p value to use.
  • +
  • n int - The number of completions to generate.
  • parallelization

    Fields