fix: coderabbit suggestions

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-06-03 00:30:36 -07:00
parent 8f8522af7d
commit cdc69c1c7d
3 changed files with 2 additions and 16 deletions

View file

@ -95,7 +95,7 @@ async def answer_question(state: State, config: RunnableConfig) -> Dict[str, Any
# Prepare documents for citation formatting
formatted_documents = []
for i, doc in enumerate(documents):
for _i, doc in enumerate(documents):
# Extract content and metadata
content = doc.get("content", "")
doc_info = doc.get("document", {})