Add simple knowledge graph build wrapper

This commit is contained in:
Oleh Poiasnik 2026-05-14 12:44:43 +02:00
parent 1eb36310d7
commit e1fdd93261
2 changed files with 17 additions and 0 deletions

View File

@ -105,6 +105,12 @@ python scripts/kg/build_adc_knowledge_graph.py `
Build the full graph:
```powershell
python build_knowledge_graph.py
```
Equivalent explicit command:
```powershell
python scripts/kg/build_adc_knowledge_graph.py `
--input data_adc_databaza/adc_scrape_2026_05_04/adc_products_structured.json `

11
build_knowledge_graph.py Normal file
View File

@ -0,0 +1,11 @@
"""Build the ADC knowledge graph with default project paths.
Usage:
python build_knowledge_graph.py
"""
from scripts.kg.build_adc_knowledge_graph import main
if __name__ == "__main__":
main()