diff --git a/data/operation_dulce/dataset.zip b/data/operation_dulce/dataset.zip index 960aaaae..c70bab82 100644 Binary files a/data/operation_dulce/dataset.zip and b/data/operation_dulce/dataset.zip differ diff --git a/posts/get_started/index.html b/posts/get_started/index.html index 526c7b28..505e9768 100644 --- a/posts/get_started/index.html +++ b/posts/get_started/index.html @@ -318,10 +318,15 @@ It shows how to use the system to index some text, and then use the indexed data
export GRAPHRAG_API_KEY="<api_key>" && \
-export GRAPHRAG_LLM_MODEL="<chat_completions_model>" && \
-export GRAPHRAG_LLM_MODEL_SUPPORTS_JSON="True" && \
-export GRAPHRAG_EMBEDDING_MODEL="<embeddings_model>" && \
-export GRAPHRAG_INPUT_TYPE="text"
+export GRAPHRAG_INPUT_TYPE="text" + +# Recommended, but not required. +# JSON output mode is only available with some completion models. +# export GRAPHRAG_LLM_MODEL_SUPPORTS_JSON="True" + +# You may use these env vars to specify which model to use. +# export GRAPHRAG_LLM_MODEL="<chat_completions_model>" +# export GRAPHRAG_EMBEDDING_MODEL="<embeddings_model>"