graphrag/mkdocs.yaml

110 lines
3.3 KiB
YAML
Raw Permalink Normal View History

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"
- Architecture: "index/architecture.md"
- Dataflow: "index/default_dataflow.md"
- Inputs: "index/inputs.md"
Artifact cleanup (#1341) * Add source documents for verb tests * Remove entity_type erroneous column * Add new test data * Remove source/target degree columns * Remove top_level_node_id * Remove chunk column configs * Rename "chunk" to "text" * Rename "chunk" to "text" in base * Re-map document input to use base text units * Revert base text units as final documents dep * Update test data * Split/rename node source_id * Drop node size (dup of degree) * Drop document_ids from covariates * Remove unused document_ids from models * Remove n_tokens from covariate table * Fix missed document_ids delete * Wire base text units to final documents * Rename relationship rank as combined_degree * Add rank as first-class property to Relationship * Remove split_text operation * Fix relationships test parquet * Update test parquets * Add entity ids to community table * Remove stored graph embedding columns * Format * Semver * Fix JSON typo * Spelling * Rename lancedb * Sort lancedb * Fix unit test * Fix test to account for changing period * Update tests for separate embeddings * Format * Better assertion printing * Fix unit test for windows * Rename document.raw_content -> document.text * Remove read_documents function * Remove unused document summary from model * Remove unused imports * Format * Add new snapshots to default init * Use util to construct embeddings collection name * Align inc index model with branch changes * Update data and tests for int ids * Clean up embedding locs * Switch entity "name" to "title" for consistency * Fix short_id -> human_readable_id defaults * Format * Rework community IDs * Fix community size compute * Fix unit tests * Fix report read * Pare down nodes table output * Fix unit test * Fix merge * Fix community loading * Format * Fix community id report extraction * Update tests * Consistent short IDs and ordering * Update ordering and tests * Update incremental for new nodes model * Guard document columns loc * Match column ordering * Fix document guard * Update smoke tests * Fill NA on community extract * Logging for smoke test debug * Add parquet schema details doc * Fix community hierarchy guard * Use better empty hierarchy guard * Back-compat shims * Semver * Fix warning * Format * Remove default fallback * Reuse key
2024-11-13 15:11:19 -08:00
- Outputs: "index/outputs.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"
- Using YAML: "config/yaml.md"
- Using Env Vars: "config/env_vars.md"
- CLI: "cli.md"
- Extras:
- Microsoft Research Blog: "blog_posts.md"
2024-11-06 11:06:50 -08:00
- 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
2024-10-25 19:00:24 -04:00
- mkdocs-typer