Spaces:
Running
on
T4
Running
on
T4
File size: 15,250 Bytes
be59b6e 4775a9f 8ce4d25 4775a9f be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e bb4f59a be59b6e bb4f59a be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 b7897bb 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 b7897bb ad76a25 8ce4d25 b7897bb 8ce4d25 1f02318 b7897bb 1f02318 8ce4d25 3b2eca4 ad76a25 3b2eca4 bb4f59a 3b2eca4 be59b6e 8ce4d25 3b2eca4 8ce4d25 b7897bb be59b6e 3b2eca4 be59b6e 3b2eca4 58f4c48 3b2eca4 be59b6e b7897bb be59b6e 1f02318 3b2eca4 1f02318 be59b6e 1f02318 be59b6e 8ce4d25 1f02318 8ce4d25 be59b6e bb4f59a be59b6e bb4f59a b7897bb bb4f59a be59b6e bb4f59a 8ce4d25 be59b6e 4775a9f 87544bc 4775a9f be59b6e 4775a9f be59b6e 8ce4d25 be59b6e 8ce4d25 b7897bb 8ce4d25 b7897bb 3b2eca4 b7897bb |
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 |
from typing import Optional
from urllib.parse import quote_plus
from fasthtml.components import H1, H2, Div, Form, Img, NotStr, P, Span
from fasthtml.xtend import A, Script
from lucide_fasthtml import Lucide
from shad4fast import Badge, Button, Input, Label, RadioGroup, RadioGroupItem
# JavaScript to check the input value and enable/disable the search button and radio buttons
check_input_script = Script(
"""
window.onload = function() {
const input = document.getElementById('search-input');
const button = document.querySelector('[data-button="search-button"]');
const radioGroupItems = document.querySelectorAll('button[data-ref="radio-item"]'); // Get all radio buttons
function checkInputValue() {
const isInputEmpty = input.value.trim() === "";
button.disabled = isInputEmpty; // Disable the submit button
radioGroupItems.forEach(item => {
item.disabled = isInputEmpty; // Disable/enable the radio buttons
});
}
input.addEventListener('input', checkInputValue); // Listen for input changes
checkInputValue(); // Initial check when the page loads
};
"""
)
# JavaScript to handle the image swapping, reset button, and active class toggling
image_swapping = Script(
"""
document.addEventListener('click', function (e) {
if (e.target.classList.contains('sim-map-button') || e.target.classList.contains('reset-button')) {
const imgContainer = e.target.closest('.relative');
const overlayContainer = imgContainer.querySelector('.overlay-container');
const newSrc = e.target.getAttribute('data-image-src');
// If it's a reset button, remove the overlay image
if (e.target.classList.contains('reset-button')) {
overlayContainer.innerHTML = ''; // Clear the overlay container, showing only the full image
} else {
// Create a new overlay image
const img = document.createElement('img');
img.src = newSrc;
img.classList.add('overlay-image', 'absolute', 'top-0', 'left-0', 'w-full', 'h-full');
overlayContainer.innerHTML = ''; // Clear any previous overlay
overlayContainer.appendChild(img); // Add the new overlay image
}
// Toggle active class on buttons
const activeButton = document.querySelector('.sim-map-button.active');
if (activeButton) {
activeButton.classList.remove('active');
}
if (e.target.classList.contains('sim-map-button')) {
e.target.classList.add('active');
}
}
});
"""
)
def SearchBox(with_border=False, query_value="", ranking_value="nn+colpali"):
grid_cls = "grid gap-2 items-center p-3 bg-muted/80 dark:bg-muted/40 w-full"
if with_border:
grid_cls = "grid gap-2 p-3 rounded-md border border-input bg-muted/80 dark:bg-muted/40 w-full ring-offset-background focus-within:outline-none focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2 focus-within:border-input"
return Form(
Div(
Lucide(icon="search", cls="absolute left-2 top-2 text-muted-foreground"),
Input(
placeholder="Enter your search query...",
name="query",
value=query_value,
id="search-input",
cls="text-base pl-10 border-transparent ring-offset-transparent ring-0 focus-visible:ring-transparent",
style="font-size: 1rem",
autofocus=True,
),
cls="relative",
),
Div(
Div(
Span("Ranking by:", cls="text-muted-foreground text-xs font-semibold"),
RadioGroup(
Div(
RadioGroupItem(value="nn+colpali", id="nn+colpali"),
Label("nn+colpali", htmlFor="nn+colpali"),
cls="flex items-center space-x-2",
),
Div(
RadioGroupItem(value="bm25+colpali", id="bm25+colpali"),
Label("bm25+colpali", htmlFor="bm25+colpali"),
cls="flex items-center space-x-2",
),
Div(
RadioGroupItem(value="bm25", id="bm25"),
Label("bm25", htmlFor="bm25"),
cls="flex items-center space-x-2",
),
name="ranking",
default_value=ranking_value,
cls="grid-flow-col gap-x-5 text-muted-foreground",
),
cls="grid grid-flow-col items-center gap-x-3 border border-input px-3 rounded-sm",
),
Button(
Lucide(icon="arrow-right", size="21"),
size="sm",
type="submit",
data_button="search-button",
disabled=True,
),
cls="flex justify-between",
),
check_input_script,
action=f"/search?query={quote_plus(query_value)}&ranking={quote_plus(ranking_value)}",
method="GET",
hx_get=f"/fetch_results?query={quote_plus(query_value)}&ranking={quote_plus(ranking_value)}",
hx_trigger="load",
hx_target="#search-results",
hx_swap="outerHTML",
hx_indicator="#loading-indicator",
cls=grid_cls,
)
def SampleQueries():
sample_queries = [
"Proportion of female new hires 2021-2023?",
"Total amount of performance-based pay awarded in 2023?",
"What is the percentage distribution of employees with performance-based pay relative to the limit in 2023?",
"What is the breakdown of management costs by investment strategy in 2023?",
"2023 profit loss portfolio",
"net cash flow operating activities",
"fund currency basket returns",
]
query_badges = []
for query in sample_queries:
query_badges.append(
A(
Badge(
Div(
Lucide(
icon="text-search", size="18", cls="text-muted-foreground"
),
Span(query, cls="text-base font-normal"),
cls="flex gap-2 items-center",
),
variant="outline",
cls="text-base font-normal text-muted-foreground hover:border-black dark:hover:border-white",
),
href=f"/search?query={quote_plus(query)}",
cls="no-underline",
)
)
return Div(*query_badges, cls="grid gap-2 justify-items-center")
def Hero():
return Div(
H1(
"Vespa.ai + ColPali",
cls="text-5xl md:text-7xl font-bold tracking-wide md:tracking-wider bg-clip-text text-transparent bg-gradient-to-r from-black to-gray-700 dark:from-white dark:to-gray-300 animate-fade-in",
),
P(
"Efficient Document Retrieval with Vision Language Models",
cls="text-lg md:text-2xl text-muted-foreground md:tracking-wide",
),
cls="grid gap-5 text-center",
)
def Home():
return Div(
Div(
Hero(),
SearchBox(with_border=True),
SampleQueries(),
cls="grid gap-8 -mt-[34vh]",
),
cls="grid w-full h-full max-w-screen-md items-center gap-4 mx-auto",
)
def Search(request, search_results=[]):
query_value = request.query_params.get("query", "").strip()
ranking_value = request.query_params.get("ranking", "nn+colpali")
print(
f"Search: Fetching results for query: {query_value}, ranking: {ranking_value}"
)
return Div(
Div(
Div(
SearchBox(query_value=query_value, ranking_value=ranking_value),
Div(
LoadingMessage(),
id="search-results", # This will be replaced by the search results
),
cls="grid",
),
cls="grid",
),
)
def LoadingMessage(display_text="Retrieving search results"):
return Div(
Lucide(icon="loader-circle", cls="size-5 mr-1.5 animate-spin"),
Span(display_text, cls="text-base text-center"),
cls="p-10 text-muted-foreground flex items-center justify-center",
id="loading-indicator",
)
def SimMapButtonReady(query_id, idx, token, img_src):
return Button(
token,
size="sm",
data_image_src=img_src,
id=f"sim-map-button-{query_id}-{idx}-{token}",
cls="sim-map-button pointer-events-auto font-mono text-xs h-5 rounded-none px-2",
)
def SimMapButtonPoll(query_id, idx, token):
return Button(
Lucide(icon="loader-circle", size="15", cls="animate-spin"),
size="sm",
disabled=True,
hx_get=f"/get_sim_map?query_id={query_id}&idx={idx}&token={token}",
# Poll every x seconds, where x is 0.3 x idx, formatted to 2 decimals
hx_trigger=f"every {(idx+1)*0.3:.2f}s",
hx_swap="outerHTML",
cls="pointer-events-auto text-xs h-5 rounded-none px-2",
)
def SearchResult(results: list, query_id: Optional[str] = None):
if not results:
return Div(
P(
"No results found for your query.",
cls="text-muted-foreground text-base text-center",
),
cls="grid p-10",
)
# Otherwise, display the search results
result_items = []
for idx, result in enumerate(results):
fields = result["fields"] # Extract the 'fields' part of each result
blur_image_base64 = f"data:image/jpeg;base64,{fields['blur_image']}"
# Filter sim_map fields that are words with 4 or more characters
sim_map_fields = {
key: value
for key, value in fields.items()
if key.startswith(
"sim_map_"
) # filtering is done before creating with 'is_special_token'-function
}
# Generate buttons for the sim_map fields
sim_map_buttons = []
for key, value in sim_map_fields.items():
if value is not None:
sim_map_base64 = f"data:image/jpeg;base64,{value}"
sim_map_buttons.append(
SimMapButtonReady(
query_id=query_id,
idx=idx,
token=key.split("_")[-1],
img_src=sim_map_base64,
)
)
else:
sim_map_buttons.append(
SimMapButtonPoll(
query_id=query_id, idx=idx, token=key.split("_")[-1]
)
)
# Add "Reset Image" button to restore the full image
reset_button = Button(
"Reset",
variant="outline",
size="sm",
data_image_src=blur_image_base64,
cls="reset-button pointer-events-auto font-mono text-xs h-5 rounded-none px-2",
)
tokens_icon = Lucide(icon="images", size="15")
# Add "Tokens" button - this has no action, just a placeholder
tokens_button = Button(
tokens_icon,
"Tokens",
size="sm",
cls="tokens-button flex gap-[3px] font-bold pointer-events-none font-mono text-xs h-5 rounded-none px-2",
)
result_items.append(
Div(
Div(
Div(
tokens_button,
*sim_map_buttons,
reset_button,
cls="flex flex-wrap gap-px w-full pointer-events-none",
),
Div(
Div(
Img(
src=blur_image_base64,
hx_get=f"/full_image?id={fields['id']}",
style="filter: blur(5px);",
hx_trigger="load",
hx_swap="outerHTML",
alt=fields["title"],
cls="result-image w-full h-full object-contain",
),
Div(
cls="overlay-container absolute top-0 left-0 w-full h-full pointer-events-none"
),
cls="relative w-full h-full",
),
cls="grid bg-border p-2",
),
cls="relative grid content-start bg-background px-3 py-5",
),
Div(
Div(
H2(fields["title"], cls="text-xl font-semibold"),
P(
"Page " + str(fields["page_number"]),
cls="text-foreground font-mono bold",
),
Div(
Badge(
f"Relevance score: {result['relevance']:.4f}",
cls="flex gap-1.5 items-center justify-center",
),
),
P(
NotStr(fields.get("snippet", "")),
cls="text-highlight text-muted-foreground",
),
P(
NotStr(fields.get("text", "")),
cls="text-highlight text-muted-foreground",
),
cls="text-sm grid gap-y-4",
),
cls="bg-background px-3 py-5 hidden md:block",
),
cls="grid grid-cols-1 md:grid-cols-2 col-span-2 border-t",
)
)
return Div(
*result_items,
image_swapping,
id="search-results",
cls="grid grid-cols-2 gap-px bg-border",
)
def ChatResult(query_id: str, query: str):
return Div(
Div("Chat", cls="text-xl font-semibold p-3"),
Div(
Div(
Div(
LoadingMessage(display_text="Waiting for response..."),
cls="bg-muted/80 dark:bg-muted/40 text-black dark:text-white p-2 rounded-md",
hx_ext="sse",
sse_connect=f"/get-message?query_id={query_id}&query={quote_plus(query)}",
sse_swap="message",
sse_close="close",
hx_swap="innerHTML",
),
),
id="chat-messages",
cls="overflow-auto min-h-0 grid items-end px-3",
),
cls="h-full grid grid-rows-[auto_1fr_auto] min-h-0 gap-3",
)
|