diff --git a/posts/get_started/index.html b/posts/get_started/index.html
index afca5a9b..4d01a3a6 100644
--- a/posts/get_started/index.html
+++ b/posts/get_started/index.html
@@ -312,28 +312,21 @@ It shows how to use the system to index some text, and then use the indexed data
Next we'll inject some required config variables:
Set Up Environment Variables
-
First let's make sure to setup the required environment variables:
-
-
GRAPHRAG_API_KEY - API Key for executing the model, will fallback to OPENAI_API_KEY if one is not provided.
-
GRAPHRAG_LLM_MODEL - Model to use for Chat Completions.
-
GRAPHRAG_LLM_MODEL_SUPPORTS_JSON - This will signal to the indexing engine that you're using a model capable of JSON-mode output (e.g. gpt-4 or gpt-3.5-turbo). We highly recommend enabling this to avoid malformed JSON errors during indexing.
-
GRAPHRAG_EMBEDDING_MODEL - Model to use for Embeddings.
-
GRAPHRAG_INPUT_TYPE - Type of input data, can be text or csv.
-
GRAPHRAG_API_BASE - Base URL for the Azure OpenAI. Only required for Azure OpenAI users.
-
GRAPHRAG_LLM_DEPLOYMENT_NAME - Deployment name for the Chat Completions model. Only required for Azure OpenAI users.
-
GRAPHRAG_EMBEDDING_DEPLOYMENT_NAME - Deployment name for the Embeddings model. Only required for Azure OpenAI users.
-
+
First let's make sure to setup the required environment variables. For details on these environment variables, and what environment variables are available, see the environment variables documentation.
OpenAI and Azure OpenAI
-
To get started, let's set the base environment variables.
-
exportGRAPHRAG_API_KEY="<api_key>"&&\
+
+To get started, let's set the base environment variables.
+
+```sh
+exportGRAPHRAG_API_KEY="<api_key>"&&\exportGRAPHRAG_LLM_MODEL="<chat_completions_model>"&&\exportGRAPHRAG_LLM_MODEL_SUPPORTS_JSON="True"&&\exportGRAPHRAG_EMBEDDING_MODEL="<embeddings_model>"&&\exportGRAPHRAG_INPUT_TYPE="text"
-
@@ -341,14 +334,14 @@ It shows how to use the system to index some text, and then use the indexed data
In addition, Azure OpenAI users should set the following env-vars.