Spaces:
Sleeping
Sleeping
File size: 28,437 Bytes
7bcd142 1e88950 24766ca 8ab43a3 a75551e 7bcd142 a75551e 8ab43a3 3aa1632 a75551e 8ab43a3 7bcd142 90a2234 7bcd142 8ab43a3 7bcd142 ec8b3ab 7bcd142 8ab43a3 5e019c1 1e88950 8ab43a3 90a2234 5e019c1 1e88950 5e019c1 8ab43a3 5e019c1 7bcd142 8ab43a3 7bcd142 8ab43a3 90a2234 d9974ec 69c0c0a d9974ec 7bcd142 8ab43a3 7bcd142 8ab43a3 7bcd142 90a2234 7bcd142 a75551e d9974ec 90a2234 a75551e d9974ec 8ab43a3 7bcd142 90a2234 7bcd142 d9974ec 8ab43a3 a75551e 7bcd142 69c0c0a 8ab43a3 d9974ec 8ab43a3 7bcd142 8ab43a3 7bcd142 8ab43a3 90a2234 8ab43a3 7bcd142 8ab43a3 24766ca d9974ec 8ab43a3 d9974ec 8ab43a3 d9974ec 8ab43a3 f126517 8ab43a3 7bcd142 8ab43a3 ec8b3ab 8ab43a3 f126517 8ab43a3 f126517 8ab43a3 dac3615 8ab43a3 d5040cf 8ab43a3 5c5ad2b 8ab43a3 d9974ec 8ab43a3 d9974ec 7bcd142 6c97eaf | 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 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 | import os
import torch
import gradio as gr
import time
import re
import codecs
import uuid
import json
import logging
import tempfile
import numpy as np
import scipy.io.wavfile as wavfile
import asyncio
import warnings
from typing import List, Tuple, Generator, Dict
from threading import Thread
# ML / Transformers
import transformers
transformers.utils.logging.set_verbosity_error()
warnings.filterwarnings("ignore", category=UserWarning, module="gradio.components.dropdown")
from transformers import AutoProcessor, Gemma3ForConditionalGeneration, TextIteratorStreamer
# --- Logging Setup ---
# Set root logger to ERROR to suppress external library noise
logging.basicConfig(level=logging.ERROR, format='%(name)s [%(levelname)s] %(message)s')
# Specific library suppressions
for lib in ["transformers", "accelerate", "httpx", "gradio", "langchain"]:
logging.getLogger(lib).setLevel(logging.ERROR)
# Application-level logger
logger = logging.getLogger("app")
logger.setLevel(logging.DEBUG)
logger.propagate = False # DO NOT propagate to root to avoid double-logging or filtering
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
ch.setFormatter(logging.Formatter('[app] [%(levelname)s] %(message)s'))
logger.addHandler(ch)
# --------------------------------------------------------------------
# Konfiguration & Globale States
# --------------------------------------------------------------------
EMBED_MODEL_ID = "google/embeddinggemma-300m"
LLM_MODEL_ID = "google/gemma-3-4b-it"
EMBEDDING_FUNCTION = None
LLM_MODEL = None
LLM_PROCESSOR = None
# --- UI Premium Aesthetics ---
PREMIUM_CSS = """
.glass-panel {
background: rgba(255, 255, 255, 0.05) !important;
backdrop-filter: blur(10px) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 15px !important;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
}
.sidebar-panel {
border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
height: 100vh;
}
border-bottom: 2px solid #0f3460;
}
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 768px) {
.desktop-only { display: none !important; }
.mobile-only { display: block !important; }
.sidebar-panel { display: none !important; }
}
"""
try:
from pypdf import PdfReader
from langchain_community.vectorstores import FAISS
from langchain_huggingface import HuggingFaceEmbeddings
from langchain_core.documents import Document
from langchain_text_splitters import RecursiveCharacterTextSplitter
from mongochain import MongoDBHandler
except ImportError:
pass
# Spiritual Integration
try:
from spiritual_bridge import get_oracle_data
except ImportError:
get_oracle_data = None
# --- Model Loading ---
def get_device() -> torch.device:
if torch.cuda.is_available(): return torch.device("cuda")
return torch.device("cpu")
def get_embedding_function():
global EMBEDDING_FUNCTION
if EMBEDDING_FUNCTION is None:
device = get_device()
logger.debug(f"Initialisiere Embedding-Modell '{EMBED_MODEL_ID}' auf Device '{device}'.")
EMBEDDING_FUNCTION = HuggingFaceEmbeddings(
model_name=EMBED_MODEL_ID,
model_kwargs={'device': device}
)
logger.debug("Embedding-Modell erfolgreich initialisiert.")
return EMBEDDING_FUNCTION
def get_llm():
global LLM_MODEL, LLM_PROCESSOR
if LLM_MODEL is None or LLM_PROCESSOR is None:
device = get_device()
logger.debug(f"Initialisiere LLM '{LLM_MODEL_ID}' auf Device '{device}'.")
dtype = torch.bfloat16 if "cuda" in device.type else torch.float32
LLM_MODEL = Gemma3ForConditionalGeneration.from_pretrained(
LLM_MODEL_ID,
dtype=dtype,
device_map="auto",
).eval()
LLM_PROCESSOR = AutoProcessor.from_pretrained(LLM_MODEL_ID)
logger.debug("LLM und Prozessor erfolgreich initialisiert.")
return LLM_MODEL, LLM_PROCESSOR
# --- Language Detection ---
def detect_language(text: str) -> str:
if not text or len(text) < 3: return "English"
model, processor = get_llm()
prompt = f"Detect the language of the following text and return ONLY the language name (e.g., 'English', 'German', 'French'):\n\n\"{text}\""
messages = [{"role": "user", "content": [{"type": "text", "text": prompt}]}]
inputs = processor.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(model.device)
with torch.no_grad():
outputs = model.generate(inputs, max_new_tokens=20, do_sample=False)
raw_output = processor.batch_decode(outputs[:, inputs.shape[1]:], skip_special_tokens=True)[0].strip()
logger.debug(f"DEBUG: Raw Language Detection Output: '{raw_output}'")
keywords = ["English", "German", "French", "Spanish", "Italian", "Dutch", "Russian", "Chinese", "Japanese"]
for k in keywords:
if k.lower() in raw_output.lower():
logger.debug(f"DEBUG: Detected User Language (Normalized): '{k}'")
return k
return "English"
# --- Document Handling ---
def extract_text_from_file(path: str) -> str:
ext = os.path.splitext(path)[1].lower()
if ext in [".txt", ".md", ".markdown"]:
with open(path, "r", encoding="utf-8", errors="ignore") as f: return f.read()
if ext == ".pdf":
text_parts = []
try:
reader = PdfReader(path)
for page in reader.pages:
page_text = page.extract_text()
if page_text: text_parts.append(page_text)
return "\n\n".join(text_parts)
except Exception as e:
logger.error(f"Error reading PDF {path}: {e}"); return ""
try:
with open(path, "r", encoding="utf-8", errors="ignore") as f: return f.read()
except Exception: return ""
def get_text_splitter() -> RecursiveCharacterTextSplitter:
return RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=200, length_function=len)
# --- RAG Core ---
def index_files(file_paths, mongo_uri, db_name, coll_name, use_mongo, vs_state, mh_state, progress=gr.Progress(track_tqdm=True)):
if not file_paths: return "Keine Dateien zum Indexieren ausgewรคhlt.", vs_state, mh_state
logger.debug(f"Indexierung gestartet fรผr {len(file_paths)} Datei(en).")
embed_fn = get_embedding_function()
splitter = get_text_splitter()
documents = []
for path in progress.tqdm(file_paths, desc="1/2: Dateien verarbeiten"):
if path is None: continue
text = extract_text_from_file(path)
if not text.strip(): continue
chunks = splitter.split_text(text)
source_name = os.path.basename(path)
for c in chunks:
documents.append(Document(page_content=c, metadata={"source": source_name}))
logger.debug(f"Total chunks created: {len(documents)}")
if not documents: return "Kein Text zum Indexieren gefunden.", vs_state, mh_state
progress(0.7, desc="2/2: Indexing...")
new_vs = FAISS.from_documents(documents, embed_fn)
if vs_state:
vs_state.merge_from(new_vs)
else:
vs_state = new_vs
mh_state = None
if use_mongo:
try:
mh_state = MongoDBHandler(uri=mongo_uri, db_name=db_name, collection_name=coll_name)
mh_state.connect()
logger.debug(f"Pushe {len(documents)} Chunks nach MongoDB...")
for doc in documents:
mh_state.insert_chunk(doc.page_content, doc.metadata)
logger.debug("MongoDB-Sync abgeschlossen.")
except Exception as e:
logger.error(f"Mongo Error: {e}")
logger.debug(f"Indexierung abgeschlossen. Gesamt: {vs_state.index.ntotal} Chunks.")
return f"Index aktualisiert: {vs_state.index.ntotal} Chunks insgesamt.", vs_state, mh_state
def clear_index():
import gc; gc.collect()
logger.debug("Vektor-Index wurde geleert.")
return "Index geleert.", None, None
def retrieve_relevant_chunks(query, vs_state, mh_state, top_k=3):
if not vs_state: return []
logger.debug(f"Suche in FAISS: '{query}'")
docs = vs_state.similarity_search(query, k=top_k)
return [{"content": d.page_content, "source": d.metadata.get("source", "Unknown")} for d in docs]
def build_rag_prompt(user_question: str, retrieved_chunks: List[Dict]) -> str:
if not retrieved_chunks: context_str = "Kein relevanter Kontext gefunden."
else:
context_parts = [f"[{i}] (Quelle: {ch['source']}): \"{ch['content']}\"" for i, ch in enumerate(retrieved_chunks, 1)]
context_str = "\n\n".join(context_parts)
return (f"Beantworte die Benutzerfrage nur basierend auf dem Kontext.\n\n"
f"--- Kontext ---\n{context_str}\n\n"
f"--- Frage ---\n{user_question}\n\n"
f"--- Antwort ---")
# --- Agent System ---
def build_agent_prompt(query, context, history, language="English", short_answers=False):
context_str = "\n".join([f"- {c['content']} (Source: {c['source']})" for i, c in enumerate(context)])
style_instruction = "Be concise." if short_answers else ""
system = f"""You are Sage 6.5, a spiritual AI guide.
Respond in {language}. {style_instruction}
If you need to use a tool, you MUST use the following JSON format inside <tool_call> tags:
<tool_call>{{"name": "tool_name", "arguments": {{"arg1": "val1"}}}}</tool_call>
Available Tools:
1. oracle_consultation: Consult the archive for deep wisdom. Arguments: {{"topic": "str", "name": "str (Optional. Use ONLY if the user explicitly stated their name, otherwise omit)"}}
"""
return system + f"\n\nContext:\n{context_str}\n\nUser Question: {query}"
def chat_agent_stream(query, history, vs_state, mh_state, user_lang=None, short_answers=False):
model, processor = get_llm()
lang = user_lang if user_lang else detect_language(query)
context = retrieve_relevant_chunks(query, vs_state, mh_state)
prompt = build_agent_prompt(query, context, history, language=lang, short_answers=short_answers)
messages = [{"role": "user", "content": [{"type": "text", "text": prompt}]}]
logger.info(f"[AGENT] ๐ Starting Agent Loop for Query: '{query}' (Lang: {lang})")
def chat_agent_stream(query, history, vs_state, mh_state, user_lang=None, short_answers=False):
model, processor = get_llm()
lang = user_lang if user_lang else detect_language(query)
context = retrieve_relevant_chunks(query, vs_state, mh_state)
prompt = build_agent_prompt(query, context, history, language=lang, short_answers=short_answers)
messages = [{"role": "user", "content": [{"type": "text", "text": prompt}]}]
logger.info(f"[AGENT] ๐ Starting Agent Loop for Query: '{query}' (Lang: {lang})")
max_turns = 3
for turn in range(max_turns):
logger.info(f"[AGENT] ๐ Turn {turn+1}/{max_turns}")
input_ids = processor.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(model.device)
streamer = TextIteratorStreamer(processor, skip_prompt=True, skip_special_tokens=True)
gen_kwargs = {"input_ids": input_ids, "streamer": streamer, "max_new_tokens": 512, "do_sample": False}
thread = Thread(target=model.generate, kwargs=gen_kwargs)
thread.start()
current_turn_text = ""
# We yield a TUPLE: (accumulated_text_for_THIS_turn, is_final)
# But wait, the wrapper needs to handle new messages.
# Strategy: Yield just the text of THIS turn. Wrapper handles appending to a NEW history item each turn.
logger.info("[AGENT] โณ Streaming response...")
for new_text in streamer:
current_turn_text += new_text
clean_chunk = re.sub(r"<tool_call>.*?</tool_call>", "", current_turn_text, flags=re.DOTALL)
yield clean_chunk.strip()
logger.info(f"[AGENT] ๐ Raw Model Output: {current_turn_text}")
# Tool Detection
tool_match = re.search(r"<tool_call>(.*?)</tool_call>", current_turn_text, re.DOTALL)
if tool_match:
# If tool found, this turn is OVER regarding user output.
# We yield a special signal to indicate "End of Message, Start Next Logic"?
# actually, if we yield, the wrapper updates history[-1].
# If we want a NEW message, we need to tell wrapper to append.
# Simplified: Use a separator? No, wrapper loop is easier.
# For now, let's keep the generator simple.
# It yields text updates for the CURRENT turn.
# Once loop breaks (tool found), we start next turn.
# BUT: How to tell wrapper "This turn is done, start a new bubble"?
# Generator yields: {"text": "...", "new_bubble": True/False}
try:
tool_data = json.loads(tool_match.group(1))
logger.info(f"[AGENT] ๐ ๏ธ Tool Call Detected: {tool_data}")
tool_name = tool_data.get("name")
tool_args = tool_data.get("arguments", {})
if tool_name == "oracle_consultation":
topic = tool_args.get("topic", "")
# Name Handling: Use provided name or default to 'Seeker'
req_name = tool_args.get("name", "").strip()
effective_name = req_name if req_name else "Seeker"
logger.info(f"[AGENT] ๐ฎ Executing Oracle with topic: '{topic}' for '{effective_name}'")
if get_oracle_data:
try:
# Call backend
oracle_raw = get_oracle_data(name=effective_name, topic=topic, date_str="")
# FILTERING LOGIC (User Request: Only 3 sources, no BOS API/ELS)
# We construct a filtered dictionary
filtered_result = {
"wisdom_nodes": oracle_raw.get("wisdom_nodes", [])
}
# If wisdom_nodes is missing/empty, maybe keep raw but warn?
# Use strict filtering as requested.
tool_result = json.dumps(filtered_result, indent=2)
logger.info(f"[AGENT] โ
Oracle Result Obtained (Filtered Size: {len(tool_result)} bytes)")
except Exception as e:
logger.error(f"[AGENT] โ Oracle Backend Error: {e}")
tool_result = f"Error executing oracle: {str(e)}"
else:
logger.warning("[AGENT] โ ๏ธ Oracle module not available")
tool_result = "Oracle module not available."
else:
logger.warning(f"[AGENT] โ ๏ธ Unknown tool requested: {tool_name}")
tool_result = f"Unknown tool: {tool_name}"
messages.append({"role": "assistant", "content": [{"type": "text", "text": current_turn_text}]})
tool_injection = f"""<tool_result>{tool_result}</tool_result>
Now interpret this result soulfully and poetically for the user. Do not mention JSON.
IMPORTANT: Connect this smoothly to your previous statement. Ensure a fluid, cohesive narrative without abrupt jumps."""
logger.info("[AGENT] ๐ Injecting Tool Result into context for interpretation...")
messages.append({"role": "user", "content": [{"type": "text", "text": tool_injection}]})
# Yield a special marker to say "Turn Finished"
yield "__TURN_END__"
continue
except Exception as e:
logger.error(f"[AGENT] ๐ฅ Tool parsing/logic crash: {e}")
break
else:
logger.info("[AGENT] โจ No tool calls. Finalizing response.")
break
# --- Voice Engine ---
async def generate_speech(text: str, lang: str = "English"):
import edge_tts
VOICES = {"English": "en-US-GuyNeural", "German": "de-DE-ConradNeural", "French": "fr-FR-HenriNeural"}
voice = VOICES.get(lang, VOICES["English"])
logger.debug(f"TRACE: generate_speech() called. Text len: {len(text)}, Lang: {lang}")
temp_wav = tempfile.NamedTemporaryFile(delete=False, suffix=".mp3")
communicate = edge_tts.Communicate(text, voice)
await communicate.save(temp_wav.name)
return temp_wav.name
def transcribe_audio(path: str):
logger.debug(f"TRACE: transcribe_audio() called with path: {path}")
return "Transcribed text"
# --- Gradio Wrappers ---
def voice_chat_wrapper(audio_path, history, threads, tid, vs_state, mh_state, short_answers):
if audio_path is None: yield history, threads, gr.update(), gr.update(), None; return
text = transcribe_audio(audio_path)
detected_lang = detect_language(text)
final_history, final_threads, final_update = history, threads, gr.update()
if text:
gen = chat_wrapper(text, history, threads, tid, vs_state, mh_state, short_answers=short_answers, lang=detected_lang)
for h, t, tr1, tr2, _ in gen:
final_history, final_threads, final_update = h, t, tr1
yield h, t, tr1, tr2, None
import asyncio
last_msg = final_history[-1]["content"] if final_history else ""
if last_msg:
voice_path = asyncio.run(generate_speech(last_msg, lang=detected_lang))
yield final_history, final_threads, final_update, final_update, voice_path
else:
yield final_history, final_threads, final_update, final_update, None
def chat_wrapper(message, history, threads, tid, vs_state, mh_state, short_answers=False, lang=None):
if not message.strip():
upd = gr.update(choices=[(v["title"], k) for k, v in threads.items()], value=tid)
yield history, threads, upd, upd, None
return
history.append({"role": "user", "content": message})
yield history, threads, gr.update(), gr.update(), None
# Start first response bubble
history.append({"role": "assistant", "content": ""})
for response_part in chat_agent_stream(message, history[:-2], vs_state, mh_state, user_lang=lang, short_answers=short_answers):
if response_part == "__TURN_END__":
# Start NEW bubble for next turn
history.append({"role": "assistant", "content": ""})
yield history, threads, gr.update(), gr.update(), None
else:
history[-1]["content"] = response_part
yield history, threads, gr.update(), gr.update(), None
# Cleanup empty bubble if exists (rare edge case)
if not history[-1]["content"]: history.pop()
if tid not in threads: threads[tid] = {"title": "Conversation", "history": []}
threads[tid]["history"] = history
if len(history) <= 2:
threads[tid]["title"] = (message[:25] + "..") if message else "Conversation"
choices = [(v["title"], k) for k, v in threads.items()]
upd = gr.update(choices=choices, value=tid)
yield history, threads, upd, upd, None
def stream_handler(stream, state):
if stream is None: return state, None
sr, y = stream
if y is None or len(y) == 0: return state, None
y = y.astype(np.float32)
y = y / np.max(np.abs(y)) if np.max(np.abs(y)) > 0 else y
rms = np.sqrt(np.mean(y**2))
SILENCE_THRESHOLD, SILENCE_CHUNKS = 0.01, 20
if state is None: state = {"buffer": [], "silence_counter": 0, "is_speaking": False}
state["buffer"].append((sr, stream[1]))
if rms > SILENCE_THRESHOLD:
state["is_speaking"], state["silence_counter"] = True, 0
elif state["is_speaking"]:
state["silence_counter"] += 1
if state["is_speaking"] and state["silence_counter"] > SILENCE_CHUNKS:
full_audio = np.concatenate([c[1] for c in state["buffer"]])
sr_final = state["buffer"][0][0]
temp_wav = tempfile.NamedTemporaryFile(delete=False, suffix=".wav")
wavfile.write(temp_wav.name, sr_final, full_audio)
return {"buffer": [], "silence_counter": 0, "is_speaking": False}, temp_wav.name
return state, None
# --- INTERNAL CALLBACKS ---
def create_new_thread_callback(threads):
nid = str(uuid.uuid4())
threads[nid] = {"title": "New Conversation", "history": []}
choices = [(v["title"], k) for k, v in threads.items()]
return threads, nid, gr.update(choices=choices, value=nid), []
def switch_thread(tid, t_state):
logger.debug(f"TRACE: switch_thread() called for tid: {tid}")
if isinstance(tid, list):
if not tid: return [], gr.update(), gr.update(), gr.update()
tid = tid[0]
tid = str(tid)
history = t_state.get(tid, {}).get("history", [])
choices = [(v["title"], k) for k, v in t_state.items()]
upd = gr.update(value=tid, choices=choices)
return history, tid, upd, upd
def session_import_handler(file):
if not file: return [], {}, None, gr.update(), gr.update()
with open(file.name, "r") as f: data = json.load(f)
imported_threads = data.get("threads", {})
active_id = data.get("active_id", list(imported_threads.keys())[0] if imported_threads else None)
history = imported_threads.get(active_id, {}).get("history", []) if active_id else []
choices = [(v["title"], k) for k, v in imported_threads.items()]
upd = gr.update(choices=choices, value=active_id)
return history, imported_threads, active_id, upd, upd
def session_export_handler(chatbot_val, threads, active_id):
export_data = {"threads": threads, "active_id": active_id}
path = "sage_session_export.json"
with open(path, "w") as f: json.dump(export_data, f, indent=2)
return path
def build_demo() -> gr.Blocks:
initial_thread_id = str(uuid.uuid4())
with gr.Blocks(title="Gemma 3 Sage v6.5 SP1", theme="soft", css=PREMIUM_CSS) as demo:
threads_state = gr.State({initial_thread_id: {"title": "New Chat", "history": []}})
active_thread_id = gr.State(initial_thread_id)
vector_store_state = gr.State(None)
mongo_handler_state = gr.State(None)
with gr.Row(elem_classes="header-tray"):
gr.Markdown("# ๐ Gemma 3 Sage <small>v6.5 SP1</small>")
with gr.Row():
# Desktop Sidebar (Radio List)
with gr.Column(scale=1, variant="panel", elem_classes="sidebar-panel glass-panel desktop-only"):
gr.Markdown("### ๐ Recent Chats")
# Using Radio as a list selector
thread_list = gr.Radio(choices=[(f"New Chat", initial_thread_id)], value=initial_thread_id, label=None, interactive=True, container=False)
new_thread_btn = gr.Button("โ New Conversation", variant="secondary")
with gr.Column(scale=4):
with gr.Tabs() as tabs:
with gr.Tab("๐ฌ Live Conversation", id=0, elem_classes="glass-panel"):
# Mobile Menu (Accordion + Dropdown)
with gr.Accordion("๐ Conversations (Mobile)", open=False, visible=True, elem_classes="mobile-only") as mobile_sessions:
m_thread_list = gr.Dropdown(choices=[("New Chat", initial_thread_id)], value=initial_thread_id, label="Select Session")
m_new_btn = gr.Button("โ New Conversation", variant="secondary")
chatbot = gr.Chatbot(label="Sage", type="messages", height=600, show_label=False, autoscroll=False)
with gr.Row():
msg_textbox = gr.Textbox(placeholder="Whisper your heart or type...", label=None, scale=8, container=False)
submit_btn = gr.Button("Send", variant="primary", scale=1)
# Moved Short Answer checkbox here for visibility
with gr.Row():
short_ans_cb = gr.Checkbox(label="Short Answers", value=False)
with gr.Row():
stream_state = gr.State({"buffer": [], "silence_counter": 0, "is_speaking": False})
audio_input = gr.Audio(label="Voice", sources="microphone", type="numpy", streaming=True)
processed_audio, audio_output = gr.State(None), gr.Audio(label="Sage Voice", autoplay=True, visible=False)
with gr.Row(elem_classes="glass-panel"):
export_btn = gr.Button("๐ค Export Session", variant="secondary", size="sm")
import_file = gr.File(label="Import", file_count="single", height=60)
export_file = gr.File(label="Download", interactive=False, visible=False)
with gr.Tab("๐ Sacred Knowledge", id=1, elem_classes="glass-panel"):
file_uploader = gr.File(label="Upload", file_count="multiple", type="filepath")
index_button = gr.Button("๐ Sync Index", variant="primary")
index_status = gr.Markdown("Bereit.")
with gr.Accordion("โ๏ธ MongoDB Settings", open=False):
mongo_uri = gr.Textbox(label="URI", value="mongodb://localhost:27017/")
mongo_db = gr.Textbox(label="DB", value="rag_db")
mongo_coll = gr.Textbox(label="Coll", value="gemma_chunks")
use_mongo_cb = gr.Checkbox(label="Sync to Mongo", value=True)
clear_mongo_btn = gr.Button("๐๏ธ Clear Mongo")
clear_idx_btn = gr.Button("๐งน Clear FAISS", variant="stop")
clear_mongo_btn.click(lambda u, d, c: MongoDBHandler(u, d, c).connect() and MongoDBHandler(u, d, c).clear() or "Mongo geleert", [mongo_uri, mongo_db, mongo_coll], index_status)
audio_input.stream(stream_handler, [audio_input, stream_state], [stream_state, processed_audio])
processed_audio.change(voice_chat_wrapper, [processed_audio, chatbot, threads_state, active_thread_id, vector_store_state, mongo_handler_state, short_ans_cb], [chatbot, threads_state, thread_list, m_thread_list, audio_output])
msg_textbox.submit(chat_wrapper, [msg_textbox, chatbot, threads_state, active_thread_id, vector_store_state, mongo_handler_state, short_ans_cb], [chatbot, threads_state, thread_list, m_thread_list, audio_output]).then(lambda: "", None, msg_textbox)
submit_btn.click(chat_wrapper, [msg_textbox, chatbot, threads_state, active_thread_id, vector_store_state, mongo_handler_state, short_ans_cb], [chatbot, threads_state, thread_list, m_thread_list, audio_output]).then(lambda: "", None, msg_textbox)
new_thread_btn.click(create_new_thread_callback, [threads_state], [threads_state, active_thread_id, thread_list, chatbot])
m_new_btn.click(create_new_thread_callback, [threads_state], [threads_state, active_thread_id, m_thread_list, chatbot])
thread_list.change(switch_thread, [thread_list, threads_state], [chatbot, active_thread_id, thread_list, m_thread_list])
m_thread_list.change(switch_thread, [m_thread_list, threads_state], [chatbot, active_thread_id, thread_list, m_thread_list])
index_button.click(index_files, [file_uploader, mongo_uri, mongo_db, mongo_coll, use_mongo_cb, vector_store_state, mongo_handler_state], [index_status, vector_store_state, mongo_handler_state], show_progress="full")
clear_idx_btn.click(clear_index, outputs=[index_status, vector_store_state, mongo_handler_state], show_progress="full")
import_file.change(session_import_handler, import_file, [chatbot, threads_state, active_thread_id, thread_list, m_thread_list], show_progress="full")
export_btn.click(session_export_handler, [chatbot, threads_state, active_thread_id], export_file, show_progress="full").then(lambda: gr.update(visible=True), None, export_file)
return demo
if __name__ == "__main__":
get_llm(); build_demo().launch(server_name="0.0.0.0")
|