├── .env.example ├── .gitignore ├── 00_extractor.py ├── 01_create_schema.py ├── 02_create_mergers_subgraph.py ├── 03_create_acquisition_subgraph.py ├── 04_entity_resolve.py ├── GraphGeeks_Kuzu_BAML_Workshop.pdf ├── LICENSE ├── README.md ├── assets ├── baml-pipeline-1.png ├── baml-pipeline-2.png ├── merger_acquisition_graph.png └── merger_acquisition_graph_schema.png ├── baml_src ├── acquisition.baml ├── classify.baml ├── clients.baml ├── commodity.baml ├── entity_resolve.baml ├── generators.baml └── merger.baml ├── create_graph.sh ├── data ├── acquisitions.json ├── articles.json ├── entities_resolved.csv └── mergers.json ├── docker-compose.yml ├── pyproject.toml ├── requirements.txt └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/.gitignore -------------------------------------------------------------------------------- /00_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/00_extractor.py -------------------------------------------------------------------------------- /01_create_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/01_create_schema.py -------------------------------------------------------------------------------- /02_create_mergers_subgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/02_create_mergers_subgraph.py -------------------------------------------------------------------------------- /03_create_acquisition_subgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/03_create_acquisition_subgraph.py -------------------------------------------------------------------------------- /04_entity_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/04_entity_resolve.py -------------------------------------------------------------------------------- /GraphGeeks_Kuzu_BAML_Workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/GraphGeeks_Kuzu_BAML_Workshop.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/README.md -------------------------------------------------------------------------------- /assets/baml-pipeline-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/assets/baml-pipeline-1.png -------------------------------------------------------------------------------- /assets/baml-pipeline-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/assets/baml-pipeline-2.png -------------------------------------------------------------------------------- /assets/merger_acquisition_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/assets/merger_acquisition_graph.png -------------------------------------------------------------------------------- /assets/merger_acquisition_graph_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/assets/merger_acquisition_graph_schema.png -------------------------------------------------------------------------------- /baml_src/acquisition.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/baml_src/acquisition.baml -------------------------------------------------------------------------------- /baml_src/classify.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/baml_src/classify.baml -------------------------------------------------------------------------------- /baml_src/clients.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/baml_src/clients.baml -------------------------------------------------------------------------------- /baml_src/commodity.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/baml_src/commodity.baml -------------------------------------------------------------------------------- /baml_src/entity_resolve.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/baml_src/entity_resolve.baml -------------------------------------------------------------------------------- /baml_src/generators.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/baml_src/generators.baml -------------------------------------------------------------------------------- /baml_src/merger.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/baml_src/merger.baml -------------------------------------------------------------------------------- /create_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/create_graph.sh -------------------------------------------------------------------------------- /data/acquisitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/data/acquisitions.json -------------------------------------------------------------------------------- /data/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/data/articles.json -------------------------------------------------------------------------------- /data/entities_resolved.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/data/entities_resolved.csv -------------------------------------------------------------------------------- /data/mergers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/data/mergers.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/requirements.txt -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphgeeks-lab/baml-for-graph-101/HEAD/uv.lock --------------------------------------------------------------------------------