Spaces:
Sleeping
Sleeping
File size: 11,232 Bytes
9679fcd ec7f58f 9679fcd ec7f58f 9679fcd 36d6f84 469f979 9679fcd |
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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
"""
GraphWiz Ireland - Advanced GraphRAG Chat Application
Complete rewrite with hybrid search, GraphRAG, Groq LLM, and instant responses
"""
import streamlit as st
import os
import sys
import time
import subprocess
from pathlib import Path
# Run version checker on first load (only in production)
if os.path.exists('/app'):
version_check_file = Path('/app/check_versions.py')
if version_check_file.exists() and not os.environ.get('VERSION_CHECK_DONE'):
try:
result = subprocess.run(
[sys.executable, str(version_check_file)],
capture_output=True,
text=True,
timeout=30
)
print("=== VERSION CHECK OUTPUT ===")
print(result.stdout)
if result.stderr:
print("=== VERSION CHECK ERRORS ===")
print(result.stderr)
os.environ['VERSION_CHECK_DONE'] = '1'
except Exception as e:
print(f"Version check failed: {e}")
# Now import application modules
from rag_engine import IrelandRAGEngine
from dataset_loader import ensure_dataset_files
import json
# Load environment variables from .env file
env_file = Path(__file__).parent.parent / '.env'
if env_file.exists():
with open(env_file) as f:
for line in f:
line = line.strip()
if line and not line.startswith('#') and '=' in line:
key, value = line.split('=', 1)
os.environ[key.strip()] = value.strip()
# Page configuration
st.set_page_config(
page_title="GraphWiz Ireland - Intelligent Q&A",
page_icon="๐ฎ๐ช",
layout="wide",
initial_sidebar_state="expanded"
)
# Custom CSS for better UI
st.markdown("""
<style>
.main-header {
font-size: 3em;
font-weight: bold;
text-align: center;
margin-bottom: 0.5em;
background: linear-gradient(90deg, #169B62 0%, #FF883E 50%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.answer-box {
background-color: #f0f7f4;
color: #1a1a1a;
padding: 1.5em;
border-radius: 10px;
border-left: 5px solid #169B62;
margin: 1em 0;
}
.citation-box {
background-color: #f8f9fa;
color: #2c3e50;
padding: 0.5em;
border-radius: 5px;
margin: 0.3em 0;
font-size: 0.9em;
}
.metric-card {
background-color: #ffffff;
color: #1a1a1a;
padding: 1em;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: center;
}
.stButton>button {
width: 100%;
background-color: #169B62;
color: white;
font-weight: bold;
border-radius: 8px;
padding: 0.5em 1em;
border: none;
}
.stButton>button:hover {
background-color: #127a4d;
}
</style>
""", unsafe_allow_html=True)
# Initialize RAG Engine (cached)
@st.cache_resource
def load_rag_engine():
"""Load and cache RAG engine"""
try:
groq_api_key = os.getenv("GROQ_API_KEY")
if not groq_api_key:
st.error("โ ๏ธ GROQ_API_KEY not found in environment variables. Please set it to use the application.")
st.info("Get your free API key at: https://console.groq.com/")
st.stop()
# Ensure dataset files are downloaded from HF Datasets if needed
# Create a container for download progress that will be cleared after completion
download_container = st.container()
success, files_downloaded = ensure_dataset_files(progress_container=download_container)
if not success:
st.error("โ ๏ธ Failed to load dataset files from Hugging Face Datasets.")
st.info("Please check your internet connection and try again.")
st.stop()
engine = IrelandRAGEngine(
chunks_file="dataset/wikipedia_ireland/chunks.json",
graphrag_index_file="dataset/wikipedia_ireland/graphrag_index.json",
groq_api_key=groq_api_key,
groq_model="llama-3.3-70b-versatile",
use_cache=True
)
return engine
except FileNotFoundError as e:
st.error(f"โ ๏ธ Data files not found: {e}")
st.info("Dataset files should be automatically downloaded from Hugging Face Datasets.\n"
"If the issue persists, please check your internet connection.")
st.stop()
except Exception as e:
st.error(f"โ ๏ธ Error loading RAG engine: {e}")
st.stop()
# Main header
st.markdown('<h1 class="main-header">๐ฎ๐ช GraphWiz Ireland</h1>', unsafe_allow_html=True)
st.markdown("""
<p style="text-align: center; font-size: 1.2em; color: #666; margin-bottom: 2em;">
Intelligent Q&A System powered by GraphRAG, Hybrid Search, and Groq LLM
</p>
""", unsafe_allow_html=True)
# Load RAG engine
with st.spinner("๐ Loading GraphWiz Engine..."):
engine = load_rag_engine()
# Sidebar
with st.sidebar:
st.markdown("### โ๏ธ Settings")
# Retrieval settings
st.markdown("#### Retrieval Configuration")
top_k = st.slider("Number of sources to retrieve", 3, 15, 5, help="More sources = more context but slower")
semantic_weight = st.slider("Semantic search weight", 0.0, 1.0, 0.7, 0.1, help="Higher = prioritize meaning over keywords")
keyword_weight = 1.0 - semantic_weight
# Advanced options
with st.expander("Advanced Options"):
use_community = st.checkbox("Use community context", value=True, help="Include related topic clusters")
show_debug = st.checkbox("Show debug information", value=False, help="Display retrieval details")
st.markdown("---")
# Statistics
st.markdown("#### ๐ System Statistics")
stats = engine.get_stats()
col1, col2 = st.columns(2)
with col1:
st.metric("Knowledge Chunks", f"{stats['total_chunks']:,}")
with col2:
st.metric("Topic Communities", stats['total_communities'])
cache_stats = stats['cache_stats']
st.metric("Cache Hit Rate", cache_stats['hit_rate'])
st.caption(f"Hits: {cache_stats['cache_hits']} | Misses: {cache_stats['cache_misses']}")
if st.button("๐๏ธ Clear Cache"):
engine.clear_cache()
st.success("Cache cleared!")
st.rerun()
st.markdown("---")
# Info
st.markdown("#### โน๏ธ About")
st.info("""
**GraphWiz Ireland** uses:
- ๐ Hybrid search (semantic + keyword)
- ๐ธ๏ธ GraphRAG with community detection
- โก Groq LLM (ultra-fast inference)
- ๐พ Smart caching for instant responses
- ๐ Comprehensive Wikipedia data
""")
st.markdown("---")
st.caption("Built with Streamlit, FAISS, NetworkX, Groq, and spaCy")
# Suggested questions
st.markdown("### ๐ก Try These Questions")
suggested_questions = [
"What is the capital of Ireland?",
"When did Ireland join the European Union?",
"Who is the current president of Ireland?",
"What is the oldest university in Ireland?",
"Tell me about the history of Dublin",
"What are the major cities in Ireland?",
"Explain the Irish language and its history",
"What is Ireland's economy based on?",
"Describe Irish mythology and folklore",
"What are the main political parties in Ireland?"
]
# Display suggested questions as buttons in columns
cols = st.columns(3)
for idx, question in enumerate(suggested_questions):
with cols[idx % 3]:
if st.button(question, key=f"suggested_{idx}", use_container_width=True):
st.session_state.question = question
# Question input
st.markdown("### ๐ Ask Your Question")
question = st.text_input(
"Enter your question about Ireland:",
value=st.session_state.get('question', ''),
placeholder="e.g., What is the history of Irish independence?",
key="question_input"
)
# Search button and results
if st.button("๐ Search", type="primary") or question:
if question and question.strip():
# Display searching indicator
with st.spinner("๐ Searching knowledge base..."):
# Query the RAG engine
result = engine.answer_question(
question=question,
top_k=top_k,
semantic_weight=semantic_weight,
keyword_weight=keyword_weight,
use_community_context=use_community,
return_debug_info=show_debug
)
# Display results
st.markdown("---")
# Response time and cache status
col1, col2, col3 = st.columns([2, 1, 1])
with col1:
cache_indicator = "๐พ Cached" if result['cached'] else "๐ Fresh"
st.caption(f"{cache_indicator} | Response time: {result['response_time']:.2f}s")
with col2:
st.caption(f"Retrieval: {result['retrieval_time']:.2f}s")
with col3:
st.caption(f"Generation: {result['generation_time']:.2f}s")
# Answer
st.markdown("### ๐ฌ Answer")
st.markdown(f'<div class="answer-box">{result["answer"]}</div>', unsafe_allow_html=True)
# Citations
st.markdown("### ๐ Citations & Sources")
for cite in result['citations']:
col1, col2 = st.columns([4, 1])
with col1:
st.markdown(
f'<div class="citation-box">'
f'<strong>[{cite["id"]}]</strong> '
f'<a href="{cite["url"]}" target="_blank">{cite["source"]}</a>'
f'</div>',
unsafe_allow_html=True
)
with col2:
st.caption(f"Score: {cite['relevance_score']:.3f}")
# Related topics (communities)
if result.get('communities'):
st.markdown("### ๐ท๏ธ Related Topics")
for comm in result['communities']:
st.info(f"**Topic Cluster:** {', '.join(comm['top_entities'])}")
# Debug information
if show_debug and result.get('debug'):
st.markdown("---")
st.markdown("### ๐ง Debug Information")
with st.expander("Retrieved Chunks Details", expanded=False):
for chunk in result['debug']['retrieved_chunks']:
st.markdown(f"""
**Rank {chunk['rank']}:** {chunk['source']}
- Semantic: {chunk['semantic_score']} | Keyword: {chunk['keyword_score']} | Combined: {chunk['combined_score']}
- Community: {chunk['community']}
- Preview: {chunk['text_preview']}
""")
st.markdown("---")
cache_stats = result['debug']['cache_stats']
st.metric("Overall Cache Hit Rate", cache_stats['hit_rate'])
else:
st.warning("โ ๏ธ Please enter a question to search.")
# Footer
st.markdown("---")
st.markdown("""
<p style="text-align: center; color: #666; font-size: 0.9em;">
GraphWiz Ireland | Powered by Wikipedia, GraphRAG, and Groq |
<a href="https://github.com/yourusername/graphwiz" target="_blank">GitHub</a>
</p>
""", unsafe_allow_html=True)
|