Spaces:
Running
on
T4
Running
on
T4
File size: 12,008 Bytes
be59b6e 4775a9f 8ce4d25 4775a9f be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 4775a9f be59b6e 4775a9f be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e 8ce4d25 be59b6e |
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 |
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 newSrc = e.target.getAttribute('data-image-src');
const img = e.target.closest('.relative').querySelector('.result-image');
img.src = newSrc;
// Remove 'active' class from previously active button
const activeButton = document.querySelector('.sim-map-button.active');
if (activeButton) {
activeButton.classList.remove('active');
}
// Add 'active' class to the clicked button (if it's a sim-map button)
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 = [
"Percentage of non-fresh water as source?",
"Policies related to nature risk?",
"How much of produced water is recycled?",
]
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(
SearchBox(query_value=query_value, ranking_value=ranking_value),
Div(
LoadingMessage(), # Show the loading message initially
id="search-results", # This will be replaced by the search results
),
cls="grid",
),
cls="grid",
)
def LoadingMessage():
return Div(
P("Loading... Please wait.", cls="text-base text-center"),
cls="p-10 text-center text-muted-foreground",
id="loading-indicator",
)
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 result in results:
fields = result["fields"] # Extract the 'fields' part of each result
full_image_base64 = f"data:image/jpeg;base64,{fields['full_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_") and len(key.split("_")[-1]) >= 4
}
# Generate buttons for the sim_map fields
sim_map_buttons = []
for key, value in sim_map_fields.items():
sim_map_base64 = f"data:image/jpeg;base64,{value}"
sim_map_buttons.append(
Button(
key.split("_")[-1],
size="sm",
data_image_src=sim_map_base64,
cls="sim-map-button pointer-events-auto font-mono text-xs h-5 rounded-none px-2",
)
)
# Add "Reset Image" button to restore the full image
reset_button = Button(
"Reset",
variant="outline",
size="sm",
data_image_src=full_image_base64,
cls="reset-button pointer-events-auto font-mono text-xs h-5 rounded-none px-2",
)
# Add "Tokens" button - this has no action, just a placeholder
tokens_button = Button(
Lucide(icon="images", size="15"),
"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",
),
Img(
src=full_image_base64,
alt=fields["title"],
cls="result-image max-w-full h-auto",
),
cls="relative grid gap-px 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(
"Relevance score: " + str(result["relevance"]),
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",
)
)
if query_id is not None:
return Div(
*result_items,
image_swapping,
hx_get=f"/updated_search_results?query_id={query_id}",
hx_trigger="every 1s",
hx_target="#search-results",
hx_swap="outerHTML",
id="search-results",
cls="grid grid-cols-2 gap-px bg-border",
)
else:
return Div(
*result_items,
image_swapping,
id="search-results",
cls="grid grid-cols-2 gap-px bg-border",
)
|