diff --git a/pageindex/page_index_md.py b/pageindex/page_index_md.py index 8b7c85e..d353d11 100644 --- a/pageindex/page_index_md.py +++ b/pageindex/page_index_md.py @@ -1,8 +1,10 @@ import asyncio import json import re -from .utils import * - +try: + from .utils import * +except: + from utils import * async def get_node_summary(node, summary_token_threshold=200, model=None): node_text = node.get('text')