Spaces:
Runtime error
Runtime error
File size: 19,490 Bytes
b2b3e33 316cf14 6c3745d 316cf14 b2b3e33 7f6c0f8 b2b3e33 0f22b48 92e7d3c 0f22b48 ee9bbab b2b3e33 bf9dd6e a5694fd bf9dd6e 316cf14 059d669 316cf14 b2b3e33 bf9dd6e b2b3e33 1d3ab4b b2b3e33 bf9dd6e b2b3e33 316cf14 7cf833b 258ff84 b9465cb 7cf833b b9465cb 8a02150 b9465cb 316cf14 8a02150 b9465cb 316cf14 a5694fd b9465cb 316cf14 b9465cb 316cf14 b9465cb 8a02150 | 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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 | import os
import re
import json
import numpy as np
import streamlit as st
from typing import List, Dict, Any, Tuple
from sentence_transformers import SentenceTransformer
from sklearn.metrics.pairwise import cosine_similarity
from huggingface_hub import InferenceClient
###### Import search engine from directory
from simple_search_engine.search_engine import SimpleSearchEngine
######
# --- Configuration & Constants ---
PAGE_TITLE = "Manga & TV Assistant"
DATA_DIRECTORY = "corpus"
CACHE_FILE = "/home/user/app/embeddings_cache.npz" # Cache file path
DEFAULT_LLM_MODEL = "meta-llama/Llama-3.1-8B-Instruct"
EMBEDDING_MODEL_NAME = "sentence-transformers/all-MiniLM-L6-v2"
# System Instructions
SYSTEM_PROMPT = HYDE_SYSTEM_PROMPT =(
"You are a helpful assistant that answers questions about a manga and tv-series called One Piece. "
"Be brief and concise. Provide your answers in 200 words or less."
)
# HYDE_SYSTEM_PROMPT = (
# "You are a helpful assistant that generates a hypothetical answer to the user's question. "
# "Be brief and concise. Provide your answer in 100 words or less."
# )
st.set_page_config(page_title=PAGE_TITLE, layout="wide")
##### Added - embeddings saved once in cache and removed from initialization
@st.cache_resource
def load_embedding_model():
return SentenceTransformer(EMBEDDING_MODEL_NAME, device="cpu")
#####
###### Added - Radio button to switch between simple search engine and RAG agent
def render_mode_selector():
with st.sidebar:
st.header("Mode")
mode = st.radio(
"Select application mode",
["RAG Chat", "Search engine"],
key="app_mode")
st.divider()
return mode
#####
# --- Helper Functions: Data Loading & Processing ---
def load_texts_from_directory(base_dir: str) -> Dict[str, Dict]:
"""
Recursively loads JSON files from a directory.
Returns a dict: {file_path: JSON_DATA}
"""
docs_data = {}
if not os.path.exists(base_dir):
st.error(f"Directory not found: {base_dir}")
return docs_data
# print(f"Scanning directory: {base_dir}")
for root, _, files in os.walk(base_dir):
for file in files:
if file.lower().endswith(".json"):
file_path = os.path.join(root, file)
try:
with open(file_path, "r", encoding="utf-8") as f:
data = json.load(f)
# We specifically want the transformers text for RAG
text = data.get("transformers_text", "").strip()
if text:
docs_data[file_path] = data
except Exception as e:
print(f"Could not read {file_path}: {e}")
return docs_data
def split_text_into_sentences(text: str) -> List[str]:
pattern = r'(?<=[.?!;:])\s+|\n'
return [s.strip() for s in re.split(pattern, text) if s.strip()]
def create_rolling_chunks(sentences: List[str], min_window: int, max_window: int, start_idx: int) -> Tuple[
List[str], List[List[int]]]:
doc_chunks = []
doc_chunk_ids = []
n_sentences = len(sentences)
if n_sentences < min_window:
chunk = " ".join(sentences)
doc_chunks.append(chunk)
doc_chunk_ids.append(list(range(start_idx, start_idx + n_sentences)))
return doc_chunks, doc_chunk_ids
actual_max = min(max_window, n_sentences)
actual_min = min(min_window, actual_max)
for window_size in range(actual_min, actual_max + 1):
for i in range(n_sentences - window_size + 1):
chunk = " ".join(sentences[i: i + window_size]).strip()
if chunk:
doc_chunks.append(chunk)
global_indices = list(range(start_idx + i, start_idx + i + window_size))
doc_chunk_ids.append(global_indices)
return doc_chunks, doc_chunk_ids
# --- Core Logic: Embeddings & Search ---
def process_documents_and_embed():
"""
Loads documents, splits them, and calculates embeddings.
Uses a local cache file to speed up subsequent runs.
"""
# 1. Check for Cache
force_reload = st.session_state.get('force_reindex', False)
if not force_reload and os.path.exists(CACHE_FILE):
try:
with st.spinner("Loading cached embeddings..."):
data = np.load(CACHE_FILE, allow_pickle=True)
st.session_state['all_sentences'] = data['all_sentences'].tolist()
st.session_state['rag_chunks'] = data['rag_chunks'].tolist()
st.session_state['rag_chunk_ids'] = data['rag_chunk_ids'].tolist()
st.session_state['chunk_doc_paths'] = data['chunk_doc_paths'].tolist()
st.session_state['doc_embeddings'] = data['doc_embeddings']
st.toast(f"Loaded {len(st.session_state['doc_embeddings'])} embeddings from cache.")
return # Exit early if cache loaded successfully
except Exception as e:
st.error(f"Error loading cache: {e}. Re-indexing...")
# Fall through to standard processing if cache load fails
# 2. Standard Processing (if no cache or force reload)
if 'rag_docs' not in st.session_state or not st.session_state['rag_docs']:
st.warning("No documents loaded.")
return
with st.spinner("Processing and Embedding documents (this may take a while)..."):
all_sentences = []
all_chunks = []
all_chunk_ids = []
doc_path_map = [] # Maps chunk index to document path
# A. Process Text
for doc_path, doc_data in st.session_state['rag_docs'].items():
text_content = doc_data.get("transformers_text", "")
sentences = split_text_into_sentences(text_content)
if not sentences:
continue
current_sentence_idx = len(all_sentences)
all_sentences.extend(sentences)
chunks, chunk_ids = create_rolling_chunks(
sentences,
st.session_state['min_window_size'],
st.session_state['max_window_size'],
current_sentence_idx
)
all_chunks.extend(chunks)
all_chunk_ids.extend(chunk_ids)
doc_path_map.extend([doc_path] * len(chunks))
# B. Generate Embeddings
if all_chunks:
model = st.session_state['embeddings_model']
embeddings = model.encode(all_chunks)
st.session_state['all_sentences'] = all_sentences
st.session_state['rag_chunks'] = all_chunks
st.session_state['rag_chunk_ids'] = all_chunk_ids
st.session_state['chunk_doc_paths'] = doc_path_map
st.session_state['doc_embeddings'] = np.array(embeddings)
# C. Save to Cache
try:
np.savez_compressed(
CACHE_FILE,
all_sentences=np.array(all_sentences),
rag_chunks=np.array(all_chunks),
rag_chunk_ids=np.array(all_chunk_ids, dtype=object),
chunk_doc_paths=np.array(doc_path_map),
doc_embeddings=st.session_state['doc_embeddings']
)
st.toast(f"Encoded and cached {len(all_chunks)} chunks!")
except Exception as e:
st.error(f"Could not save cache: {e}")
# Reset force flag
if 'force_reindex' in st.session_state:
st.session_state['force_reindex'] = False
else:
st.error("No valid text chunks found to embed.")
def find_similar_context(query: str) -> Dict[str, Any]:
if st.session_state.get('doc_embeddings') is None:
return {'indices': [], 'max_sim': 0.0, 'sentences': [], 'sources': set()}
model = st.session_state['embeddings_model']
query_embedding = model.encode([query])
similarities = cosine_similarity(query_embedding, st.session_state['doc_embeddings']).flatten()
if similarities.size == 0:
return {'indices': [], 'max_sim': 0.0, 'sentences': [], 'sources': set()}
sorted_indices = similarities.argsort()[::-1]
selected_chunk_indices = []
selected_sentence_indices = set()
found_sources = set()
max_sim = float(similarities[sorted_indices[0]]) if sorted_indices.size > 0 else 0.0
for idx in sorted_indices:
if len(selected_sentence_indices) >= st.session_state['nof_keep_sentences']:
break
# Track sources (URLs)
path = st.session_state['chunk_doc_paths'][idx]
if path in st.session_state['rag_docs']:
url = st.session_state['rag_docs'][path].get("url", "Unknown")
found_sources.add(url)
chunk_sentence_ids = st.session_state['rag_chunk_ids'][idx]
selected_chunk_indices.append(int(idx))
selected_sentence_indices.update(chunk_sentence_ids)
return {
'chunk_indices': selected_chunk_indices,
'sentence_indices': sorted(list(selected_sentence_indices)),
'max_similarity': max_sim,
'sources': found_sources
}
# --- LLM Interaction ---
def get_hf_client():
token = os.getenv("HF_TOKEN")
if st.session_state.get('space_id'):
token = None
return InferenceClient(st.session_state['llm_model_name'], token=token)
def query_llm(messages: List[Dict], max_tokens: int = 512) -> str:
client = get_hf_client()
response_text = ""
try:
stream = client.chat.completions.create(
messages=messages,
model=st.session_state['llm_model_name'],
stream=True,
max_tokens=max_tokens
)
for chunk in stream:
content = chunk.choices[0].delta.content
if content:
response_text += content
return response_text.strip()
except Exception as e:
return f"Error communicating with LLM: {str(e)}"
def generate_rag_response(query: str, sentence_indices: List[int], sources: set) -> Tuple[str, Dict]:
if not sentence_indices:
return "No relevant information found.", {}
MAX_CONTEXT_CHARS = 120000
context_parts = []
current_char_count = 0
for idx in sentence_indices:
sentence = st.session_state['all_sentences'][idx]
if current_char_count + len(sentence) < MAX_CONTEXT_CHARS:
context_parts.append(sentence)
current_char_count += len(sentence)
else:
break
context_text = "\n".join(context_parts)
augmented_prompt = (
f"Context information:\n\n{context_text}\n\n"
f"Based on the above context, answer this question: {query}\n"
"If the context doesn't contain relevant information, say you don't know based on the available information."
)
messages = st.session_state['chat_history'] + [{"role": "user", "content": augmented_prompt}]
response = query_llm(messages, max_tokens=1024)
retrieval_meta = {
"context_length_chars": len(context_text),
"sentences_retrieved": len(sentence_indices),
"sources_count": len(sources)
}
return response, retrieval_meta
def run_hyde_process(query: str) -> Tuple[str, str, Dict, float]:
hyde_messages = [
{"role": "system", "content": HYDE_SYSTEM_PROMPT},
{"role": "user", "content": query}
]
hypothetical_answer = query_llm(hyde_messages)
sim_results = find_similar_context(hypothetical_answer)
if sim_results['max_similarity'] > st.session_state['similarity_threshold'] and sim_results['sentence_indices']:
final_response, _ = generate_rag_response(query, sim_results['sentence_indices'], sim_results['sources'])
else:
final_response = (
f"HyDE couldn't find relevant information. Similarity ({sim_results['max_similarity']:.2f}) "
f"is below threshold ({st.session_state['similarity_threshold']})."
)
return final_response, hypothetical_answer, sim_results, sim_results['max_similarity']
# --- Session State Management ---
def initialize_session_state():
defaults = {
'llm_model_name': DEFAULT_LLM_MODEL,
'space_id': os.environ.get("SPACE_ID"),
#####'embeddings_model': SentenceTransformer(EMBEDDING_MODEL_NAME),
'min_window_size': 5,
'max_window_size': 10,
'similarity_threshold': 0.25,
'nof_keep_sentences': 20,
'chat_history': [{"role": "system", "content": SYSTEM_PROMPT}],
'hyde_history': [],
'rag_docs': None,
'all_sentences': [],
'doc_embeddings': None,
'chunk_doc_paths': [],
'last_std_sources': set(),
'last_hyde_sources': set(),
'last_hyde_hypothetical': "",
'force_reindex': False # Flag for re-indexing
}
for key, value in defaults.items():
if key not in st.session_state:
st.session_state[key] = value
if st.session_state['rag_docs'] is None:
st.session_state['rag_docs'] = load_texts_from_directory(DATA_DIRECTORY)
##### Added
if "embeddings_model" not in st.session_state:
st.session_state["embeddings_model"] = load_embedding_model()
# --- UI Components ---
def render_sidebar():
with st.sidebar:
st.header("Settings")
# New Re-index Button
if st.button("Re-index Database", help="Recalculate embeddings and update cache."):
st.session_state['force_reindex'] = True
st.rerun()
if st.button("Clear History"):
st.session_state['chat_history'] = [{"role": "system", "content": SYSTEM_PROMPT}]
st.session_state['hyde_history'] = []
st.session_state['last_std_sources'] = set()
st.session_state['last_hyde_sources'] = set()
st.session_state['last_hyde_hypothetical'] = ""
st.rerun()
st.divider()
st.header("Inspection")
# Display Standard RAG Sources
st.subheader("Standard RAG Sources")
if st.session_state['last_std_sources']:
for url in st.session_state['last_std_sources']:
st.markdown(f"- [{url}]({url})")
else:
st.caption("No sources available yet.")
st.divider()
# Display HyDE RAG Sources
st.subheader("HyDE RAG Sources")
if st.session_state['last_hyde_sources']:
for url in st.session_state['last_hyde_sources']:
st.markdown(f"- [{url}]({url})")
else:
st.caption("No HyDE sources available yet.")
st.divider()
# Display HyDE Hypothetical
st.subheader("HyDE Hypothetical")
if st.session_state['last_hyde_hypothetical']:
with st.expander("Show Hypothetical Doc", expanded=True):
st.markdown(st.session_state['last_hyde_hypothetical'])
else:
st.caption("No hypothetical document generated yet.")
def render_chat_interface():
container = st.container(height=500)
container.chat_message("ai", avatar=":material/robot_2:").markdown("Hello, how can I help you today?")
for msg in st.session_state['chat_history']:
if msg['role'] == "user":
container.chat_message("user", avatar=":material/psychology_alt:").markdown(msg['content'])
elif msg['role'] == "assistant":
if msg.get('type') == 'hyde':
with container.expander("🔍 **HyDE Response**"):
st.markdown(msg['content'])
elif msg.get('type') == 'normal':
container.chat_message("ai", avatar=":material/robot_2:").markdown(
f"**Standard RAG:** {msg['content']}")
return container
# --- Main Application Execution ---
###### Replaced below and indented once to the right - Mode check
#initialize_session_state()
#if st.session_state['doc_embeddings'] is None:
# process_documents_and_embed()
#render_sidebar()
#msg_container = render_chat_interface()
######
mode = render_mode_selector()
if mode == "RAG Chat":
initialize_session_state()
if st.session_state['doc_embeddings'] is None:
process_documents_and_embed()
render_sidebar()
msg_container = render_chat_interface()
if prompt := st.chat_input("Ask a question..."):
msg_container.chat_message("user", avatar=":material/psychology_alt:").markdown(prompt)
col1, col2 = msg_container.columns(2)
with col1:
with st.spinner("Standard RAG..."):
sim_results = find_similar_context(prompt)
if sim_results['max_similarity'] > st.session_state['similarity_threshold']:
std_response, _ = generate_rag_response(prompt, sim_results['sentence_indices'], sim_results['sources'])
else:
std_response = f"Low similarity ({sim_results['max_similarity']:.2f}). No relevant info found."
st.markdown("### Standard RAG")
st.markdown(std_response)
with col2:
with st.spinner("HyDE processing..."):
hyde_response, hyde_hypothetical, hyde_sim_results, hyde_score = run_hyde_process(prompt)
st.markdown("### HyDE Response")
st.markdown(hyde_response)
# Save history
st.session_state['chat_history'].append({"role": "user", "content": prompt})
st.session_state['chat_history'].append({"role": "assistant", "content": std_response, "type": "normal"})
st.session_state['chat_history'].append({"role": "assistant", "content": hyde_response, "type": "hyde"})
# Update Session State for Sidebar
st.session_state['last_std_sources'] = sim_results.get('sources', set())
st.session_state['last_hyde_sources'] = hyde_sim_results.get('sources', set())
st.session_state['last_hyde_hypothetical'] = hyde_hypothetical
# Rerun to update sidebar immediately
st.rerun()
###### Added Search engine logic
if mode == "Search engine":
if "tfidf_engine" not in st.session_state:
engine = SimpleSearchEngine(corpus_dir="corpus")
engine.build_index()
st.session_state["tfidf_engine"] = engine
st.title("Search Engine")
search_mode = st.radio(
"Search method",
["TF-IDF", "BM25", "Hybrid"],
horizontal=True
)
alpha = None
if search_mode == "Hybrid":
alpha = st.slider(
"Hybrid weight (TF-IDF ↔ BM25)",
min_value=0.0,
max_value=1.0,
value=0.5,
step=0.05
)
query = st.text_input("Search", placeholder="Search the One Piece corpus…")
if query:
engine = st.session_state["tfidf_engine"]
if search_mode == "TF-IDF":
results = engine.search(query, top_k=5)
elif search_mode == "BM25":
results = engine.search_bm25(query, top_k=5)
else:
results = engine.search_hybrid(query, top_k=5, alpha=alpha)
if not results:
st.info("No results found.")
else:
st.caption("Top 5 relevant pages")
for i, r in enumerate(results, start=1):
st.markdown(f"### {i}. {r['title']}")
st.caption(f"Relevance score: {r['score']:.4f}")
if r.get("url"):
st.markdown(r["url"])
st.divider()
|