`
\ No newline at end of file
diff --git a/docs/query/overview.md b/docs/query/overview.md
index d2be2470..dd375b8b 100644
--- a/docs/query/overview.md
+++ b/docs/query/overview.md
@@ -26,6 +26,10 @@ DRIFT Search introduces a new approach to local search queries by including comm
To learn more about DRIFT Search, please refer to the [DRIFT Search](drift_search.md) documentation.
+## Basic Search
+
+GraphRAG includes a rudimentary implementation of basic vector RAG to make it easy to compare different search results based on the type of question you are asking. You can specify the top `k` txt unit chunks to include in the summarization context.
+
## Question Generation
This functionality takes a list of user queries and generates the next candidate questions. This is useful for generating follow-up questions in a conversation or for generating a list of questions for the investigator to dive deeper into the dataset.
diff --git a/docs/visualization_guide.md b/docs/visualization_guide.md
index 539dd509..d09319e7 100644
--- a/docs/visualization_guide.md
+++ b/docs/visualization_guide.md
@@ -13,19 +13,19 @@ snapshots:
embed_graph:
enabled: true # will generate node2vec embeddings for nodes
umap:
- enabled: true # will generate UMAP embeddings for nodes
+ enabled: true # will generate UMAP embeddings for nodes, giving the entities table an x/y position to plot
```
After running the indexing pipeline over your data, there will be an output folder (defined by the `storage.base_dir` setting).
- **Output Folder**: Contains artifacts from the LLM’s indexing pass.
## 2. Locate the Knowledge Graph
-In the output folder, look for a file named `merged_graph.graphml`. graphml is a standard [file format](http://graphml.graphdrawing.org) supported by many visualization tools. We recommend trying [Gephi](https://gephi.org).
+In the output folder, look for a file named `graph.graphml`. graphml is a standard [file format](http://graphml.graphdrawing.org) supported by many visualization tools. We recommend trying [Gephi](https://gephi.org).
## 3. Open the Graph in Gephi
1. Install and open Gephi
2. Navigate to the `output` folder containing the various parquet files.
-3. Import the `merged_graph.graphml` file into Gephi. This will result in a fairly plain view of the undirected graph nodes and edges.
+3. Import the `graph.graphml` file into Gephi. This will result in a fairly plain view of the undirected graph nodes and edges.
diff --git a/mkdocs.yaml b/mkdocs.yaml
index b80db2cb..54c213b9 100644
--- a/mkdocs.yaml
+++ b/mkdocs.yaml
@@ -27,10 +27,11 @@ nav:
- Development Guide: developing.md
- Indexing:
- Overview: "index/overview.md"
- - Architecture: "index/architecture.md"
- Dataflow: "index/default_dataflow.md"
+ - Methods: "index/methods.md"
- Inputs: "index/inputs.md"
- Outputs: "index/outputs.md"
+ - Custom Graphs: "index/byog.md"
- Prompt Tuning:
- Overview: "prompt_tuning/overview.md"
- Auto Tuning: "prompt_tuning/auto_prompt_tuning.md"
@@ -49,8 +50,8 @@ nav:
- Configuration:
- Overview: "config/overview.md"
- Init Command: "config/init.md"
- - Using YAML: "config/yaml.md"
- - Using Env Vars: "config/env_vars.md"
+ - Detailed Configuration: "config/yaml.md"
+ - Language Model Selection: "config/models.md"
- CLI: "cli.md"
- Extras:
- Microsoft Research Blog: "blog_posts.md"