graphrag/mkdocs.yaml
Nathan Evans 25bbae8642
Docs: Add models page (#1842)
* Add models page

* Update config docs for new params

* Spelling

* Add comment on CoT with o-series

* Add notes about managed identity

* Update the viz guide

* Spruce up the getting started wording

* Capitalization

* Add BYOG page

* More BYOG edits

* Update dictionary

* Change example model name
2025-04-28 17:36:08 -07:00

111 lines
3.4 KiB
YAML

site_name: GraphRAG
theme:
name: material
icon:
logo: octicons/ai-model-24
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- content.code.select
- navigation.footer
- navigation.tabs
nav:
- Home:
- Welcome: index.md
- Getting Started: get_started.md
- Development Guide: developing.md
- Indexing:
- Overview: "index/overview.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"
- Manual Tuning: "prompt_tuning/manual_prompt_tuning.md"
- Query:
- Overview: "query/overview.md"
- Global Search: "query/global_search.md"
- Local Search: "query/local_search.md"
- DRIFT Search: "query/drift_search.md"
- Question Generation: "query/question_generation.md"
- Notebooks:
- Overview: "query/notebooks/overview.md"
- Global Search: "examples_notebooks/global_search.ipynb"
- Local Search: "examples_notebooks/local_search.ipynb"
- DRIFT Search: "examples_notebooks/drift_search.ipynb"
- Configuration:
- Overview: "config/overview.md"
- Init Command: "config/init.md"
- Detailed Configuration: "config/yaml.md"
- Language Model Selection: "config/models.md"
- CLI: "cli.md"
- Extras:
- Microsoft Research Blog: "blog_posts.md"
- Visualization Guide: "visualization_guide.md"
- Operation Dulce:
- About: "data/operation_dulce/ABOUT.md"
- Document: "data/operation_dulce/Operation Dulce v2 1 1.md"
plugins:
- search
- exclude-search:
exclude:
- "data/operation_dulce/Operation Dulce v2 1 1.md"
exclude_unreferenced: true
- mkdocs-jupyter:
execute: true
repo_url: https://github.com/microsoft/graphrag
repo_name: graphrag
copyright: >
© 2025 Microsoft | 
<a href="https://go.microsoft.com/fwlink/?LinkId=521839">Privacy</a>&nbsp;|&nbsp;
<a href="https://go.microsoft.com/fwlink/?LinkId=2259814">Consumer Heath Privacy</a>&nbsp;|&nbsp;
<a onclick="window.manageConsent();">Cookies</a>&nbsp;|&nbsp;
<a href="https://go.microsoft.com/fwlink/?LinkID=206977">Terms of Use</a>&nbsp;|&nbsp;
<a href="https://www.microsoft.com/trademarks">Trademarks</a>
extra:
polyfills:
- "https://wcpstatic.microsoft.com/mscc/lib/v2/wcp-consent.js"
extra_css:
- stylesheets/extra.css
extra_javascript:
- "scripts/create_cookie_banner.js"
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- mkdocs-typer