File size: 43,809 Bytes
41fe3fc 78759de 41fe3fc 547e9da 41fe3fc 78759de 41fe3fc 78759de 41fe3fc 78759de 41fe3fc 78759de 1cda45f 78759de 547e9da 41fe3fc | 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 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 | """Stage 4 orchestration: the seven-intent routing pipeline (_agent_query_inner) and D1 logging."""
import asyncio
import html
import json
import logging
import os
import re
import time
import uuid
from collections import deque
from datetime import datetime
from typing import Any, Dict, List, Literal, Optional, Tuple
from urllib.parse import quote
import httpx
from pydantic import BaseModel, ConfigDict, Field
from src.config import get_settings, LIBBEE_VERSION
from src.services.staff_service import (
STAFF_DIRECTORY,
match_staff_name,
match_staff_role,
should_attempt_staff_lookup,
staff_name_answer,
staff_role_answer,
)
from src.agentcore.models import AgentResponse, SearchContextPayload
from src.agentcore.constants import (
ALT_TERMS_RE,
ASK_LIBRARIAN_URL,
BOOLEAN_STRATEGY_RE,
CITATION_CHAIN_RE,
DUAL_RESOURCE_RE,
EVENTS_RE,
FULLTEXT_REQUEST_RE,
HIGHLY_CITED_RE,
LIBRARY_HOURS_URL,
PARTIAL_TITLE_RE,
PREDATORY_RE,
PURE_GREETING_RE,
THESES_RE,
_INJECTION_RE,
)
from src.agentcore.utils import (
_escape,
_get_runtime_config,
_light_strip_retrieval_boilerplate,
_normalize_whitespace,
_primo_clean_url,
_safe_metrics_bucket,
_safe_metrics_increment,
_title_case_topic,
)
from src.agentcore.classify import (
_is_greeting_menu_followup,
_is_summary_request,
_llm_classify,
_looks_campus_question,
_looks_library_hours_question,
)
from src.agentcore.libcal import _events_answer, _hours_answer
from src.agentcore.rendering import (
_ai_tools_footer,
_contact_footer_for_query,
_search_trace_block,
_source_badge,
_thought_block,
_tool_urls,
)
from src.agentcore.intents_library import (
_campus_answer,
_database_recommendation_answer,
_fulltext_chain_answer,
_greeting_menu_clarify_answer,
_is_database_recommendation_question,
_library_follow_up,
_rag_answer,
_theses_answer,
)
from src.agentcore.intents_search import (
_alternative_terms_answer,
_apply_follow_up_action,
_citation_chain_answer,
_context_to_dict,
_derive_resource_type,
_detect_follow_up,
_extract_topic,
_highly_cited_note,
_parse_year_filters,
_predatory_eval_answer,
_prepare_queries,
_research_snapshot,
_run_search_mode,
_search_follow_up,
_search_strategy_answer,
)
from src.agentcore.intents_general import (
_general_follow_up,
_libbee_casual_response,
_social_follow_up,
_web_search_answer,
)
logger = logging.getLogger(__name__)
_EMAIL_RE = re.compile(r"[\w.+-]+@[\w-]+\.[\w.-]+")
_LONG_DIGITS_RE = re.compile(r"\d{6,}")
_TAG_RE = re.compile(r"<[^>]+>")
# Strong references to in-flight analytics POSTs.
#
# asyncio keeps only WEAK references to tasks: a task created with
# create_task() and then dropped can be garbage-collected before it finishes,
# silently cancelling the request. That is invisible when the network is fast
# and drops writes unpredictably when the handshake is slow. Holding a
# reference until the task completes is the documented fix.
_ANALYTICS_TASKS = set()
def _spawn_background(coro) -> bool:
"""Run coro in the background, keeping a strong reference. True if scheduled."""
try:
loop = asyncio.get_running_loop()
except RuntimeError:
try:
loop = asyncio.get_event_loop()
except Exception:
return False
if not loop.is_running():
return False
task = loop.create_task(coro)
_ANALYTICS_TASKS.add(task)
task.add_done_callback(_ANALYTICS_TASKS.discard)
return True
def _redact_for_analytics(text: str, max_len: int = 200) -> str:
"""Privacy pass before anything reaches the analytics store: e-mail
addresses and long digit runs (IDs, phone numbers) are masked and the
text is truncated. Raw personal identifiers must never be persisted."""
text = _EMAIL_RE.sub("[email]", text or "")
text = _LONG_DIGITS_RE.sub("[number]", text)
return text[:max_len]
def _answer_excerpt(answer_html: str, max_len: int = 800) -> str:
"""Plain-text excerpt of the rendered answer for offline relevance grading
by the daily KB-gap agent. HTML is stripped and the same redaction applied."""
text = _TAG_RE.sub(" ", answer_html or "")
text = re.sub(r"\s+", " ", text).strip()
return _redact_for_analytics(text, max_len)
# ββ Analytics retry buffer βββββββββββββββββββββββββββββββββββββββββββββββββββ
# Transient failures reaching the Worker (rate limiting, connection resets)
# previously meant the row was lost for good. Failed payloads are parked here
# and re-attempted on subsequent queries, so a blocked window costs a delay
# rather than data. Bounded so a long outage cannot grow memory without limit.
_PENDING_LOGS: "deque" = deque(maxlen=200)
_PENDING_DROPPED = {"count": 0}
# Rolling record of the last few analytics-write attempts, so the outcome can be
# inspected through /admin/log-status without access to container logs.
_LOG_ATTEMPTS: "deque" = deque(maxlen=15)
def _record_attempt(outcome: str, detail: str = "") -> None:
_LOG_ATTEMPTS.append({
"at": datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S"),
"outcome": outcome,
"detail": detail[:200],
})
def analytics_log_status() -> dict:
"""Snapshot of the analytics write path for the admin dashboard."""
return {
"pending_buffered": len(_PENDING_LOGS),
"buffer_capacity": _PENDING_LOGS.maxlen,
"recent_attempts": list(_LOG_ATTEMPTS)[::-1],
}
async def _send_log_payload(worker_url: str, token: str, payload: dict):
"""POST one analytics payload. Raises on transport failure; returns status."""
from src.services.http_client import make_client as _mk
headers = {"Authorization": f"Bearer {token}"} if token else {}
async with _mk(timeout=10) as client:
resp = await client.post(worker_url.rstrip("/") + "/log",
json=payload, headers=headers)
return resp.status_code
async def _flush_pending(worker_url: str, token: str, max_items: int = 5):
"""Re-attempt parked payloads oldest-first; stop at the first failure so a
still-blocked Worker is not hammered."""
sent = 0
while _PENDING_LOGS and sent < max_items:
payload = _PENDING_LOGS[0]
try:
status = await _send_log_payload(worker_url, token, payload)
except Exception:
return sent
if status >= 400:
return sent
_PENDING_LOGS.popleft()
sent += 1
if sent:
logger.info(f"D1 logging: flushed {sent} buffered row(s); "
f"{len(_PENDING_LOGS)} still pending")
return sent
def _log_agent_query(question: str, response: AgentResponse, start_time: float) -> None:
elapsed = time.time() - start_time
intent = response.intent or ""
tool = ", ".join(response.tools_used or [])[:60]
model_used = response.model_used or ""
result_count = len(response.search_results or [])
try:
from app import get_metrics_service
get_metrics_service().log_query(
question=_redact_for_analytics(question),
intent=intent,
tool=tool,
model=model_used,
response_time=elapsed,
result_count=result_count,
)
except Exception:
pass
try:
settings = get_settings()
worker_url = getattr(settings, "cloudflare_worker_url", "") or ""
if worker_url:
_payload = {
"question": _redact_for_analytics(question),
"tool": f"{intent}:{tool}"[:80],
"model": model_used,
"response_time": round(elapsed, 3),
"result_count": result_count,
# consumed by the daily KB-gap / relevance agent
"answer_excerpt": _answer_excerpt(response.answer),
"source_ids": [
str(src.get("source") or src.get("id") or "")[:60]
for src in (response.sources or [])[:8]
],
}
_token = getattr(settings, "cloudflare_worker_token", "") or ""
async def _post_to_worker():
# Drain anything parked by earlier failures first, then send this row.
try:
await _flush_pending(worker_url, _token)
except Exception:
pass
try:
status = await _send_log_payload(worker_url, _token, _payload)
except Exception as _exc:
_PENDING_LOGS.append(_payload)
_record_attempt("unreachable", f"{type(_exc).__name__}: {_exc}")
logger.warning(
f"D1 logging unreachable ({type(_exc).__name__}: {_exc}); buffered "
f"({len(_PENDING_LOGS)} pending)"
)
return
if status == 401:
_record_attempt("rejected_401", "token mismatch")
logger.error(
"D1 logging rejected (401). CLOUDFLARE_WORKER_TOKEN does "
"not match the Worker's ANALYTICS_TOKEN secret."
)
elif status in (403, 429):
_PENDING_LOGS.append(_payload)
_record_attempt("throttled", f"HTTP {status}")
logger.warning(
f"D1 logging throttled or blocked (HTTP {status}); buffered "
f"({len(_PENDING_LOGS)} pending). Repeated 403/429 from "
f"workers.dev usually means Cloudflare is rate-limiting this "
f"host; a custom domain on the Worker avoids it."
)
elif status >= 400:
_PENDING_LOGS.append(_payload)
_record_attempt("http_error", f"HTTP {status}")
logger.warning(f"D1 logging failed: HTTP {status}; buffered")
else:
_record_attempt("ok", f"HTTP {status}")
logger.debug("D1 logged OK")
if not _spawn_background(_post_to_worker()):
logger.warning("D1 logging skipped: no running event loop")
except Exception:
pass
async def _agent_query_inner(
question: str,
history,
model: str,
client_state,
start_time: float,
) -> AgentResponse:
# ββ Prompt injection detection ββββββββββββββββββββββββββββββββββββββββββββ
if question and _INJECTION_RE.search(question):
_safe_metrics_bucket("intents", "injection_blocked")
return AgentResponse(
answer=(
"I'm sorry, but I can't process that request. "
"I'm LibBee, the KU Library AI Assistant β here to help with "
"library services, research, and academic resources. "
f'How can I help you today? <a href="{ASK_LIBRARIAN_URL}" target="_blank">Ask a Librarian</a>'
),
intent="blocked",
tools_used=["injection_guard"],
model_used=model,
response_time=time.time() - start_time,
)
if not question:
follow_up_question, follow_up_suggestions = _social_follow_up()
return AgentResponse(
answer="Please type a question and I'll do my best to help!" + _source_badge("libbee"),
intent="social",
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if PURE_GREETING_RE.match(question):
follow_up_question, follow_up_suggestions = _social_follow_up()
return AgentResponse(
answer=(
_get_runtime_config().get("welcome_message", "").strip()
or (
"Hi! I'm <strong>LibBee</strong>, the Khalifa University Library AI Assistant.<br><br>"
"I can help you find articles and books, search databases, access full text, "
"request Interlibrary Loan (ILL), and answer questions about library services and staff."
)
+ _source_badge("libbee")
),
intent="social_greeting",
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
staff_match = match_staff_name(question) if should_attempt_staff_lookup(question) else None
if staff_match:
_safe_metrics_bucket("intents", "staff_lookup")
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("staff_lookup", "staff_name_match", question) + staff_name_answer(staff_match) + _source_badge("ku_library", "https://library.ku.ac.ae/"),
intent="library_info",
tools_used=["staff_name_match"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
staff_role_match = match_staff_role(question) if should_attempt_staff_lookup(question) else None
if staff_role_match:
_safe_metrics_bucket("intents", "staff_lookup")
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("staff_lookup", "staff_role_match", question) + staff_role_answer(staff_role_match, question) + _source_badge("ku_library", "https://library.ku.ac.ae/"),
intent="library_info",
tools_used=["staff_role_match"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if _is_greeting_menu_followup(question, history):
follow_up_question, follow_up_suggestions = _social_follow_up()
return AgentResponse(
answer=_thought_block("social_greeting", "greeting_menu", question) + _greeting_menu_clarify_answer() + _source_badge("libbee"),
intent="social_greeting",
is_follow_up=True,
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if _looks_library_hours_question(question):
follow_up_question, follow_up_suggestions = _library_follow_up(question)
hours_html = await _hours_answer()
return AgentResponse(
answer=_thought_block("hours", "libcal_live", question) + hours_html + _source_badge("ku_library", LIBRARY_HOURS_URL),
intent="library_info",
tools_used=["libcal_live_hours"],
ask_librarian=False,
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if EVENTS_RE.search(question):
follow_up_question, follow_up_suggestions = _library_follow_up(question)
events_html = await _events_answer()
return AgentResponse(
answer=_thought_block("library_info", "libcal_events", question,
"I fetched upcoming events from the KU LibCal events calendar.")
+ events_html + _source_badge("ku_library", "https://kustar.libcal.com/calendar/events"),
intent="library_info",
tools_used=["libcal_live_events"],
ask_librarian=False,
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if _looks_campus_question(question):
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("campus", "campus_hardcoded", question) + _campus_answer() + _source_badge("ku_library", "https://library.ku.ac.ae/"),
intent="library_info",
tools_used=["campus_hardcoded"],
ask_librarian=False,
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if _is_database_recommendation_question(question):
answer = _database_recommendation_answer(question)
answer += _contact_footer_for_query(question, None)
answer += _source_badge("ku_library", "https://library.ku.ac.ae/eresources")
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("database_rec", "database_recommendation", question) + answer,
intent="library_info",
tools_used=["database_recommendation"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
is_follow_up, follow_up_action, base_context = _detect_follow_up(question, client_state)
# ββ Catalogue availability ββββββββββββββββββββββββββββββββββββββββββββββββ
_CATALOGUE_RE = re.compile(
r"\b("
r"available in (the )?(ku|khalifa) library"
r"|in (the )?(ku|khalifa) library"
r"|does (the )?(ku|khalifa) library have"
r"|does (the )?library (have|carry|stock|hold)"
r"|(ku|khalifa) library (has|have|carry|holds?|stocks?)"
r"|ku library (books?|copies|titles?)"
r")\b",
re.IGNORECASE,
)
_BOOK_RE = re.compile(r"\b(book|books|ebook|ebooks|textbook|textbooks|copy|copies|title|titles)\b", re.IGNORECASE)
if _CATALOGUE_RE.search(question) and _BOOK_RE.search(question):
from urllib.parse import quote as _quote
_topic_raw = re.sub(
r"\b(can you (help me )?find|find|search|look for|show me|help me find"
r"|books? (available|in|on)|available in.{0,30}library|in the ku library"
r"|on|about|regarding|related to|ku library|khalifa university library"
r"|machine learning|please|thanks)\b",
" ", question, flags=re.IGNORECASE,
)
_topic = _normalize_whitespace(_topic_raw).strip(" ,.")
_primo_books_url = (
"https://khalifa.primo.exlibrisgroup.com/discovery/search"
f"?query=any,contains,{_quote(_topic or question)},AND"
"&tab=Everything&search_scope=MyInst_and_CI"
"&vid=971KUOSTAR_INST:KU&lang=en&mode=advanced"
"&qInclude=facet_rtype,exact,books"
)
follow_up_question, follow_up_suggestions = _library_follow_up(question)
rag_results = []
try:
from app import get_rag_service
rag_results = await get_rag_service().hybrid_search(question, top_k=3)
except Exception:
pass
if rag_results:
rag_answer = await _rag_answer(question, rag_results, [], model)
else:
rag_answer = ""
catalogue_answer = (
f"To find books available in the KU Library on <strong>{_escape(_topic or 'this topic')}</strong>, "
f"search the KU Library catalogue directly:<br><br>"
f'<a href="{_primo_books_url}" target="_blank" style="display:inline-block;padding:9px 16px;'
f'background:#003366;color:#fff;border-radius:8px;font-weight:700;text-decoration:none;font-size:.88rem">'
f"π Search KU Library catalogue for books β</a><br><br>"
f"The catalogue shows real-time availability β whether a copy is on the shelf, checked out, or available as an e-book."
)
if rag_answer:
catalogue_answer += f"<br><br>{rag_answer}"
return AgentResponse(
answer=_thought_block("library_info", "catalogue_books", question) + catalogue_answer + _source_badge("primo", _primo_books_url),
intent="library_info",
tools_used=["catalogue_books_redirect"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if is_follow_up and base_context:
_safe_metrics_increment("follow_up_hits")
context = _apply_follow_up_action(base_context, follow_up_action)
if follow_up_action == "alt_terms":
alt_answer = await _alternative_terms_answer(question, base_context, model)
follow_up_question, follow_up_suggestions = await _search_follow_up(base_context, model)
return AgentResponse(
answer=_thought_block("library_info", "alt_terms", question) + alt_answer + _source_badge("libbee"),
intent="library_info",
tools_used=["alt_terms"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
search_context=_context_to_dict(base_context),
is_follow_up=True,
)
if follow_up_action in {"summarize_topic", "deep_research_tools", "best_databases"}:
context = await _prepare_queries(question, context, model, True)
if follow_up_action == "summarize_topic":
answer, search_results, sources = await _research_snapshot(context, model)
else:
answer = (
f"{_search_trace_block(question, context)}"
f"<strong>Research guide for {_escape(context.display_topic or context.topic)}</strong><br><br>"
f"Here are the best AI tools and resources for a deep dive on this topic."
+ _source_badge("libbee")
+ _ai_tools_footer(context)
)
search_results = []
sources = []
follow_up_question, follow_up_suggestions = await _search_follow_up(context, model, summary_mode=True)
_safe_metrics_increment("search_handoffs")
return AgentResponse(
answer=answer,
intent=context.intent,
tools_used=["follow_up_resolution", follow_up_action],
search_results=search_results,
sources=sources,
model_used=model,
response_time=time.time() - start_time,
corrected_query=context.topic,
natural_query=context.ai_tool_query,
database_query=context.primo_boolean_query,
ai_tool_query=context.ai_tool_query,
primo_boolean_query=context.primo_boolean_query,
primo_search_url=_primo_clean_url(context),
primo_ai_url=_tool_urls(context).get("primo_ai"),
pubmed_search_url=_tool_urls(context).get("pubmed"),
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
search_context=_context_to_dict(context),
is_follow_up=True,
)
answer, search_results, sources, source_url = await _run_search_mode(question, context, model, True)
follow_up_question, follow_up_suggestions = await _search_follow_up(context, model)
return AgentResponse(
answer=answer,
intent=context.intent,
tools_used=["follow_up_resolution", follow_up_action or "contextual_refinement"],
search_results=search_results,
sources=sources,
model_used=model,
response_time=time.time() - start_time,
corrected_query=context.topic,
natural_query=context.ai_tool_query,
database_query=context.primo_boolean_query,
ai_tool_query=context.ai_tool_query,
primo_boolean_query=context.primo_boolean_query,
primo_search_url=source_url,
primo_ai_url=_tool_urls(context).get("primo_ai"),
pubmed_search_url=_tool_urls(context).get("pubmed"),
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
search_context=_context_to_dict(context),
is_follow_up=True,
)
# ββ Pre-classifier specialist handlers βββββββββββββββββββββββββββββββββββ
if FULLTEXT_REQUEST_RE.search(question):
ft_answer = _fulltext_chain_answer(question)
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("library_info", "fulltext_chain", question,
"Identified a full-text access request. Returning the KU full-text access chain.") + ft_answer + _source_badge("ku_library", "https://library.ku.ac.ae/ill/"),
intent="library_info",
tools_used=["fulltext_chain"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if THESES_RE.search(question):
th_answer = _theses_answer()
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("library_info", "theses_guide", question,
"Identified a theses/repository question.") + th_answer + _source_badge("ku_library", "https://khazna.ku.ac.ae"),
intent="library_info",
tools_used=["theses_guide"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if PREDATORY_RE.search(question):
pr_answer = _predatory_eval_answer()
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("library_info", "predatory_eval", question,
"Identified a question about evaluating journals/peer review.") + pr_answer + _source_badge("ku_library", "https://library.ku.ac.ae/eresources"),
intent="library_info",
tools_used=["predatory_eval"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if CITATION_CHAIN_RE.search(question):
cc_answer = _citation_chain_answer()
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("library_info", "citation_chain", question,
"Identified a citation tracing / forward-backward search question.") + cc_answer + _source_badge("ku_library", "https://library.ku.ac.ae/eresources"),
intent="library_info",
tools_used=["citation_chain"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if BOOLEAN_STRATEGY_RE.search(question):
strategy_answer, _plan = await _search_strategy_answer(question, model)
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("library_info", "search_strategy", question,
"Identified a search strategy / boolean building request.") + strategy_answer + _source_badge("libbee"),
intent="library_info",
tools_used=["search_strategy_explain"],
model_used=model,
response_time=time.time() - start_time,
database_query=_plan.get("boolean"),
natural_query=_plan.get("natural"),
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if ALT_TERMS_RE.search(question):
alt_answer = await _alternative_terms_answer(question, None, model)
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=_thought_block("library_info", "alt_terms", question) + alt_answer + _source_badge("libbee"),
intent="library_info",
tools_used=["alt_terms"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
cls_result = await _llm_classify(question, history, model)
intent = cls_result.get("intent", "general")
_safe_metrics_bucket("intents", intent)
casual_hint = cls_result.get("casual_answer", "")
if intent == "social":
answer = (
casual_hint
if casual_hint and len(casual_hint.strip()) > 20
else await _libbee_casual_response(question, history, model, casual_hint)
)
follow_up_question, follow_up_suggestions = _social_follow_up()
return AgentResponse(
answer=_thought_block("social", "libbee_casual", question) + answer + _source_badge("libbee"),
intent="social_greeting",
tools_used=["libbee_casual"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if intent == "sensitive":
_safe_metrics_bucket("intents", "sensitive_blocked")
follow_up_question, follow_up_suggestions = _social_follow_up()
return AgentResponse(
answer=(
"That's not something I'm able to comment on. "
"As the KU Library AI Assistant, I'm here to support your academic "
"and research needs β finding articles, accessing databases, "
"library services, and research tools.<br><br>"
"Is there something I can help you with today? "
f'<a href="{ASK_LIBRARIAN_URL}" target="_blank">π¬ Ask a Librarian</a>'
),
intent="sensitive_blocked",
tools_used=["sensitive_intent_guard"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if intent == "library_info":
rag_results = []
try:
from app import get_rag_service
rag_results = await get_rag_service().hybrid_search(question, top_k=4)
except Exception as e:
logger.error(f"RAG search failed: {e}")
if not rag_results:
answer = (
"I couldn't find specific information on that in my knowledge base.<br><br>"
"Please contact our librarians directly:<br>"
'π§ <a href="mailto:libse@ku.ac.ae">libse@ku.ac.ae</a><br>'
f'π <a href="{ASK_LIBRARIAN_URL}" target="_blank">Ask a Librarian</a>'
)
answer += _source_badge("ku_library", ASK_LIBRARIAN_URL)
sources = []
tools_used = ["rag_no_results"]
thought = _thought_block("library_info", "rag_no_results", question,
"No matching content was found β I am directing you to Ask a Librarian.")
else:
answer = await _rag_answer(question, rag_results, history, model)
answer += _source_badge("rag", "https://library.ku.ac.ae/")
sources = [
{"title": r.get("title", "Library KB"), "url": r.get("source", "")}
for r in rag_results if r.get("source")
]
tools_used = ["rag_hybrid_search"]
thought = _thought_block("rag_search", "rag_hybrid_search", question,
f"Hybrid FAISS + BM25 search returned {len(rag_results)} relevant chunk(s) from the KB.")
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=thought + answer,
intent="library_info",
tools_used=tools_used,
sources=sources,
ask_librarian=not bool(rag_results),
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
if intent in ("search_academic", "search_medical"):
if PARTIAL_TITLE_RE.search(question):
from urllib.parse import quote as _qt
_title_frag = (re.search(r'"([^"]{4,80})"', question) or
re.search(r'"([^"]{4,80})"', question))
_title_q = _title_frag.group(1) if _title_frag else _light_strip_retrieval_boilerplate(question)
_title_url = (
"https://khalifa.primo.exlibrisgroup.com/discovery/search"
f"?query=title,contains,{_qt(_title_q)},AND"
"&tab=Everything&search_scope=MyInst_and_CI"
"&vid=971KUOSTAR_INST:KU&lang=en&mode=advanced"
)
follow_up_question, follow_up_suggestions = _library_follow_up(question)
return AgentResponse(
answer=(
_thought_block("library_info", "title_search", question,
"Identified a partial title search β routing to PRIMO title search.") +
f"<strong>π Title search in KU Library</strong><br><br>"
f"I'll search the KU Library catalogue by title for: <em>{_escape(_title_q)}</em><br><br>"
f'<a href="{_title_url}" target="_blank" '
f'style="display:inline-block;padding:9px 16px;background:#003366;color:#fff;'
f'border-radius:8px;font-weight:700;text-decoration:none;font-size:.88rem">'
f"π Search by title in PRIMO β</a><br><br>"
"If you only remember part of the title, use PRIMO's advanced search and choose "
"<em>Title</em> from the field dropdown β it supports partial matches.<br>"
"You can also try "
'<a href="https://scholar.google.com" target="_blank">Google Scholar</a> '
"with the partial title in quotes." +
_source_badge("primo", _title_url)
),
intent="library_info",
tools_used=["title_search"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
topic = await _extract_topic(question, model)
topic = _title_case_topic(topic)
year_from, year_to = _parse_year_filters(question)
if DUAL_RESOURCE_RE.search(question):
import asyncio as _aio
_ctx_articles = SearchContextPayload(
context_id=str(uuid.uuid4()), topic=topic, display_topic=topic,
intent=intent, source="primo", resource_type="articles",
peer_reviewed=bool(re.search(r"\bpeer[- ]reviewed\b", question, re.IGNORECASE)),
open_access=bool(re.search(r"\bopen access\b", question, re.IGNORECASE)),
year_from=year_from, year_to=year_to,
)
_ctx_books = SearchContextPayload(
context_id=str(uuid.uuid4()), topic=topic, display_topic=topic,
intent=intent, source="primo", resource_type="books",
peer_reviewed=False, open_access=False,
year_from=year_from, year_to=year_to,
)
_ctx_articles, _ctx_books = await _aio.gather(
_prepare_queries(question, _ctx_articles, model, False),
_prepare_queries(question, _ctx_books, model, False),
)
_src_url_a = _primo_clean_url(_ctx_articles)
_src_url_b = _primo_clean_url(_ctx_books)
_dual_answer = _search_trace_block(question, _ctx_articles)
_dual_answer += (
f"<strong>π Articles on {_escape(topic)}</strong><br>"
f'<a href="{_src_url_a}" target="_blank" style="color:#003366;font-weight:700">'
f'Search PRIMO for articles β</a>'
)
_dual_answer += _source_badge("primo", _src_url_a)
_dual_answer += f"<br><br><strong>π Books on {_escape(topic)}</strong><br>"
_dual_answer += (
f'<a href="{_src_url_b}" target="_blank" style="color:#003366;font-weight:700">'
f'Search PRIMO for books β</a>'
)
_dual_answer += _source_badge("primo", _src_url_b)
_dual_answer += _ai_tools_footer(_ctx_articles)
follow_up_question, follow_up_suggestions = await _search_follow_up(_ctx_articles, model)
return AgentResponse(
answer=_dual_answer,
intent=intent,
tools_used=["primo_browser_link"],
search_results=[],
sources=[],
model_used=model,
response_time=time.time() - start_time,
corrected_query=topic,
natural_query=_ctx_articles.ai_tool_query,
primo_boolean_query=_ctx_articles.primo_boolean_query,
primo_search_url=_src_url_a,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
search_context=_context_to_dict(_ctx_articles),
)
context = SearchContextPayload(
context_id=str(uuid.uuid4()),
topic=topic,
display_topic=topic,
intent=intent,
source="primo",
resource_type=_derive_resource_type(question),
peer_reviewed=bool(re.search(r"\bpeer[- ]reviewed\b", question, re.IGNORECASE)),
open_access=bool(re.search(r"\bopen access\b", question, re.IGNORECASE)),
year_from=year_from,
year_to=year_to,
)
context = await _prepare_queries(question, context, model, False)
summary_mode = _is_summary_request(question)
deep_research_mode = bool(re.search(
r"\b(deep research|deep dive|systematic review|full literature review|exhaustive)\b",
question, re.IGNORECASE,
))
is_highly_cited = bool(HIGHLY_CITED_RE.search(question))
if summary_mode or deep_research_mode:
answer, search_results, sources = await _research_snapshot(context, model)
if deep_research_mode and "Research guide" not in answer and "AI tools" not in answer:
answer += f"<br><br>{_ai_tools_footer(context)}"
if is_highly_cited:
answer += _highly_cited_note(_escape(topic))
follow_up_question, follow_up_suggestions = await _search_follow_up(context, model, summary_mode=True)
_safe_metrics_increment("search_handoffs")
return AgentResponse(
answer=answer,
intent=intent,
tools_used=["research_snapshot"],
search_results=search_results,
sources=sources,
model_used=model,
response_time=time.time() - start_time,
corrected_query=context.topic,
natural_query=context.ai_tool_query,
database_query=context.primo_boolean_query,
ai_tool_query=context.ai_tool_query,
primo_boolean_query=context.primo_boolean_query,
primo_search_url=_primo_clean_url(context),
primo_ai_url=_tool_urls(context).get("primo_ai"),
pubmed_search_url=_tool_urls(context).get("pubmed"),
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
search_context=_context_to_dict(context),
)
answer, search_results, sources, source_url = await _run_search_mode(question, context, model, False)
if is_highly_cited:
answer += _highly_cited_note(_escape(topic))
follow_up_question, follow_up_suggestions = await _search_follow_up(context, model)
return AgentResponse(
answer=answer,
intent=intent,
tools_used=["primo_inline" if context.source == "primo" else "pubmed_inline"],
search_results=search_results,
sources=sources,
model_used=model,
response_time=time.time() - start_time,
corrected_query=context.topic,
natural_query=context.ai_tool_query,
database_query=context.primo_boolean_query,
ai_tool_query=context.ai_tool_query,
primo_boolean_query=context.primo_boolean_query,
primo_search_url=source_url,
primo_ai_url=_tool_urls(context).get("primo_ai"),
pubmed_search_url=_tool_urls(context).get("pubmed"),
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
search_context=_context_to_dict(context),
)
if intent == "general_recent":
answer = await _web_search_answer(question, history, model) + _source_badge("web_live")
follow_up_question, follow_up_suggestions = _general_follow_up(question)
return AgentResponse(
answer=_thought_block("general_recent", "web_search", question) + answer,
intent="general_recent",
tools_used=["web_search"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
# general fallback
answer = await _web_search_answer(question, history, model) + _source_badge("web")
follow_up_question, follow_up_suggestions = _general_follow_up(question)
return AgentResponse(
answer=_thought_block("general", "web_search", question) + answer,
intent="general",
tools_used=["web_search"],
model_used=model,
response_time=time.time() - start_time,
follow_up_question=follow_up_question,
follow_up_suggestions=follow_up_suggestions,
)
|