File size: 10,236 Bytes
6129cb8
 
6ecbc91
 
 
 
 
 
cb9097f
 
 
6ecbc91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb9097f
 
 
 
 
 
 
6ecbc91
 
 
 
 
 
 
 
 
 
feca57f
6ecbc91
 
 
feca57f
6ecbc91
 
feca57f
 
 
 
6ecbc91
feca57f
 
 
 
 
 
 
 
 
 
 
 
 
6ecbc91
feca57f
 
6ecbc91
feca57f
 
 
 
 
 
 
 
 
 
 
 
6ecbc91
feca57f
6129cb8
feca57f
 
 
 
 
 
 
 
 
 
 
 
7f849e0
 
 
 
 
 
6129cb8
6ecbc91
 
7f849e0
6ecbc91
 
 
 
 
 
 
 
 
6129cb8
6ecbc91
7f849e0
 
 
 
 
6ecbc91
7f849e0
 
6ecbc91
7f849e0
6ecbc91
 
7f849e0
 
6ecbc91
 
 
 
 
 
 
 
 
7f849e0
 
 
6129cb8
6ecbc91
 
 
 
 
2b6cdbb
7f849e0
 
6ecbc91
 
 
 
 
 
7f849e0
6ecbc91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a4cd871
 
73e894d
 
6ecbc91
 
 
 
 
 
 
 
 
 
 
 
 
 
7f849e0
6ecbc91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7f849e0
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import streamlit as st
from search_utils import SemanticSearch
import logging
import time
import os
import sys
import psutil  # Added missing import
from urllib.parse import urlparse
import threading
import re


# Configure logging
logging.basicConfig(
    level=logging.INFO,
    format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
    handlers=[
        logging.StreamHandler()
    ]
)
logger = logging.getLogger("SemanticSearchApp")

# Security validation functions
def is_valid_url(url):
    """Validate URL format and safety"""
    try:
        result = urlparse(url)
        if not all([result.scheme, result.netloc]):
            return False
        # Add additional security checks here
        return True
    except:
        return False

def sanitize_query(query):
    """Sanitize user input to prevent injection attacks"""
    try:
        # Remove non-alphanumeric characters except spaces and hyphens
        clean_query = re.sub(r'[^\w\s-]', '', query)
        return clean_query[:256]  # Truncate to prevent long queries
    except Exception as e:
        logger.error(f"Query sanitization failed: {str(e)}")
        return query[:256]  # Fallback truncation

# Diagnostics integration
try:
    from diagnostics import diagnose_parquet_files
    diagnostics_available = True
except ImportError:
    diagnostics_available = False
    logger.warning("Diagnostics module not available")

def add_diagnostics_ui(search_system):
    """Enhanced diagnostics UI with proper directory checks"""
    with st.sidebar.expander("πŸ”§ Diagnostics", expanded=False):
        if st.button("Run Full System Check"):
            with st.spinner("Performing comprehensive system check..."):
                # Create columns for organized display
                col1, col2 = st.columns(2)
                
                # Get actual paths from the search system
                metadata_dir = search_system.metadata_mgr.shard_dir
                faiss_dir = search_system.shard_dir  # From SemanticSearch class

                with col1:
                    # Metadata directory check
                    st.subheader("πŸ“‚ Metadata Validation")
                    if metadata_dir.exists():
                        # Check directory structure
                        dir_status = any(metadata_dir.glob("*.parquet"))
                        st.write(f"Directory: `{metadata_dir}`")
                        st.write(f"Parquet Files Found: {'βœ…' if dir_status else '❌'}")
                        
                        # Check individual files
                        if diagnose_parquet_files(str(metadata_dir)):
                            st.success("βœ… Metadata shards valid")
                        else:
                            st.error("❌ Metadata issues detected")
                    else:
                        st.error("Metadata directory not found")

                with col2:
                    # FAISS index check
                    st.subheader("πŸ“š FAISS Validation")
                    if faiss_dir.exists():
                        index_files = list(faiss_dir.glob("*.index"))
                        st.write(f"Directory: `{faiss_dir}`")
                        st.write(f"Index Files Found: {len(index_files)}")
                        
                        if len(search_system.index_shards) > 0:
                            st.success(f"βœ… {len(search_system.index_shards)} FAISS shards loaded")
                            st.write(f"Total Vectors: {sum(s.ntotal for s in search_system.index_shards):,}")
                        else:
                            st.error("❌ No FAISS shards loaded")
                    else:
                        st.error("FAISS directory not found")

                # System resource check
                st.subheader("πŸ’» System Resources")
                col_res1, col_res2 = st.columns(2)
                with col_res1:
                    st.metric("Memory Usage", 
                            f"{psutil.Process().memory_info().rss // 1024 ** 2} MB",
                            help="Current process memory usage")
                
                with col_res2:
                    st.metric("CPU Utilization", 
                            f"{psutil.cpu_percent()}%",
                            help="Total system CPU usage")
