Spaces:
Sleeping
Sleeping
File size: 10,628 Bytes
f97322b ed14dc4 6640849 59a9179 f97322b 51eb084 f97322b 8d16824 ed14dc4 51eb084 f97322b f6d9e3b f97322b 51eb084 1bd789c f97322b 51eb084 f97322b f6d9e3b f97322b b832b0a f97322b 51eb084 cf2f7c8 51eb084 f97322b 8d16824 51eb084 f97322b 51eb084 f6d9e3b 51eb084 f6d9e3b 408354f 51eb084 408354f 51eb084 408354f 51eb084 f6d9e3b 51eb084 408354f f6d9e3b 8d16824 113896e 8d16824 51eb084 8d16824 113896e 408354f 51eb084 8d28ad2 51eb084 f97322b f6d9e3b f97322b b832b0a f97322b dc064f8 f6d9e3b 113896e cf2f7c8 f97322b f6d9e3b f97322b cbb87db 1bd789c 51eb084 f97322b 8b3e0c0 51eb084 | 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 | import os
os.environ.setdefault("HF_HOME", "/tmp/huggingface")
os.environ.setdefault("TRANSFORMERS_CACHE", "/tmp/huggingface")
os.environ.setdefault("HF_HUB_CACHE", "/tmp/huggingface")
os.environ.setdefault("SENTENCE_TRANSFORMERS_HOME", "/tmp/huggingface/st_models")
import streamlit as st
import openai
import psycopg2
from collections import deque
from sentence_transformers import SentenceTransformer
import re
# Setup
client = openai.OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
ll_model = 'gpt-4o-mini'
# ββ NEW: PostgreSQL connection ββββββββββββββββββββββββββββββ
def get_db_connection():
return psycopg2.connect(
host=os.getenv("RDS_HOST"),
port=os.getenv("RDS_PORT", 5432),
dbname=os.getenv("RDS_DB"),
user=os.getenv("RDS_USER"),
password=os.getenv("RDS_PASS")
)
# ββ NEW: BGE model ββββββββββββββββββββββββββββββββββββββββββ
model = SentenceTransformer('BAAI/bge-small-en-v1.5')
def retrieve_summaries(query, top_k=40):
try:
embedding = get_embedding(query)
conn = get_db_connection()
cur = conn.cursor()
cur.execute("""
SELECT
id,
case_id,
chunk_index,
chunk_summary,
1 - (embedding <=> %s::vector) AS similarity
FROM public.case_chunks
ORDER BY embedding <=> %s::vector
LIMIT %s;
""", [embedding, embedding, top_k])
rows = cur.fetchall()
cur.close()
conn.close()
return [
{
"id": row[0],
"case_id": row[1],
"chunk_index": row[2],
"chunk_summary": row[3],
"similarity": row[4]
}
for row in rows
]
except Exception as e:
st.error(f"Retrieve error: {e}")
return []
# ββ STEP 2: LLM picks best chunks based on summaries βββββββ
def rerank_with_llm(query, candidates, final_k=10):
summary_list = "\n".join([
f"[ID: {c['id']}] Case: {c['case_id']} | Summary: {c['chunk_summary']}"
for c in candidates
])
messages = [
{"role": "system", "content":
"You are a legal research assistant. Given a user query and a list of document chunk summaries, "
"select the most relevant chunk IDs that would best answer the query. "
"Return ONLY a comma-separated list of IDs, nothing else. Example: 12,45,67,23"
},
{"role": "user", "content":
f"Query: {query}\n\n"
f"Chunks:\n{summary_list}\n\n"
f"Select the {final_k} most relevant chunk IDs."
}
]
try:
resp = client.chat.completions.create(
model=ll_model,
messages=messages,
temperature=0.0,
max_tokens=200
)
raw = resp.choices[0].message.content.strip()
selected_ids = [int(i.strip()) for i in raw.split(",") if i.strip().isdigit()]
return selected_ids[:final_k]
except Exception as e:
st.error(f"Rerank error: {e}")
# Fallback: just return top final_k by similarity
return [c["id"] for c in candidates[:final_k]]
# ββ STEP 3: fetch full chunk_text for selected IDs only ββββ
def fetch_chunks_by_ids(selected_ids):
try:
conn = get_db_connection()
cur = conn.cursor()
cur.execute("""
SELECT
id,
case_id,
chunk_index,
chunk_text,
chunk_summary
FROM public.case_chunks
WHERE id = ANY(%s);
""", [selected_ids])
rows = cur.fetchall()
cur.close()
conn.close()
return [
{
"id": row[0],
"case_id": row[1],
"chunk_index": row[2],
"chunk_text": row[3],
"chunk_summary": row[4]
}
for row in rows
]
except Exception as e:
st.error(f"Fetch error: {e}")
return []
def get_embedding(text):
# BGE requires this prefix for queries
prefixed = f"Represent this sentence for searching relevant passages: {text}"
return model.encode(prefixed).tolist()
st.title("AI Legal Assistant βοΈ")
if "history" not in st.session_state:
st.session_state.history = deque(maxlen=10)
def get_rewritten_query(user_query):
hist = list(st.session_state.history)[-4:]
hist_text = "\n".join(f"{m['role']}: {m['content']}" for m in hist)
messages = [
{"role": "system", "content":
"You are a legal assistant that rewrites user queries into clear, context-aware queries for vector DB lookup. If its already clear then dont rewrite"},
{"role": "user", "content":
f"History:\n{hist_text}\n\nNew query:\n{user_query}\n\n"
"Rewrite if needed for clarity/search purposes. Otherwise, repeat exactly."}
]
try:
resp = client.chat.completions.create(
model=ll_model,
messages=messages,
temperature=0.1,
max_tokens=400
)
rewritten = resp.choices[0].message.content.strip()
except Exception as e:
st.error(f"Rewrite error: {e}")
rewritten = user_query
return rewritten
# ββ UPDATED: retrieve from pgvector ββββββββββββββββββββββββ
# def retrieve_documents(query, top_k=10):
# try:
# embedding = get_embedding(query)
# conn = get_db_connection()
# cur = conn.cursor()
# cur.execute("""
# SELECT
# case_id,
# chunk_index,
# chunk_text,
# chunk_summary,
# 1 - (embedding <=> %s::vector) AS similarity
# FROM public.case_chunks
# ORDER BY embedding <=> %s::vector
# LIMIT %s;
# """, [embedding, embedding, top_k])
# rows = cur.fetchall()
# cur.close()
# conn.close()
# # Format to match the rest of the app
# docs = []
# for row in rows:
# docs.append({
# "case_id": row[0],
# "chunk_index": row[1],
# "chunk_text": row[2],
# "chunk_summary": row[3],
# "similarity": row[4]
# })
# return docs
# ββ COMBINED: full retrieval pipeline ββββββββββββββββββββββ
def retrieve_documents(query, top_k=10):
# 1. Get 4x summaries
candidates = retrieve_summaries(query, top_k=top_k * 4)
if not candidates:
return []
# 2. LLM picks best IDs from summaries
selected_ids = rerank_with_llm(query, candidates, final_k=top_k)
if not selected_ids:
return []
# 3. Fetch full text for selected chunks only
docs = fetch_chunks_by_ids(selected_ids)
return docs
except Exception as e:
st.error(f"Retrieve error: {e}")
return []
def clean_chunk_id(cid: str) -> str:
cid = re.sub(r'_chunk.*$', '', cid)
cid = cid.replace("_", " ").replace("-", " ")
cid = " ".join(word.capitalize() for word in cid.split())
return cid
# ββ UPDATED: generate response with new doc structure βββββββ
def generate_response(user_query, docs):
# Collect context from chunk_text
context = "\n\n---\n\n".join(d['chunk_text'] for d in docs if d['chunk_text'])
# Build sources
source_links = {}
for d in docs:
case_id = d.get("case_id", "unknown")
chunk_idx = d.get("chunk_index", "")
text_preview = " ".join((d.get("chunk_text") or "").split()[:30])
if case_id == "constitution":
display_name = f"Constitution (Chunk {chunk_idx})"
else:
display_name = f"Case Law: {text_preview}..."
source_links[display_name] = d.get("chunk_text", "")
source_links = dict(sorted(source_links.items()))
messages = [
{"role": "system", "content":
"You are a helpful legal assistant. Use the provided context from documents to answer the user's question. "
"At the end of your answer, write a single line starting with 'Source: ' followed by the sources used. "
"Formatting rules:\n"
"- For Constitution: show the chunk number.\n"
"- For Case law: show first ~30 words of the case text.\n"
"- Do not use technical terms like 'chunk'. Present sources in a human-friendly way.\n"
"If multiple are used, separate them with commas."}
]
messages.extend(list(st.session_state.history))
messages.append({"role": "user", "content": f"Context:\n{context}\n\n"
f"Sources:\n{', '.join(source_links.keys())}\n\n"
f"Question:\n{user_query}"})
try:
resp = client.chat.completions.create(
model=ll_model,
messages=messages,
temperature=0.1,
max_tokens=900
)
reply = resp.choices[0].message.content.strip()
except Exception as e:
st.error(f"Response error: {e}")
reply = "Sorry, I encountered an error generating the answer."
if source_links:
clean_sources = ", ".join(source_links.keys())
if "Source:" not in reply:
reply += f"\n\nSource: {clean_sources}"
st.session_state.history.append({"role": "assistant", "content": reply})
st.markdown(reply)
if source_links:
st.write("### Sources")
for name, text in source_links.items():
with st.expander(name):
st.write(text)
return reply
# Chat UI
with st.form("chat_input", clear_on_submit=True):
user_input = st.text_input("You:", "")
submit = st.form_submit_button("Send")
if submit and user_input:
st.session_state.history.append({"role": "user", "content": user_input})
rewritten = get_rewritten_query(user_input)
docs = retrieve_documents(rewritten)
assistant_reply = generate_response(rewritten, docs)
c = 0
st.markdown("---")
for msg in reversed(st.session_state.history):
c += 1
if msg["role"] == "user":
st.markdown(f"**You:** {msg['content']}")
else:
st.markdown(f"**Legal Assistant:** {msg['content']}")
if c ^ 1:
st.markdown("---") |