Spaces:
Running
Running
File size: 20,587 Bytes
55953aa e120e1f 3151380 55953aa 3151380 a465955 55953aa a465955 3151380 a465955 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 9edd318 55953aa 9edd318 3151380 9edd318 3151380 9edd318 55953aa 3151380 55953aa 3151380 55953aa 9edd318 55953aa 3151380 9edd318 55953aa 9edd318 55953aa 9edd318 55953aa 9edd318 55953aa 3151380 55953aa 3151380 a465955 55953aa e120e1f 3151380 e120e1f 3151380 a465955 55953aa e120e1f 3151380 a465955 55953aa 3151380 55953aa 3151380 a465955 3151380 55953aa a465955 3151380 55953aa 3151380 55953aa 3151380 55953aa e120e1f 55953aa 3151380 e120e1f a111a5b 3151380 e120e1f 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa a111a5b 3151380 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 9edd318 55953aa 3151380 55953aa 3151380 55953aa 3151380 55953aa 3151380 e120e1f a465955 e120e1f 55953aa 3151380 a111a5b | 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 | """
app.py — Enterprise Document Q&A (RAG)
Powered by Llama 3 + FAISS + Sentence Transformers
A Demo Product by Kerdos Infrasoft Private Limited
Website: https://kerdos.in
New features in this version:
• Model selector dropdown (switch LLM without restart)
• Indexing progress indicator (gr.Progress)
• MAX_NEW_TOKENS slider exposed in UI
• Retrieved sources panel with cosine scores (accordion)
• Chat export — download conversation as Markdown
• .dockerignore added for security
"""
import os
import datetime
import tempfile
from pathlib import Path
from dotenv import load_dotenv
import gradio as gr
from rag.document_loader import load_documents
from rag.embedder import build_index, add_to_index
from rag.retriever import retrieve
from rag.chain import answer_stream
import rag.chain as _chain_module
load_dotenv()
# ─────────────────────────────────────────────────────────────────────────────
# Available models (HF Inference API — free tier)
# ─────────────────────────────────────────────────────────────────────────────
AVAILABLE_MODELS = {
"Llama 3.1 8B Instruct ⚡ (default)": "meta-llama/Llama-3.1-8B-Instruct",
"Mistral 7B Instruct v0.3": "mistralai/Mistral-7B-Instruct-v0.3",
"Mixtral 8×7B Instruct v0.1": "mistralai/Mixtral-8x7B-Instruct-v0.1",
"Qwen2.5 72B Instruct": "Qwen/Qwen2.5-72B-Instruct",
}
DEFAULT_MODEL_LABEL = list(AVAILABLE_MODELS.keys())[0]
# ─────────────────────────────────────────────────────────────────────────────
# State helpers
# ─────────────────────────────────────────────────────────────────────────────
def get_hf_token(user_token: str) -> str:
t = user_token.strip() if user_token else ""
return t or os.environ.get("HF_TOKEN", "")
# ─────────────────────────────────────────────────────────────────────────────
# Gradio handlers
# ─────────────────────────────────────────────────────────────────────────────
def process_files(files, current_index, indexed_sources, progress=gr.Progress()):
"""Parse uploaded files and build / extend the FAISS index with live progress."""
if not files:
return current_index, indexed_sources, "⚠️ No files uploaded."
file_paths = [f.name for f in files] if hasattr(files[0], "name") else files
# ── Duplicate guard ──────────────────────────────────────────────────────
new_paths, skipped = [], []
for p in file_paths:
name = Path(p).name
if name in indexed_sources:
skipped.append(name)
else:
new_paths.append(p)
if skipped and not new_paths:
return current_index, indexed_sources, (
f"⚠️ Already indexed: {', '.join(skipped)}. No new documents added."
)
# ── Load ─────────────────────────────────────────────────────────────────
progress(0.10, desc="📄 Parsing documents…")
docs = load_documents(new_paths)
if not docs:
return current_index, indexed_sources, (
"❌ Could not extract text. Please upload PDF, DOCX, TXT, MD, or CSV."
)
# ── Embed & index ─────────────────────────────────────────────────────────
progress(0.40, desc="🧠 Embedding chunks…")
try:
if current_index is None:
idx = build_index(docs)
else:
idx = add_to_index(current_index, docs)
except Exception as e:
return current_index, indexed_sources, f"❌ Failed to build index: {e}"
progress(1.0, desc="✅ Done!")
new_sources = {d["source"] for d in docs}
updated_sources = indexed_sources | new_sources
total_chunks = idx.index.ntotal
skip_note = f" (skipped duplicates: {', '.join(skipped)})" if skipped else ""
msg = (
f"✅ Indexed {len(new_sources)} new file(s): {', '.join(new_sources)}{skip_note}\n"
f"📦 Total chunks in knowledge base: {total_chunks}"
)
return idx, updated_sources, msg
def chat(user_message, history, vector_index, hf_token_input, top_k, model_label, max_tokens):
"""Streaming chat handler — yields progressively-updated history + sources panel."""
if not user_message.strip():
yield history, "", ""
return
hf_token = get_hf_token(hf_token_input)
if not hf_token:
history = history + [
{"role": "user", "content": user_message},
{"role": "assistant", "content": "⚠️ Please provide a Hugging Face API token."},
]
yield history, "", ""
return
if vector_index is None:
history = history + [
{"role": "user", "content": user_message},
{"role": "assistant", "content": "⚠️ Please upload at least one document first."},
]
yield history, "", ""
return
# Apply model + token settings from UI for this request
selected_model = AVAILABLE_MODELS.get(model_label, _chain_module.LLM_MODEL)
_chain_module.LLM_MODEL = selected_model
_chain_module.MAX_NEW_TOKENS = int(max_tokens)
try:
chunks = retrieve(user_message, vector_index, top_k=int(top_k))
# Build sources panel text
if chunks:
sources_lines = ["**🔍 Retrieved Chunks:**\n"]
for i, c in enumerate(chunks, 1):
score_bar = "█" * int(c["score"] * 10) + "░" * (10 - int(c["score"] * 10))
sources_lines.append(
f"**[{i}] {c['source']}** — score: `{c['score']:.3f}` `{score_bar}`\n"
f"> {c['text'][:220].strip()}{'…' if len(c['text']) > 220 else ''}\n"
)
sources_md = "\n".join(sources_lines)
else:
sources_md = "_(No relevant chunks above score threshold)_"
# Append placeholder for streaming
history = history + [
{"role": "user", "content": user_message},
{"role": "assistant", "content": ""},
]
for partial in answer_stream(user_message, chunks, hf_token, chat_history=history[:-2]):
history[-1]["content"] = partial
yield history, "", sources_md
yield history, "", sources_md
except Exception as e:
history[-1]["content"] = f"❌ Error: {e}"
yield history, "", ""
def export_chat(history) -> str | None:
"""Export the current chat history to a Markdown file for download."""
if not history:
return None
lines = [
f"# Kerdos AI — Chat Export",
f"_Exported: {datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}_\n",
"---\n",
]
for msg in history:
role = "👤 **User**" if msg["role"] == "user" else "🤖 **Assistant**"
lines.append(f"{role}\n\n{msg['content']}\n\n---\n")
tmp = tempfile.NamedTemporaryFile(
mode="w", suffix=".md", prefix="kerdos_chat_", delete=False, encoding="utf-8"
)
tmp.write("\n".join(lines))
tmp.close()
return tmp.name
def reset_all():
"""Clear index, chat, sources panel, and the indexed-sources tracker."""
return None, set(), [], "🗑️ Knowledge base and chat cleared.", "", ""
# ─────────────────────────────────────────────────────────────────────────────
# CSS
# ─────────────────────────────────────────────────────────────────────────────
CSS = """
/* ── Kerdos Brand Theme ── */
:root {
--kerdos-primary: #0055FF;
--kerdos-accent: #00C2FF;
--kerdos-dark: #0A0F2C;
--kerdos-light: #E8F0FF;
}
body { font-family: 'Segoe UI', Arial, sans-serif; }
#kerdos-header {
background: linear-gradient(135deg, #0A0F2C 0%, #0B2C6E 60%, #0044CC 100%);
border-radius: 16px;
padding: 24px 32px 20px;
margin-bottom: 12px;
border: 1px solid rgba(0,194,255,0.25);
box-shadow: 0 4px 24px rgba(0,85,255,0.18);
}
#kerdos-logo-line {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
#kerdos-badge {
display: inline-block;
background: rgba(0,194,255,0.15);
border: 1px solid rgba(0,194,255,0.4);
border-radius: 20px;
padding: 3px 14px;
font-size: 0.75em;
color: #00C2FF;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 600;
}
#kerdos-demo-banner {
background: linear-gradient(90deg, rgba(255,160,0,0.15), rgba(255,100,0,0.15));
border: 1px solid rgba(255,160,0,0.4);
border-radius: 10px;
padding: 10px 18px;
margin: 10px 0 6px;
text-align: center;
font-size: 0.88em;
}
#kerdos-fund-banner {
background: linear-gradient(90deg, rgba(0,85,255,0.12), rgba(0,194,255,0.12));
border: 1px solid rgba(0,194,255,0.3);
border-radius: 10px;
padding: 10px 18px;
margin: 6px 0 0;
text-align: center;
font-size: 0.85em;
}
#kerdos-footer {
text-align: center;
margin-top: 18px;
padding: 12px;
border-top: 1px solid rgba(0,194,255,0.15);
font-size: 0.82em;
color: #888;
}
#subtitle { text-align: center; color: #6B8CFF; margin-bottom: 8px; }
.upload-box { border: 2px dashed #0055FF !important; border-radius: 12px !important; }
#status-box { font-size: 0.9em; }
footer { display: none !important; }
"""
# ─────────────────────────────────────────────────────────────────────────────
# UI
# ─────────────────────────────────────────────────────────────────────────────
with gr.Blocks(title="Kerdos AI — Custom LLM Chat | Document Q&A Demo") as demo:
# ── Kerdos Header ────────────────────────────────────────────────────────
gr.HTML("""
<div id="kerdos-header">
<div id="kerdos-logo-line">
<span style="font-size:2em;">🤖</span>
<span style="font-size:1.6em; font-weight:800; color:#ffffff; letter-spacing:0.02em;">
Kerdos <span style="color:#00C2FF;">AI</span>
</span>
<span id="kerdos-badge">Demo</span>
</div>
<div style="text-align:center; color:#A0B8FF; font-size:0.88em; margin-top:4px;">
Custom LLM Chat & Document Q&A — by
<strong style="color:#fff;">Kerdos Infrasoft Private Limited</strong>
</div>
<div style="text-align:center; font-size:0.82em; margin-top:4px; color:#7A9FFF;">
🌐 <a href="https://kerdos.in" target="_blank" style="color:#00C2FF; text-decoration:none;">kerdos.in</a>
|
📬 <a href="mailto:partnership@kerdos.in" style="color:#00C2FF; text-decoration:none;">partnership@kerdos.in</a>
|
📞 <a href="https://kerdos.in/contact" target="_blank" style="color:#00C2FF; text-decoration:none;">Contact Us</a>
</div>
<div id="kerdos-demo-banner">
⚠️ <strong style="color:#FFA000;">This is a Demo Version.</strong>
<span style="color:#FFD080;"> Features, model selection, and customisation are limited. The full product will support private, on-premise LLM deployments tailored to your organisation.</span>
</div>
<div id="kerdos-fund-banner">
🚀 <strong style="color:#00C2FF;">We are actively seeking investment & partnerships</strong>
<span style="color:#A0C8FF;"> to build the <em>fully customisable</em> enterprise edition — including <strong>private LLM hosting</strong>, custom model fine-tuning, data privacy guarantees, and white-label deployments.</span>
<br/>
<span style="color:#7A9FFF; font-size:0.9em;">Interested? Reach out at
<a href="mailto:partnership@kerdos.in" style="color:#00C2FF;">partnership@kerdos.in</a>
or visit <a href="https://kerdos.in/contact" target="_blank" style="color:#00C2FF;">kerdos.in/contact</a></span>
</div>
</div>
""")
gr.Markdown(
"Upload your company documents (PDF, DOCX, TXT) and ask questions. "
"The AI answers **only from your data** — never from outside knowledge.",
elem_id="subtitle",
)
# ── Shared state ─────────────────────────────────────────────────────────
vector_index = gr.State(None)
indexed_sources = gr.State(set())
with gr.Row():
# ── Left panel: Upload + Settings ────────────────────────────────────
with gr.Column(scale=1, min_width=300):
gr.Markdown("### 📂 Upload Documents")
file_upload = gr.File(
file_count="multiple",
file_types=[".pdf", ".docx", ".txt", ".md", ".csv"],
label="Drag & drop or click to upload",
elem_classes=["upload-box"],
)
index_btn = gr.Button("📥 Index Documents", variant="primary")
status_box = gr.Textbox(
label="Status",
interactive=False,
lines=3,
elem_id="status-box",
)
gr.Markdown("### ⚙️ Settings")
hf_token_input = gr.Textbox(
label="Hugging Face Token (optional if Space secret is set)",
placeholder="hf_...",
type="password",
value="",
)
# ── NEW: Model selector ──────────────────────────────────────────
model_selector = gr.Dropdown(
choices=list(AVAILABLE_MODELS.keys()),
value=DEFAULT_MODEL_LABEL,
label="🤖 LLM Model",
info="Requires appropriate HF token permissions.",
)
top_k_slider = gr.Slider(
minimum=1, maximum=10, value=5, step=1,
label="Chunks to retrieve (top-K)",
)
# ── NEW: Max tokens slider ───────────────────────────────────────
max_tokens_slider = gr.Slider(
minimum=128, maximum=4096, value=1024, step=128,
label="Max response tokens",
info="Higher = longer answers, slower generation.",
)
reset_btn = gr.Button("🗑️ Clear All", variant="stop")
# ── Right panel: Chat ─────────────────────────────────────────────────
with gr.Column(scale=2):
gr.Markdown("### 💬 Ask Questions")
chatbot = gr.Chatbot(height=420, show_label=False)
with gr.Row():
user_input = gr.Textbox(
placeholder="Ask a question about your documents...",
show_label=False,
scale=5,
container=False,
)
send_btn = gr.Button("Send ▶", variant="primary", scale=1)
with gr.Row():
# ── NEW: Export button ────────────────────────────────────────
export_btn = gr.Button("💾 Export Chat", variant="secondary", size="sm")
export_file = gr.File(label="Download", visible=False, scale=2)
# ── NEW: Retrieved sources accordion ──────────────────────────────
with gr.Accordion("🔍 Retrieved Sources", open=False):
sources_panel = gr.Markdown(
value="_Sources will appear here after each answer._",
label="Sources",
)
# ── Examples ─────────────────────────────────────────────────────────────
gr.Examples(
examples=[
["What is the refund policy?"],
["Summarize the key points of this document."],
["What are the terms of service?"],
["Who is the contact person for support?"],
["List all products and their prices."],
],
inputs=user_input,
)
# ── Event wiring ──────────────────────────────────────────────────────────
index_btn.click(
fn=process_files,
inputs=[file_upload, vector_index, indexed_sources],
outputs=[vector_index, indexed_sources, status_box],
)
send_btn.click(
fn=chat,
inputs=[user_input, chatbot, vector_index, hf_token_input,
top_k_slider, model_selector, max_tokens_slider],
outputs=[chatbot, user_input, sources_panel],
)
user_input.submit(
fn=chat,
inputs=[user_input, chatbot, vector_index, hf_token_input,
top_k_slider, model_selector, max_tokens_slider],
outputs=[chatbot, user_input, sources_panel],
)
reset_btn.click(
fn=reset_all,
inputs=[],
outputs=[vector_index, indexed_sources, chatbot, status_box, user_input, sources_panel],
)
export_btn.click(
fn=export_chat,
inputs=[chatbot],
outputs=[export_file],
).then(
fn=lambda f: gr.File(value=f, visible=f is not None),
inputs=[export_file],
outputs=[export_file],
)
# ── Kerdos Footer ─────────────────────────────────────────────────────────
gr.HTML("""
<div id="kerdos-footer">
© 2024–2026 <strong>Kerdos Infrasoft Private Limited</strong> |
CIN: U62099KA2023PTC182869 | Bengaluru, Karnataka, India<br/>
🌐 <a href="https://kerdos.in" target="_blank" style="color:#0055FF;">kerdos.in</a>
|
✉️ <a href="mailto:partnership@kerdos.in" style="color:#0055FF;">partnership@kerdos.in</a>
|
📞 <a href="https://kerdos.in/contact" target="_blank" style="color:#0055FF;">Contact</a><br/>
<span style="font-size:0.85em; color:#aaa;">This is a demo product. All AI responses are based solely on uploaded documents.</span>
</div>
""")
if __name__ == "__main__":
demo.queue()
demo.launch(theme=gr.themes.Soft(), css=CSS)
|