Spaces:
Running on Zero
Running on Zero
File size: 7,025 Bytes
a7b3d90 a4714ef a7b3d90 0828c2c a7b3d90 0828c2c a4714ef 0828c2c a4714ef 0828c2c a4714ef 0828c2c a7b3d90 0828c2c a4714ef 0828c2c d6ebd7d a7b3d90 d6ebd7d a4714ef 0828c2c a4714ef 0828c2c a4714ef d6ebd7d 0828c2c a7b3d90 | 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 | """Gradio entrypoint for ProfillyBot on Hugging Face Spaces (ZeroGPU).
Compatible with Gradio 6.x (messages format is default; css goes to launch()).
Shows answer + retrieval debug panel (query + retrieved chunks).
"""
from __future__ import annotations
import logging
import os
import sys
from pathlib import Path
# Ensure project root is on path
ROOT = Path(__file__).parent.resolve()
sys.path.insert(0, str(ROOT))
import gradio as gr
from src.build_vectorstore import build_index
from src.config_loader import get_config
from src.llm_handler import get_llm_handler
from src.rag_pipeline import RAGPipeline
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
)
logger = logging.getLogger(__name__)
# Optional ZeroGPU decorator (no-op locally when `spaces` is unavailable)
try:
import spaces
gpu = spaces.GPU(duration=120)
except Exception: # noqa: BLE001
def gpu(fn): # type: ignore[misc]
return fn
_rag_pipeline: RAGPipeline | None = None
def _indexes_ready() -> bool:
chroma_db = ROOT / "chroma_db" / "chroma.sqlite3"
bm25_dir = ROOT / "bm25_index"
has_bm25 = bm25_dir.exists() and any(bm25_dir.iterdir())
return chroma_db.exists() or has_bm25
def _ensure_indexes() -> None:
"""Build retrieval indexes on CPU if they are missing."""
if _indexes_ready():
logger.info("Retrieval indexes already present")
return
docs_dir = ROOT / "data" / "documents"
if not docs_dir.exists() or not any(docs_dir.iterdir()):
logger.warning("No documents found; skipping index build")
return
logger.info("Building retrieval indexes (CPU)...")
build_index(documents_dir=str(docs_dir), force_rebuild=False)
def get_pipeline() -> RAGPipeline:
"""Lazily initialize the RAG pipeline (embeddings/retrieval on CPU)."""
global _rag_pipeline
if _rag_pipeline is not None:
return _rag_pipeline
_ensure_indexes()
if os.getenv("SPACE_ID") or os.getenv("SYSTEM") == "spaces":
provider = "transformers"
else:
provider = get_config().get("llm.provider", "transformers")
handler = get_llm_handler(provider_override=provider)
_rag_pipeline = RAGPipeline(llm_handler=handler)
logger.info(
"ProfillyBot ready — provider=%s model=%s",
handler.get_provider(),
handler.get_model(),
)
return _rag_pipeline
def _message_text(content: object) -> str | None:
"""Normalize Gradio 5/6 message content to a plain string."""
if isinstance(content, str):
return content
if isinstance(content, list):
parts: list[str] = []
for part in content:
if isinstance(part, str):
parts.append(part)
elif isinstance(part, dict):
if part.get("type") == "text":
parts.append(str(part.get("text", "")))
elif "text" in part:
parts.append(str(part["text"]))
return "".join(parts) if parts else None
return None
@gpu
def answer_with_retrieval(
message: str, history: list[dict] | None
) -> tuple[list[dict], str, str]:
"""Generate answer and retrieval panel for Gradio UI."""
empty_retrieval = "_Ask a question to see retrieved chunks._"
if not message or not message.strip():
history = history or []
return history, "Please ask a question about the profile.", empty_retrieval
pipeline = get_pipeline()
question = message.strip()
chat_history: list[dict] = []
if history:
for turn in history:
role = turn.get("role")
text = _message_text(turn.get("content"))
if role in {"user", "assistant"} and text:
chat_history.append({"role": role, "content": text})
llm = pipeline.llm_handler.get_llm()
if hasattr(llm, "_ensure_loaded"):
llm._ensure_loaded()
result = pipeline.get_answer_with_retrieval(question, chat_history=chat_history)
answer = result["answer"]
retrieval_panel = result["retrieval_panel"]
new_history = list(history or [])
new_history.append({"role": "user", "content": question})
new_history.append({"role": "assistant", "content": answer})
return new_history, "", retrieval_panel
CHAT_CSS = """
.contain textarea,
footer textarea,
.input-container textarea,
textarea[data-testid="textbox"] {
overflow-y: hidden !important;
resize: none !important;
scrollbar-width: none !important;
-ms-overflow-style: none !important;
}
.contain textarea::-webkit-scrollbar,
footer textarea::-webkit-scrollbar,
.input-container textarea::-webkit-scrollbar,
textarea[data-testid="textbox"]::-webkit-scrollbar {
display: none !important;
width: 0 !important;
height: 0 !important;
}
"""
def build_demo() -> gr.Blocks:
config = get_config()
profile_name = config.get("profile.name", "the candidate")
profile_title = config.get("profile.title", "Professional")
model_name = config.get("llm.hf_model", "Qwen/Qwen3.5-4B")
greeting = config.format_template(
config.get(
"profile.greeting",
f"Hi! I'm ProfillyBot. Ask me about {profile_name}'s background.",
)
)
examples = [config.format_template(q) for q in config.get("ui.example_questions", [])]
with gr.Blocks(title="ProfillyBot") as demo:
gr.Markdown(
f"# ProfillyBot\n"
f"**{profile_name}** — {profile_title}\n\n"
f"{greeting}\n\n"
f"_{model_name} on Hugging Face ZeroGPU + hybrid RAG._"
)
with gr.Row():
with gr.Column(scale=3):
chatbot = gr.Chatbot(label="Chat", height=460)
msg = gr.Textbox(
placeholder="Type a message...",
lines=1,
max_lines=1,
show_label=False,
autofocus=True,
)
with gr.Row():
send = gr.Button("Send", variant="primary")
clear = gr.Button("Clear")
if examples:
gr.Examples(examples=examples, inputs=msg)
with gr.Column(scale=2):
retrieval_md = gr.Markdown(
value="_Ask a question to see retrieved chunks._",
label="Retrieval",
)
send.click(
answer_with_retrieval,
inputs=[msg, chatbot],
outputs=[chatbot, msg, retrieval_md],
)
msg.submit(
answer_with_retrieval,
inputs=[msg, chatbot],
outputs=[chatbot, msg, retrieval_md],
)
clear.click(
lambda: ([], "", "_Ask a question to see retrieved chunks._"),
outputs=[chatbot, msg, retrieval_md],
)
return demo
demo = build_demo()
demo.queue(max_size=20).launch(
server_name="0.0.0.0",
server_port=7860,
css=CHAT_CSS,
)
|