import streamlit as st import requests import uuid import os import json import re import yaml from datetime import datetime from pathlib import Path from dotenv import load_dotenv # --- CONFIGURATION --- load_dotenv() API_BASE_URL = os.getenv("MINDNET_API_URL", "http://localhost:8002") CHAT_ENDPOINT = f"{API_BASE_URL}/chat" FEEDBACK_ENDPOINT = f"{API_BASE_URL}/feedback" HISTORY_FILE = Path("data/logs/search_history.jsonl") # Timeout Strategy timeout_setting = os.getenv("MINDNET_API_TIMEOUT") or os.getenv("MINDNET_LLM_TIMEOUT") API_TIMEOUT = float(timeout_setting) if timeout_setting else 300.0 # --- PAGE SETUP --- st.set_page_config(page_title="mindnet v2.3.2", page_icon="π§ ", layout="wide") # --- CSS STYLING --- st.markdown(""" """, unsafe_allow_html=True) # --- SESSION STATE --- if "messages" not in st.session_state: st.session_state.messages = [] if "user_id" not in st.session_state: st.session_state.user_id = str(uuid.uuid4()) # --- HELPER FUNCTIONS --- def normalize_meta_and_body(meta, body): """ Sanitizer: Stellt sicher, dass nur erlaubte Felder im Frontmatter bleiben. Alles andere wird in den Body verschoben (Repair-Strategie). """ ALLOWED_KEYS = {"title", "type", "status", "tags", "id", "created", "updated", "aliases", "lang"} clean_meta = {} extra_content = [] # 1. Title/Titel Normalisierung if "titel" in meta and "title" not in meta: meta["title"] = meta.pop("titel") # 2. Tags Normalisierung (Synonyme) tag_candidates = ["tags", "emotionale_keywords", "keywords", "schluesselwoerter"] all_tags = [] for key in tag_candidates: if key in meta: val = meta[key] if isinstance(val, list): all_tags.extend(val) elif isinstance(val, str): all_tags.extend([t.strip() for t in val.split(",")]) # 3. Filterung und Verschiebung for key, val in meta.items(): if key in ALLOWED_KEYS: clean_meta[key] = val elif key in tag_candidates: pass # Schon oben behandelt else: # Unerlaubtes Feld (z.B. 'situation') -> Ab in den Body! if val and isinstance(val, str): header = key.replace("_", " ").title() extra_content.append(f"## {header}\n{val}\n") if all_tags: clean_meta["tags"] = list(set(all_tags)) # 4. Body Zusammenbau if extra_content: new_section = "\n".join(extra_content) final_body = f"{new_section}\n{body}" else: final_body = body return clean_meta, final_body def parse_markdown_draft(full_text): """ Robustes Parsing + Sanitization. """ clean_text = full_text # Codeblock entfernen pattern_block = r"```(?:markdown|md)?\s*(.*?)\s*```" match_block = re.search(pattern_block, full_text, re.DOTALL | re.IGNORECASE) if match_block: clean_text = match_block.group(1).strip() # Frontmatter splitten parts = re.split(r"^---+\s*$", clean_text, maxsplit=2, flags=re.MULTILINE) meta = {} body = clean_text if len(parts) >= 3: yaml_str = parts[1] body_candidate = parts[2] try: parsed = yaml.safe_load(yaml_str) if isinstance(parsed, dict): meta = parsed body = body_candidate.strip() except Exception: pass return normalize_meta_and_body(meta, body) def build_markdown_doc(meta, body): """Baut das finale Dokument zusammen.""" if "id" not in meta or meta["id"] == "generated_on_save": safe_title = re.sub(r'[^a-zA-Z0-9]', '-', meta.get('title', 'note')).lower()[:30] meta["id"] = f"{datetime.now().strftime('%Y%m%d')}-{safe_title}-{uuid.uuid4().hex[:4]}" meta["updated"] = datetime.now().strftime("%Y-%m-%d") # Sortierung fΓΌr UX ordered_meta = {} prio_keys = ["id", "type", "title", "status", "tags"] for k in prio_keys: if k in meta: ordered_meta[k] = meta.pop(k) ordered_meta.update(meta) try: yaml_str = yaml.dump(ordered_meta, default_flow_style=None, sort_keys=False, allow_unicode=True).strip() except: yaml_str = "error: generating_yaml" return f"---\n{yaml_str}\n---\n\n{body}" def load_history_from_logs(limit=10): queries = [] if HISTORY_FILE.exists(): try: with open(HISTORY_FILE, "r", encoding="utf-8") as f: lines = f.readlines() for line in reversed(lines): try: entry = json.loads(line) q = entry.get("query_text") if q and q not in queries: queries.append(q) if len(queries) >= limit: break except: continue except: pass return queries def send_chat_message(message: str, top_k: int, explain: bool): try: response = requests.post( CHAT_ENDPOINT, json={"message": message, "top_k": top_k, "explain": explain}, timeout=API_TIMEOUT ) response.raise_for_status() return response.json() except Exception as e: return {"error": str(e)} def submit_feedback(query_id, node_id, score, comment=None): try: requests.post(FEEDBACK_ENDPOINT, json={"query_id": query_id, "node_id": node_id, "score": score, "comment": comment}, timeout=2) st.toast(f"Feedback ({score}) gesendet!") except: pass # --- UI COMPONENTS --- def render_sidebar(): with st.sidebar: st.title("π§ mindnet") st.caption("v2.3.2 | WP-10 UI") mode = st.radio("Modus", ["π¬ Chat", "π Manueller Editor"], index=0) st.divider() st.subheader("βοΈ Settings") top_k = st.slider("Quellen (Top-K)", 1, 10, 5) explain = st.toggle("Explanation Layer", True) st.divider() st.subheader("π Verlauf") for q in load_history_from_logs(8): if st.button(f"π {q[:25]}...", key=f"hist_{q}", use_container_width=True): st.session_state.messages.append({"role": "user", "content": q}) st.rerun() return mode, top_k, explain def render_draft_editor(msg): qid = msg.get('query_id', str(uuid.uuid4())) key_base = f"draft_{qid}" # 1. Init if f"{key_base}_init" not in st.session_state: meta, body = parse_markdown_draft(msg["content"]) st.session_state[f"{key_base}_type"] = meta.get("type", "default") st.session_state[f"{key_base}_title"] = meta.get("title", "") tags_raw = meta.get("tags", []) st.session_state[f"{key_base}_tags"] = ", ".join(tags_raw) if isinstance(tags_raw, list) else str(tags_raw) st.session_state[f"{key_base}_body"] = body.strip() st.session_state[f"{key_base}_meta"] = meta st.session_state[f"{key_base}_init"] = True # 2. UI st.markdown(f'