def main():
    st.set_page_config(
        page_title="Semantic Search Engine",
        page_icon="πŸ”",
        layout="wide"
    )

    # Initialize search system with enhanced caching
    @st.cache_resource(ttl=3600, show_spinner="Initializing search engine...")
    def init_search_system():
        try:
            system = SemanticSearch()
            system.initialize_system()
            logger.info("Search system initialized successfully")
            return system
        except Exception as e:
            logger.error(f"System initialization failed: {str(e)}")
            st.error("Critical system initialization error. Check logs.")
            st.stop()

    # Custom CSS with enhanced visual design
    st.markdown("""
    <style>
    div[data-testid="stExpander"] div[role="button"] p {
        font-size: 1.2rem;
        font-weight: bold;
        color: #1e88e5;
    }
    a.source-link {
        color: #1a73e8 !important;
        text-decoration: none !important;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }
    a.source-link:hover {
        border-bottom-color: #1a73e8;
        opacity: 0.9;
    }
    .similarity-badge {
        padding: 0.2em 0.5em;
        border-radius: 4px;
        background: #e3f2fd;
        color: #1e88e5;
        font-weight: 500;
    }
    </style>
    """, unsafe_allow_html=True)

    try:
        search_system = init_search_system()
    except Exception as e:
        st.error(f"Failed to initialize search system: {str(e)}")
        st.stop()

    # Main UI components
    st.title("πŸ” Semantic Search Engine")
    
    # Search input with sanitization
    query = st.text_input("Enter your search query:", 
                        placeholder="Search documents...",
                        max_chars=200)
    
    if query:
        try:
            # Sanitize and validate query
            clean_query = sanitize_query(query)
            if not clean_query:
                st.warning("Please enter a valid search query")
                st.stop()
                
            with st.spinner("πŸ” Searching through documents..."):
                start_time = time.time()
                results = search_system.search(clean_query, 5)
                search_duration = time.time() - start_time
                
                if not results.empty:
                    st.subheader(f"Top Results ({search_duration:.2f}s)")
                    
                    # Visualize results with enhanced formatting
                    for _, row in results.iterrows():
                        with st.expander(f"{row['title']}"):
                            # Similarity visualization
                            col1, col2 = st.columns([3, 1])
                            with col1:
                                st.markdown(f"**Summary**: {row['summary']}")
                            with col2:
                                st.markdown(
                                    f"<div class='similarity-badge'>"
                                    f"Confidence: {row['similarity']:.1%}"
                                    f"</div>", 
                                    unsafe_allow_html=True
                                )
                                st.progress(float(row['similarity']))
                                if row['source']:
                                    st.markdown(row['source'], unsafe_allow_html=True)                            
                                else:
                                    st.warning("Invalid source URL")
                else:
                    st.warning("No matching documents found")
                    st.info("Try these tips:")
                    st.markdown("""
                    - Use more specific keywords
                    - Check your spelling
                    - Avoid special characters
                    """)

        except Exception as e:
            logger.error(f"Search failed: {str(e)}")
            st.error("Search operation failed. Please try again.")

    # System monitoring sidebar
    with st.sidebar:
        st.subheader("πŸ“Š System Status")
        col1, col2 = st.columns(2)
        
        with col1:
            st.metric("Total Documents", 
                    f"{search_system.metadata_mgr.total_docs:,}",
                    help="Total indexed documents in system")
            
        with col2:
            st.metric("FAISS Shards", 
                    len(search_system.index_shards),
                    help="Number of loaded vector index shards")
        
        st.metric("Active Memory", 
                f"{psutil.Process().memory_info().rss // 1024 ** 2} MB",
                help="Current memory usage by the application")

        # Diagnostics section
        if diagnostics_available:
            add_diagnostics_ui(search_system)
        else:
            st.warning("Diagnostics module not available")

        # Health check with error handling
        if st.button("🩺 Run Health Check"):
            try:
                system_stats = {
                    "shards_loaded": len(search_system.index_shards),
                    "metadata_records": search_system.metadata_mgr.total_docs,
                    "memory_usage": f"{psutil.Process().memory_info().rss // 1024 ** 2} MB",
                    "active_threads": threading.active_count(),
                    "system_load": f"{os.getloadavg()[0]:.2f}"
                }
                st.json(system_stats)
            except Exception as e:
                st.error(f"Health check failed: {str(e)}")

        # Cache management
        if st.button("♻️ Clear Cache"):
            try:
                st.cache_resource.clear()
                st.rerun()
            except Exception as e:
                st.error(f"Cache clearance failed: {str(e)}")

if __name__ == "__main__":
    main()