-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathmkdocs.yml
More file actions
51 lines (46 loc) · 1.32 KB
/
mkdocs.yml
File metadata and controls
51 lines (46 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
site_name: GraphRAG
theme:
name: material
highlightjs: true
features:
- navigation.tabs
plugins:
- search
- gen-files:
scripts:
- scripts/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: false
heading_level: 1
docstring_style: google
show_if_no_docstring: true
members_order: alphabetical
- mkdocs-jupyter
markdown_extensions:
- markdown_include.include:
base_path: .
- admonition
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
nav:
- Home: index.md
- Architecture Overview: architecture/overview.md
- Indexing Pipeline: guides/indexing_pipeline.md
- Query System: guides/query_system.md
- Data Flow & Examples: guides/data_flow_examples.md
- Advanced Examples:
- Graph Extraction Overview: guides/graph_extraction/index.md
- Entity Relationship Extraction: guides/graph_extraction/er_extraction.ipynb
- Graph Generator: guides/graph_extraction/graph_generator.ipynb
repo_name: ksachdeva/langchain-graphrag
repo_url: https://github.com/ksachdeva/langchain-graphrag