neo4j / neo4j-graphrag-python

Neo4j GraphRAG for Python
https://neo4j.com/docs/neo4j-graphrag-python/current/
Other
172 stars 26 forks source link

Make SchemaBuilder.create_schema_model args optional #158

Closed zach-blumenfeld closed 3 days ago

zach-blumenfeld commented 2 weeks ago

Often we just want to define node labels, or just node labels and relationship types.

We may not know a good potential_schema, especially while developing on new data.

Currently, these arguments aren't Nullable/optional so when we don't pass them we will get an error. We can get around for now by passing an empty list. image