0.6.5
, following the /latest/
guide for Creating a Unified Query Frameworkroot_index = graph.get_index(graph.index_struct.root_id, GPTSimpleKeywordTableIndex)
fails as this function has no attribute 'root_id'
. I can seemingly get around this by using root_index = graph.get_index(graph.index_struct.index_id)
, but this doesn't feel right.response = query_engine.query("how are you?")
, which fails in a ZeroDivisionError: integer division or modulo by zero
. (https://pastebin.com/24ja3G2t).