* Studio: make project sources work with RAG and polish project UI
Projects had a disabled Sources tab with an Add sources placeholder.
This wires it up end to end on top of the RAG engine:
- Add a project scope to the RAG store, ingestion and retrieval
- New endpoints: POST/GET /api/rag/projects/{id}/documents
- search_knowledge_base resolves kb, project and thread scopes; an
explicit KB stays exclusive, project and thread scopes combine
- Multi-scope search: FTS uses scope IN (...), vec0 KNN runs per
scope and merges by cosine score
- Lazy ALTER TABLE adds documents.project_id on existing databases
- Deleting a project also removes its indexed sources
- Sources tab now uploads with progress chips and drag and drop
- Chats inside a project auto-enable retrieval over project sources
when the project has indexed documents (cached probe, no Docs pill
needed); external providers still never receive rag_scope
UI polish:
- Rounder project cards with folder icon chip and softer shadow
- Project header icon in a rounded chip
- Chats/Sources pills and Add sources button without borders
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Studio: match Add sources button shadow to the chat composer in light mode
* Studio: round project switcher hover pill and pad the folder icon
* Studio: remove border from project sources box
* Studio: grey hover on project cards and menu, move search into header, widen page spacing
* Studio: shorten sources copy, white header pills with composer shadow, fixed-width search, hub-size page headings
* Studio: align project landing blocks to the composer width
* Studio: restore muted background and flat look on projects header controls
* Studio: darker grey hover on project cards in light mode
* Studio: soften project card hover grey
* Studio: keep project card menu button visible while its menu is open
* Studio: drop focus outlines and rings on buttons and clickable icons, keep input focus styles
* Studio: address review feedback on project sources
- Remove uploaded files from disk when a project is deleted, confined
to the uploads root
- 404 project uploads when the project does not exist, matching the KB
endpoint
- Guard lexical search against an empty scope list
- Re-invalidate the project sources probe after uploads and removals
settle so a chat sent mid-upload cannot cache a stale negative
- Keep keyboard focus rings: only mouse focus drops the Tailwind ring,
the browser default outline stays removed
* Studio: add a green New badge to the project Sources tab
* Studio: unify New pills, fully round with soft emerald fill and no border
* Studio: a touch more vertical padding on New pills
* Fix project RAG source edge cases for PR #6205
* Fix duplicate RAG upload cleanup for PR #6205
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Lee Jackson <130007945+Imagineer99@users.noreply.github.com>
Co-authored-by: wasimysaid <wasimysdev@gmail.com>
209 lines
6.7 KiB
Python
209 lines
6.7 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
"""``search_knowledge_base`` LLM tool: scope resolution + hit formatting.
|
|
|
|
KB scope wins; otherwise project and thread scopes combine so project chats also
|
|
see their own attachments. Hits render as ``<chunk>`` blocks for the model,
|
|
plus a parallel citation source-map for clickable sources. Each call opens and
|
|
closes its own ``rag_db`` connection.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from xml.sax.saxutils import quoteattr
|
|
|
|
from storage import rag_db
|
|
|
|
from . import config, retrieval
|
|
from .store import kb_scope, project_scope, thread_scope
|
|
|
|
SEARCH_KNOWLEDGE_BASE_TOOL = {
|
|
"type": "function",
|
|
"function": {
|
|
"name": "search_knowledge_base",
|
|
"description": (
|
|
"Search the user's uploaded documents and knowledge bases for relevant passages."
|
|
),
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"query": {
|
|
"type": "string",
|
|
"description": "Natural-language search query.",
|
|
},
|
|
"top_k": {
|
|
"type": "integer",
|
|
"description": "Max chunks to return.",
|
|
},
|
|
},
|
|
"required": ["query"],
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
def _resolve_scope(
|
|
scope_kb_id: str | None,
|
|
scope_thread_id: str | None,
|
|
scope_project_id: str | None = None,
|
|
) -> str | list[str] | None:
|
|
"""KB (an explicit pick) is exclusive; project and thread scopes combine so a
|
|
project chat also retrieves from its own attached documents."""
|
|
if scope_kb_id:
|
|
return kb_scope(scope_kb_id)
|
|
scopes = []
|
|
if scope_project_id:
|
|
scopes.append(project_scope(scope_project_id))
|
|
if scope_thread_id:
|
|
scopes.append(thread_scope(scope_thread_id))
|
|
if not scopes:
|
|
return None
|
|
return scopes[0] if len(scopes) == 1 else scopes
|
|
|
|
|
|
def _format(rows, hits) -> tuple[str, list[dict]]:
|
|
"""Render hits as ``<chunk>`` blocks and build a citation source-map."""
|
|
if not hits:
|
|
return "No matching chunks were found in the knowledge base.", []
|
|
blocks: list[str] = []
|
|
sources: list[dict] = []
|
|
for i, h in enumerate(hits, 1):
|
|
r = rows.get(h.chunk_id)
|
|
filename = (r["filename"] if r else None) or "unknown"
|
|
page = r["page_number"] if r else None
|
|
text = r["text"] if r else ""
|
|
src = quoteattr(filename)
|
|
page_attr = f" page={quoteattr(str(page))}" if page else ""
|
|
blocks.append(f'<chunk id="{i}" source={src}{page_attr}>\n{text}\n</chunk>')
|
|
sources.append(
|
|
{
|
|
"citationId": i,
|
|
"chunkId": h.chunk_id,
|
|
"documentId": r["document_id"] if r else None,
|
|
"filename": filename,
|
|
"page": page,
|
|
"text": text,
|
|
"score": round(float(h.score), 4) if h.score is not None else None,
|
|
}
|
|
)
|
|
return "\n\n".join(blocks), sources
|
|
|
|
|
|
def search_knowledge_base_with_sources(
|
|
*,
|
|
query: str,
|
|
scope_kb_id: str | None = None,
|
|
scope_thread_id: str | None = None,
|
|
scope_project_id: str | None = None,
|
|
top_k: int | None = None,
|
|
min_score: float = 0.0,
|
|
model_name: str | None = None,
|
|
mode: str = "hybrid",
|
|
) -> tuple[str, list[dict]]:
|
|
"""Search -> ``(rendered_text, citation_sources)``; each source aligns with a
|
|
rendered ``<chunk>`` block's ``id``."""
|
|
if not query or not query.strip():
|
|
return "Error: query is empty.", []
|
|
scope = _resolve_scope(scope_kb_id, scope_thread_id, scope_project_id)
|
|
if scope is None:
|
|
return "No documents are attached to this chat.", []
|
|
|
|
conn = rag_db.get_connection()
|
|
try:
|
|
hits = retrieval.retrieve_hybrid(
|
|
conn,
|
|
scope,
|
|
query,
|
|
k = top_k or config.TOP_K_HYBRID,
|
|
model_name = model_name,
|
|
mode = mode,
|
|
)
|
|
hits = retrieval.filter_min_score(hits, min_score)
|
|
rows = store_rows(conn, hits)
|
|
finally:
|
|
conn.close()
|
|
return _format(rows, hits)
|
|
|
|
|
|
def store_rows(conn, hits):
|
|
"""Hydrate chunk rows for a list of hits."""
|
|
from . import store
|
|
return store.chunks_by_id(conn, [h.chunk_id for h in hits])
|
|
|
|
|
|
def search_for_autoinject(
|
|
*,
|
|
query: str,
|
|
scope_kb_id: str | None = None,
|
|
scope_thread_id: str | None = None,
|
|
scope_project_id: str | None = None,
|
|
top_k: int | None = None,
|
|
min_dense_score: float = 0.70,
|
|
model_name: str | None = None,
|
|
mode: str = "hybrid",
|
|
) -> tuple[str, list[dict]] | None:
|
|
"""Forced-retrieval variant for auto-injection.
|
|
|
|
Returns ``(rendered_text, sources)`` only if some hit's cosine clears
|
|
``min_dense_score``, else ``None`` (inject nothing). The dense gate keeps
|
|
weak/off-topic matches out of answers. In ``lexical`` mode hits carry no
|
|
cosine, so the gate falls back to a dense 1-NN probe.
|
|
"""
|
|
if not query or not query.strip():
|
|
return None
|
|
scope = _resolve_scope(scope_kb_id, scope_thread_id, scope_project_id)
|
|
if scope is None:
|
|
return None
|
|
k = top_k or config.TOP_K_HYBRID
|
|
conn = rag_db.get_connection()
|
|
try:
|
|
hits = retrieval.retrieve_hybrid(
|
|
conn,
|
|
scope,
|
|
query,
|
|
k = k,
|
|
model_name = model_name,
|
|
mode = mode,
|
|
)
|
|
strong = [
|
|
h for h in hits if h.dense_score is not None and h.dense_score >= min_dense_score
|
|
][:k]
|
|
if not strong and hits and mode == "lexical":
|
|
probe = retrieval.retrieve_dense(conn, scope, query, 1, model_name = model_name)
|
|
if (
|
|
probe
|
|
and probe[0].dense_score is not None
|
|
and (probe[0].dense_score >= min_dense_score)
|
|
):
|
|
strong = hits[:k]
|
|
if not strong:
|
|
return None
|
|
rows = store_rows(conn, strong)
|
|
finally:
|
|
conn.close()
|
|
text, sources = _format(rows, strong)
|
|
return (text, sources) if sources else None
|
|
|
|
|
|
def search_knowledge_base(
|
|
*,
|
|
query: str,
|
|
scope_kb_id: str | None = None,
|
|
scope_thread_id: str | None = None,
|
|
scope_project_id: str | None = None,
|
|
top_k: int | None = None,
|
|
min_score: float = 0.0,
|
|
model_name: str | None = None,
|
|
) -> str:
|
|
"""Text-only variant of :func:`search_knowledge_base_with_sources`."""
|
|
text, _sources = search_knowledge_base_with_sources(
|
|
query = query,
|
|
scope_kb_id = scope_kb_id,
|
|
scope_thread_id = scope_thread_id,
|
|
scope_project_id = scope_project_id,
|
|
top_k = top_k,
|
|
min_score = min_score,
|
|
model_name = model_name,
|
|
)
|
|
return text
|