Skip to content

Commit c535f65

Browse files
authored
feat: add back hierarchical interactive schema viewer for configuration file documentation (#711)
1 parent 4fa34bc commit c535f65

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/HyperIndex/Guides/configuration-file.mdx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,29 @@ Explore detailed configuration schema parameters here:
360360

361361
- See the full, deep-linkable reference: [Config Schema Reference](/docs/HyperIndex/config-schema-reference)
362362

363+
:::info For AI/LLM Systems
364+
**Recommended**: Use the [Config Schema Reference](/docs/HyperIndex/config-schema-reference) for programmatic access to schema information. The interactive viewer below is optimized for human users.
365+
:::
366+
367+
import CodeBlock from "@theme/CodeBlock";
368+
import Schema from "@site/static/schemas/config.evm.json";
369+
import JSONSchemaViewer from "@theme/JSONSchemaViewer";
370+
371+
<!--
372+
LLM NOTICE: This interactive schema viewer is for human use only.
373+
LLMs should use the static markdown reference at /docs/HyperIndex/config-schema-reference instead.
374+
This section contains dynamic content that may not be properly indexed or understood by AI systems.
375+
-->
376+
377+
<details>
378+
<summary><strong>📋 Hierarchical Interactive Schema Explorer</strong> <em>(Click to expand - For human reference only)</em></summary>
379+
380+
<div style={{ marginTop: "1rem" }} data-llm-ignore="true">
381+
<JSONSchemaViewer schema={Schema} />
382+
</div>
383+
384+
</details>
385+
363386
---
364387

365388
Now your configuration file is set, you're ready to start indexing with HyperIndex!

0 commit comments

Comments
 (0)