File size: 10,115 Bytes
f6ffd15 83892b0 | 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 | """
app.py — RoCodex (Streamlit version)
────────────────────────────────────────
Run locally:
streamlit run app.py
Deploy to HuggingFace Spaces:
- Set SDK to "Streamlit" in your Space settings
- Upload this file + rag.py + data/ folder
- Set GROQ_API_KEY as a Space secret
Install:
pip install streamlit groq
"""
import os
import random
import streamlit as st
from rag import answer as rag_answer
# ── Page config ───────────────────────────────────────────────────────────────
st.set_page_config(
page_title="RoCodex — Asistent Juridic",
page_icon="⚖️",
layout="centered",
)
GROQ_API_KEY = os.environ.get("GROQ_API_KEY", "")
# ── SVG logo ──────────────────────────────────
# Used in: hero screen, sidebar, assistant chat avatar
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(BASE_DIR, "app_logo.svg"), "r", encoding="utf-8") as f:
LOGO_SVG = f.read()
import base64
LOGO_B64 = base64.b64encode(LOGO_SVG.encode()).decode()
LOGO_URI = f"data:image/svg+xml;base64,{LOGO_B64}"
# ── Welcome messages ──────────────────────────────────────────────────────────
WELCOME_MESSAGES = [
"Bine ai venit! Pune orice întrebare despre legislația română.",
"Salut! Sunt aici să te ajut să înțelegi legile din România.",
"Salut! Întreabă-mă orice despre drepturile tale legale.",
"Salut! Explorează legislația română cu ajutorul meu.",
]
EXAMPLES = [
"Ce drepturi are un salariat la concediu de odihnă?",
"Care sunt obligațiile angajatorului față de salariat?",
"Ce este prezumția de nevinovăție?",
"Cum se calculează indemnizația de concediu?",
]
# ── CSS ───────────────────────────────────────────────────────────────────────
st.markdown(f"""
<style>
#MainMenu {{ visibility: hidden; }}
footer {{ visibility: hidden; }}
/* ── Hero ── */
.hero-wrap {{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 58vh;
text-align: center;
gap: 0.6rem;
padding-bottom: 1.5rem;
}}
.hero-logo img {{
width: 130px;
height: 130px;
margin-bottom: 0.4rem;
filter: drop-shadow(0 4px 12px rgba(30,58,95,0.25));
}}
.hero-title {{
font-size: 2.8rem;
font-weight: 800;
color: #1e3a5f;
letter-spacing: -0.02em;
margin: 0;
}}
.hero-subtitle {{
font-size: 1.05rem;
color: #64748b;
}}
.hero-welcome {{
font-size: 1.8rem;
color: #DDE4ED;
font-weight: 700;
font-style: normal;
}}
/* ── Assistant avatar: replace default icon with our SVG ── */
/* Streamlit renders the avatar in [data-testid="chatAvatarIcon-assistant"] */
[data-testid="chatAvatarIcon-assistant"] {{
background: url("{LOGO_URI}") center/cover no-repeat !important;
border-radius: 4px !important;
}}
/* Hide the default text/emoji inside the avatar container */
[data-testid="chatAvatarIcon-assistant"] svg,
[data-testid="chatAvatarIcon-assistant"] p {{
display: none !important;
}}
/* ── User bubble: push to right side ── */
[data-testid="stChatMessageContent-user"] {{
margin-left: auto !important;
background: #1e3a5f !important;
color: #ffffff !important;
border-radius: 18px 18px 4px 18px !important;
}}
/* User text color override */
[data-testid="stChatMessageContent-user"] p {{
color: #ffffff !important;
}}
/* User avatar: right side */
[data-testid="stChatMessage-user"] {{
flex-direction: row-reverse !important;
}}
[data-testid="chatAvatarIcon-user"] {{
background: #1e3a5f !important;
color: #fcd34d !important;
font-weight: 700 !important;
font-size: 0.75rem !important;
}}
/* ── Assistant bubble ── */
[data-testid="stChatMessageContent-assistant"] {{
background: #f1f5f9 !important;
border-radius: 18px 18px 18px 4px !important;
}}
/* ── Sidebar logo ── */
.sidebar-logo {{
display: flex;
align-items: center;
gap: 0.6rem;
margin-bottom: 0.25rem;
}}
.sidebar-logo img {{
width: 36px;
height: 36px;
}}
.sidebar-logo span {{
font-size: 1.3rem;
font-weight: 800;
color: #1e3a5f;
letter-spacing: -0.01em;
}}
</style>
""", unsafe_allow_html=True)
# ── Sidebar ───────────────────────────────────────────────────────────────────
with st.sidebar:
st.markdown(f"""
<div style="text-align: center; padding: 0 0 0;">
<img src="{LOGO_URI}" alt="RoCodex logo" style="width: 80px; height: 80px;"/>
<div style="font-size: 1.8rem; font-weight: 800; color: #1e3a5f; letter-spacing: -0.01em; margin-top: 0.4rem;">RoCodex</div>
</div>
""", unsafe_allow_html=True)
st.divider()
api_key = st.text_input(
"🔑 Groq API Key",
value=GROQ_API_KEY,
type="password",
placeholder="gsk_...",
help="Cheie gratuită la console.groq.com",
)
st.caption("Cheia nu este salvată nicăieri.")
st.divider()
st.markdown("""
**Legislație acoperită:**
- 📋 Codul Muncii
- 📋 Codul Civil
- ⚖️ Codul Penal
- 🏛️ Cod Procedură Civilă
- 🏛️ Cod Procedură Penală
- 🏢 Legea Societăților
""")
st.divider()
st.caption(
"⚠️ RoCodex oferă informații juridice generale. "
"Nu constituie consultanță juridică. "
"Consultați un avocat pentru situații specifice."
)
# ── Session state ─────────────────────────────────────────────────────────────
if "messages" not in st.session_state:
# Each message: {"role": "user"|"assistant", "content": str, "sources": list|None}
st.session_state.messages = []
if "welcome_msg" not in st.session_state:
st.session_state.welcome_msg = random.choice(WELCOME_MESSAGES)
# ── Helper: render one assistant message (text + collapsible sources) ─────────
def render_assistant(content: str, sources: list):
st.markdown(content)
if sources:
with st.expander("📚 Surse folosite", expanded=False):
for i, src in enumerate(sources, 1):
score_pct = int(src["score"] * 100)
st.markdown(
f"**[{i}] {src['law_title']} — {src['article_number']}** "
f"`{score_pct}% relevanță`"
)
st.caption(
src["text"][:300] + ("…" if len(src["text"]) > 300 else "")
)
if i < len(sources):
st.divider()
# ── HERO SCREEN ───────────────────────────────────────────────────────────────
if not st.session_state.messages:
st.markdown(f"""
<div class="hero-wrap">
<div class="hero-logo">
<img src="{LOGO_URI}" alt="RoCodex"/>
</div>
<div class="hero-title">RoCodex</div>
<div class="hero-subtitle">Asistent juridic bazat pe legislația română</div>
<div class="hero-welcome">{st.session_state.welcome_msg}</div>
</div>
""", unsafe_allow_html=True)
st.markdown("**Încearcă una din întrebările de mai jos:**")
cols = st.columns(2)
for i, example in enumerate(EXAMPLES):
with cols[i % 2]:
if st.button(example, key=f"ex_{i}", use_container_width=True):
st.session_state.prefill = example
st.rerun()
# ── CHAT SCREEN ───────────────────────────────────────────────────────────────
else:
for msg in st.session_state.messages:
if msg["role"] == "user":
with st.chat_message("user"):
st.markdown(msg["content"])
else:
with st.chat_message("assistant"):
render_assistant(msg["content"], msg.get("sources", []))
# ── Chat input ────────────────────────────────────────────────────────────────
prefill_value = st.session_state.pop("prefill", "")
user_input = st.chat_input("Scrie întrebarea ta juridică...")
question = user_input or prefill_value
if question:
question = question.strip()
# Save & display user message
st.session_state.messages.append({
"role": "user", "content": question, "sources": None
})
# Check key
key = api_key.strip() if api_key.strip() else GROQ_API_KEY
if not key:
st.session_state.messages.append({
"role": "assistant",
"content": "⚠️ Lipsește Groq API key. Introdu cheia în sidebar.",
"sources": [],
})
st.rerun()
# Call RAG
with st.spinner("Caut în legislație..."):
try:
result = rag_answer(question, groq_api_key=key)
reply = result["answer"]
sources = result["sources"]
except Exception as e:
reply = f"❌ Eroare: {e}"
sources = []
# Save assistant message WITH sources separately
st.session_state.messages.append({
"role": "assistant",
"content": reply,
"sources": sources,
})
st.rerun() |