Spaces:
Sleeping
Sleeping
File size: 20,355 Bytes
83c8d2b |
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 |
# Search_Tab.py
# Description: This file contains the code for the search tab in the Gradio UI
#
# Imports
import html
import logging
import sqlite3
#
# External Imports
import gradio as gr
#
# Local Imports
from App_Function_Libraries.DB.DB_Manager import view_database, search_and_display_items
from App_Function_Libraries.DB.SQLite_DB import search_prompts
from App_Function_Libraries.Gradio_UI.Gradio_Shared import update_dropdown, update_detailed_view
from App_Function_Libraries.Utils.Utils import get_database_path
#
###################################################################################################
#
# Functions:
logger = logging.getLogger()
def create_search_tab():
with gr.TabItem("Search / Detailed View"):
with gr.Row():
with gr.Column():
gr.Markdown("# Search across all ingested items in the Database")
gr.Markdown(" by Title / URL / Keyword / or Content via SQLite Full-Text-Search")
search_query_input = gr.Textbox(label="Search Query", placeholder="Enter your search query here...")
search_type_input = gr.Radio(choices=["Title", "URL", "Keyword", "Content"], value="Title", label="Search By")
search_button = gr.Button("Search")
items_output = gr.Dropdown(label="Select Item", choices=[])
item_mapping = gr.State({})
prompt_summary_output = gr.HTML(label="Prompt & Summary", visible=True)
search_button.click(
fn=update_dropdown,
inputs=[search_query_input, search_type_input],
outputs=[items_output, item_mapping]
)
with gr.Column():
content_output = gr.Markdown(label="Content", visible=True)
items_output.change(
fn=update_detailed_view,
inputs=[items_output, item_mapping],
outputs=[prompt_summary_output, content_output]
)
def display_search_results(query):
if not query.strip():
return "Please enter a search query."
results = search_prompts(query)
# Debugging: Print the results to the console to see what is being returned
print(f"Processed search results for query '{query}': {results}")
if results:
result_md = "## Search Results:\n"
for result in results:
# Debugging: Print each result to see its format
print(f"Result item: {result}")
if len(result) == 2:
name, details = result
result_md += f"**Title:** {name}\n\n**Description:** {details}\n\n---\n"
elif len(result) == 4:
name, details, system, user = result
result_md += f"**Title:** {name}\n\n"
result_md += f"**Description:** {details}\n\n"
result_md += f"**System Prompt:** {system}\n\n"
result_md += f"**User Prompt:** {user}\n\n"
result_md += "---\n"
else:
result_md += "Error: Unexpected result format.\n\n---\n"
return result_md
return "No results found."
def create_viewing_tab():
with gr.TabItem("View Database"):
gr.Markdown("# View Database Entries")
with gr.Row():
with gr.Column():
entries_per_page = gr.Dropdown(choices=[10, 20, 50, 100], label="Entries per Page", value=10)
page_number = gr.Number(value=1, label="Page Number", precision=0)
view_button = gr.Button("View Page")
next_page_button = gr.Button("Next Page")
previous_page_button = gr.Button("Previous Page")
with gr.Column():
results_display = gr.HTML()
pagination_info = gr.Textbox(label="Pagination Info", interactive=False)
def update_page(page, entries_per_page):
results, pagination, total_pages = view_database(page, entries_per_page)
next_disabled = page >= total_pages
prev_disabled = page <= 1
return results, pagination, page, gr.update(interactive=not next_disabled), gr.update(interactive=not prev_disabled)
def go_to_next_page(current_page, entries_per_page):
next_page = current_page + 1
return update_page(next_page, entries_per_page)
def go_to_previous_page(current_page, entries_per_page):
previous_page = max(1, current_page - 1)
return update_page(previous_page, entries_per_page)
view_button.click(
fn=update_page,
inputs=[page_number, entries_per_page],
outputs=[results_display, pagination_info, page_number, next_page_button, previous_page_button]
)
next_page_button.click(
fn=go_to_next_page,
inputs=[page_number, entries_per_page],
outputs=[results_display, pagination_info, page_number, next_page_button, previous_page_button]
)
previous_page_button.click(
fn=go_to_previous_page,
inputs=[page_number, entries_per_page],
outputs=[results_display, pagination_info, page_number, next_page_button, previous_page_button]
)
def create_search_summaries_tab():
with gr.TabItem("Search/View Title+Summary "):
gr.Markdown("# Search across all ingested items in the Database and review their summaries")
gr.Markdown("Search by Title / URL / Keyword / or Content via SQLite Full-Text-Search")
with gr.Row():
with gr.Column():
search_query_input = gr.Textbox(label="Search Query", placeholder="Enter your search query here...")
search_type_input = gr.Radio(choices=["Title", "URL", "Keyword", "Content"], value="Title",
label="Search By")
entries_per_page = gr.Dropdown(choices=[10, 20, 50, 100], label="Entries per Page", value=10)
page_number = gr.Number(value=1, label="Page Number", precision=0)
char_count_input = gr.Number(value=5000, label="Amount of characters to display from the main content",
precision=0)
with gr.Column():
search_button = gr.Button("Search")
next_page_button = gr.Button("Next Page")
previous_page_button = gr.Button("Previous Page")
pagination_info = gr.Textbox(label="Pagination Info", interactive=False)
search_results_output = gr.HTML()
def update_search_page(query, search_type, page, entries_per_page, char_count):
# Ensure char_count is a positive integer
char_count = max(1, int(char_count)) if char_count else 5000
results, pagination, total_pages = search_and_display_items(query, search_type, page, entries_per_page, char_count)
next_disabled = page >= total_pages
prev_disabled = page <= 1
return results, pagination, page, gr.update(interactive=not next_disabled), gr.update(
interactive=not prev_disabled)
def go_to_next_search_page(query, search_type, current_page, entries_per_page, char_count):
next_page = current_page + 1
return update_search_page(query, search_type, next_page, entries_per_page, char_count)
def go_to_previous_search_page(query, search_type, current_page, entries_per_page, char_count):
previous_page = max(1, current_page - 1)
return update_search_page(query, search_type, previous_page, entries_per_page, char_count)
search_button.click(
fn=update_search_page,
inputs=[search_query_input, search_type_input, page_number, entries_per_page, char_count_input],
outputs=[search_results_output, pagination_info, page_number, next_page_button, previous_page_button]
)
next_page_button.click(
fn=go_to_next_search_page,
inputs=[search_query_input, search_type_input, page_number, entries_per_page, char_count_input],
outputs=[search_results_output, pagination_info, page_number, next_page_button, previous_page_button]
)
previous_page_button.click(
fn=go_to_previous_search_page,
inputs=[search_query_input, search_type_input, page_number, entries_per_page, char_count_input],
outputs=[search_results_output, pagination_info, page_number, next_page_button, previous_page_button]
)
def create_prompt_view_tab():
with gr.TabItem("View Prompt Database"):
gr.Markdown("# View Prompt Database Entries")
with gr.Row():
with gr.Column():
entries_per_page = gr.Dropdown(choices=[10, 20, 50, 100], label="Entries per Page", value=10)
page_number = gr.Number(value=1, label="Page Number", precision=0)
view_button = gr.Button("View Page")
next_page_button = gr.Button("Next Page")
previous_page_button = gr.Button("Previous Page")
with gr.Column():
pagination_info = gr.Textbox(label="Pagination Info", interactive=False)
results_display = gr.HTML()
# FIXME - SQL functions to be moved to DB_Manager
def view_database(page, entries_per_page):
offset = (page - 1) * entries_per_page
try:
with sqlite3.connect(get_database_path('prompts.db')) as conn:
cursor = conn.cursor()
cursor.execute('''
SELECT p.name, p.details, p.system, p.user, GROUP_CONCAT(k.keyword, ', ') as keywords
FROM Prompts p
LEFT JOIN PromptKeywords pk ON p.id = pk.prompt_id
LEFT JOIN Keywords k ON pk.keyword_id = k.id
GROUP BY p.id
ORDER BY p.name
LIMIT ? OFFSET ?
''', (entries_per_page, offset))
prompts = cursor.fetchall()
cursor.execute('SELECT COUNT(*) FROM Prompts')
total_prompts = cursor.fetchone()[0]
results = ""
for prompt in prompts:
# Escape HTML special characters and replace newlines with <br> tags
title = html.escape(prompt[0]).replace('\n', '<br>')
details = html.escape(prompt[1] or '').replace('\n', '<br>')
system_prompt = html.escape(prompt[2] or '')
user_prompt = html.escape(prompt[3] or '')
keywords = html.escape(prompt[4] or '').replace('\n', '<br>')
results += f"""
<div style="border: 1px solid #ddd; padding: 10px; margin-bottom: 20px;">
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 10px;">
<div><strong>Title:</strong> {title}</div>
<div><strong>Details:</strong> {details}</div>
</div>
<div style="margin-top: 10px;">
<strong>User Prompt:</strong>
<pre style="white-space: pre-wrap; word-wrap: break-word;">{user_prompt}</pre>
</div>
<div style="margin-top: 10px;">
<strong>System Prompt:</strong>
<pre style="white-space: pre-wrap; word-wrap: break-word;">{system_prompt}</pre>
</div>
<div style="margin-top: 10px;">
<strong>Keywords:</strong> {keywords}
</div>
</div>
"""
total_pages = (total_prompts + entries_per_page - 1) // entries_per_page
pagination = f"Page {page} of {total_pages} (Total prompts: {total_prompts})"
return results, pagination, total_pages
except sqlite3.Error as e:
return f"<p>Error fetching prompts: {e}</p>", "Error", 0
def update_page(page, entries_per_page):
results, pagination, total_pages = view_database(page, entries_per_page)
next_disabled = page >= total_pages
prev_disabled = page <= 1
return results, pagination, page, gr.update(interactive=not next_disabled), gr.update(
interactive=not prev_disabled)
def go_to_next_page(current_page, entries_per_page):
next_page = current_page + 1
return update_page(next_page, entries_per_page)
def go_to_previous_page(current_page, entries_per_page):
previous_page = max(1, current_page - 1)
return update_page(previous_page, entries_per_page)
view_button.click(
fn=update_page,
inputs=[page_number, entries_per_page],
outputs=[results_display, pagination_info, page_number, next_page_button, previous_page_button]
)
next_page_button.click(
fn=go_to_next_page,
inputs=[page_number, entries_per_page],
outputs=[results_display, pagination_info, page_number, next_page_button, previous_page_button]
)
previous_page_button.click(
fn=go_to_previous_page,
inputs=[page_number, entries_per_page],
outputs=[results_display, pagination_info, page_number, next_page_button, previous_page_button]
)
def create_prompt_search_tab():
with gr.TabItem("Search Prompts"):
gr.Markdown("# Search and View Prompt Details")
gr.Markdown("Currently has all of the https://github.com/danielmiessler/fabric prompts already available")
with gr.Row():
with gr.Column():
search_query_input = gr.Textbox(label="Search Prompts", placeholder="Enter your search query...")
entries_per_page = gr.Dropdown(choices=[10, 20, 50, 100], label="Entries per Page", value=10)
page_number = gr.Number(value=1, label="Page Number", precision=0)
with gr.Column():
search_button = gr.Button("Search Prompts")
next_page_button = gr.Button("Next Page")
previous_page_button = gr.Button("Previous Page")
pagination_info = gr.Textbox(label="Pagination Info", interactive=False)
search_results_output = gr.HTML()
# This is dirty and shouldn't be in the UI code, but it's a quick way to get the search working.
# FIXME - SQL functions to be moved to DB_Manager
def search_and_display_prompts(query, page, entries_per_page):
offset = (page - 1) * entries_per_page
try:
# FIXME - SQL functions to be moved to DB_Manager
with sqlite3.connect(get_database_path('prompts.db')) as conn:
cursor = conn.cursor()
cursor.execute('''
SELECT p.name, p.details, p.system, p.user, GROUP_CONCAT(k.keyword, ', ') as keywords
FROM Prompts p
LEFT JOIN PromptKeywords pk ON p.id = pk.prompt_id
LEFT JOIN Keywords k ON pk.keyword_id = k.id
WHERE p.name LIKE ? OR p.details LIKE ? OR p.system LIKE ? OR p.user LIKE ? OR k.keyword LIKE ?
GROUP BY p.id
ORDER BY p.name
LIMIT ? OFFSET ?
''', (f'%{query}%', f'%{query}%', f'%{query}%', f'%{query}%', f'%{query}%', entries_per_page, offset))
prompts = cursor.fetchall()
cursor.execute('''
SELECT COUNT(DISTINCT p.id)
FROM Prompts p
LEFT JOIN PromptKeywords pk ON p.id = pk.prompt_id
LEFT JOIN Keywords k ON pk.keyword_id = k.id
WHERE p.name LIKE ? OR p.details LIKE ? OR p.system LIKE ? OR p.user LIKE ? OR k.keyword LIKE ?
''', (f'%{query}%', f'%{query}%', f'%{query}%', f'%{query}%', f'%{query}%'))
total_prompts = cursor.fetchone()[0]
results = ""
for prompt in prompts:
title = html.escape(prompt[0]).replace('\n', '<br>')
details = html.escape(prompt[1] or '').replace('\n', '<br>')
system_prompt = html.escape(prompt[2] or '')
user_prompt = html.escape(prompt[3] or '')
keywords = html.escape(prompt[4] or '').replace('\n', '<br>')
results += f"""
<div style="border: 1px solid #ddd; padding: 10px; margin-bottom: 20px;">
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 10px;">
<div><strong>Title:</strong> {title}</div>
<div><strong>Details:</strong> {details}</div>
</div>
<div style="margin-top: 10px;">
<strong>User Prompt:</strong>
<pre style="white-space: pre-wrap; word-wrap: break-word;">{user_prompt}</pre>
</div>
<div style="margin-top: 10px;">
<strong>System Prompt:</strong>
<pre style="white-space: pre-wrap; word-wrap: break-word;">{system_prompt}</pre>
</div>
<div style="margin-top: 10px;">
<strong>Keywords:</strong> {keywords}
</div>
</div>
"""
total_pages = (total_prompts + entries_per_page - 1) // entries_per_page
pagination = f"Page {page} of {total_pages} (Total prompts: {total_prompts})"
return results, pagination, total_pages
except sqlite3.Error as e:
return f"<p>Error searching prompts: {e}</p>", "Error", 0
def update_search_page(query, page, entries_per_page):
results, pagination, total_pages = search_and_display_prompts(query, page, entries_per_page)
next_disabled = page >= total_pages
prev_disabled = page <= 1
return results, pagination, page, gr.update(interactive=not next_disabled), gr.update(interactive=not prev_disabled)
def go_to_next_search_page(query, current_page, entries_per_page):
next_page = current_page + 1
return update_search_page(query, next_page, entries_per_page)
def go_to_previous_search_page(query, current_page, entries_per_page):
previous_page = max(1, current_page - 1)
return update_search_page(query, previous_page, entries_per_page)
search_button.click(
fn=update_search_page,
inputs=[search_query_input, page_number, entries_per_page],
outputs=[search_results_output, pagination_info, page_number, next_page_button, previous_page_button]
)
next_page_button.click(
fn=go_to_next_search_page,
inputs=[search_query_input, page_number, entries_per_page],
outputs=[search_results_output, pagination_info, page_number, next_page_button, previous_page_button]
)
previous_page_button.click(
fn=go_to_previous_search_page,
inputs=[search_query_input, page_number, entries_per_page],
outputs=[search_results_output, pagination_info, page_number, next_page_button, previous_page_button]
)
|