Fix linting

This commit is contained in:
yangdx
2025-04-21 01:22:23 +08:00
parent bd18c9c8ad
commit 6716e19d5c
3 changed files with 8 additions and 6 deletions

View File

@@ -124,7 +124,8 @@ async def main():
print("=====================") print("=====================")
print( print(
await rag.aquery( await rag.aquery(
"What are the top themes in this story?", param=QueryParam(mode="global") "What are the top themes in this story?",
param=QueryParam(mode="global"),
) )
) )
@@ -134,7 +135,8 @@ async def main():
print("=====================") print("=====================")
print( print(
await rag.aquery( await rag.aquery(
"What are the top themes in this story?", param=QueryParam(mode="hybrid") "What are the top themes in this story?",
param=QueryParam(mode="hybrid"),
) )
) )
except Exception as e: except Exception as e: