Skip to content

Commit d2b1b19

Browse files
committed
fix: fixed comments
1 parent 39674b2 commit d2b1b19

File tree

1 file changed

+0
-19
lines changed
  • supporting-blog-content/building-multimodal-rag-with-elasticsearch-gotham/stages/04-stage

1 file changed

+0
-19
lines changed

supporting-blog-content/building-multimodal-rag-with-elasticsearch-gotham/stages/04-stage/rag_crime_analyze.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -72,22 +72,3 @@
7272
except Exception as e:
7373
logger.error(f"❌ Error in analysis : {str(e)}")
7474

75-
76-
# # Test cross-modal analysis
77-
# if 'audio' in evidence_data and 'vision' in evidence_data:
78-
# logger.info("\n🔄 Testing cross-modal analysis...")
79-
# cross_modal = llm.analyze_cross_modal_connections(
80-
# evidence_data['audio'],
81-
# 'audio',
82-
# evidence_data['vision'],
83-
# 'vision'
84-
# )
85-
86-
# if cross_modal:
87-
# logger.info("✅ Cross-modal analysis generated successfully")
88-
# logger.info("\n🔍 Cross-modal Analysis Preview:")
89-
# logger.info("=" * 50)
90-
# logger.info(cross_modal[:500] + "..." if len(cross_modal) > 500 else cross_modal)
91-
# logger.info("=" * 50)
92-
# else:
93-
# raise ValueError("Failed to generate cross-modal analysis")

0 commit comments

Comments
 (0)