Spaces:
Running
Running
File size: 26,136 Bytes
e04fa0c |
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 |
# Gradio_Related.py
#########################################
# Gradio UI Functions Library
# I fucking hate Gradio.
#
#########################################
#
# Built-In Imports
import logging
import os
import webbrowser
#
# Import 3rd-Party Libraries
import gradio as gr
#
# Local Imports
from App_Function_Libraries.DB.DB_Manager import get_db_config, backup_dir
from App_Function_Libraries.DB.RAG_QA_Chat_DB import create_tables
from App_Function_Libraries.Gradio_UI.Anki_tab import create_anki_validation_tab, create_anki_generator_tab
from App_Function_Libraries.Gradio_UI.Arxiv_tab import create_arxiv_tab
from App_Function_Libraries.Gradio_UI.Audio_ingestion_tab import create_audio_processing_tab
from App_Function_Libraries.Gradio_UI.Backup_RAG_Notes_Character_Chat_tab import create_database_management_interface
from App_Function_Libraries.Gradio_UI.Book_Ingestion_tab import create_import_book_tab
from App_Function_Libraries.Gradio_UI.Character_Chat_tab import create_character_card_interaction_tab, create_character_chat_mgmt_tab, create_custom_character_card_tab, \
create_character_card_validation_tab, create_export_characters_tab
from App_Function_Libraries.Gradio_UI.Character_interaction_tab import create_narrator_controlled_conversation_tab, \
create_multiple_character_chat_tab
from App_Function_Libraries.Gradio_UI.Chat_ui import create_chat_interface_four, create_chat_interface_multi_api, \
create_chat_interface_stacked, create_chat_interface
from App_Function_Libraries.Gradio_UI.Config_tab import create_config_editor_tab
from App_Function_Libraries.Gradio_UI.Explain_summarize_tab import create_summarize_explain_tab
from App_Function_Libraries.Gradio_UI.Export_Functionality import create_rag_export_tab, create_export_tabs
#from App_Function_Libraries.Gradio_UI.Backup_Functionality import create_backup_tab, create_view_backups_tab, \
# create_restore_backup_tab
from App_Function_Libraries.Gradio_UI.Import_Functionality import create_import_single_prompt_tab, \
create_import_obsidian_vault_tab, create_import_item_tab, create_import_multiple_prompts_tab, \
create_conversation_import_tab
from App_Function_Libraries.Gradio_UI.Introduction_tab import create_introduction_tab
from App_Function_Libraries.Gradio_UI.Keywords import create_view_keywords_tab, create_add_keyword_tab, \
create_delete_keyword_tab, create_export_keywords_tab, create_rag_qa_keywords_tab, create_character_keywords_tab, \
create_meta_keywords_tab, create_prompt_keywords_tab
from App_Function_Libraries.Gradio_UI.Live_Recording import create_live_recording_tab
from App_Function_Libraries.Gradio_UI.Llamafile_tab import create_chat_with_llamafile_tab
#from App_Function_Libraries.Gradio_UI.MMLU_Pro_tab import create_mmlu_pro_tab
from App_Function_Libraries.Gradio_UI.Media_edit import create_prompt_clone_tab, create_prompt_edit_tab, \
create_media_edit_and_clone_tab, create_media_edit_tab
from App_Function_Libraries.Gradio_UI.Media_wiki_tab import create_mediawiki_import_tab, create_mediawiki_config_tab
from App_Function_Libraries.Gradio_UI.Mind_Map_tab import create_mindmap_tab
from App_Function_Libraries.Gradio_UI.PDF_ingestion_tab import create_pdf_ingestion_tab, create_pdf_ingestion_test_tab
from App_Function_Libraries.Gradio_UI.Plaintext_tab_import import create_plain_text_import_tab
from App_Function_Libraries.Gradio_UI.Podcast_tab import create_podcast_tab
from App_Function_Libraries.Gradio_UI.Prompt_Suggestion_tab import create_prompt_suggestion_tab
from App_Function_Libraries.Gradio_UI.RAG_QA_Chat_tab import create_rag_qa_chat_tab, create_rag_qa_notes_management_tab, \
create_rag_qa_chat_management_tab
from App_Function_Libraries.Gradio_UI.Re_summarize_tab import create_resummary_tab
from App_Function_Libraries.Gradio_UI.Search_Tab import create_prompt_search_tab, \
create_search_summaries_tab, create_search_tab
from App_Function_Libraries.Gradio_UI.RAG_Chat_tab import create_rag_tab
from App_Function_Libraries.Gradio_UI.Embeddings_tab import create_embeddings_tab, create_view_embeddings_tab, \
create_purge_embeddings_tab
from App_Function_Libraries.Gradio_UI.Semantic_Scholar_tab import create_semantic_scholar_tab
from App_Function_Libraries.Gradio_UI.Trash import create_view_trash_tab, create_empty_trash_tab, \
create_delete_trash_tab, create_search_and_mark_trash_tab
from App_Function_Libraries.Gradio_UI.Utilities import create_utilities_yt_timestamp_tab, create_utilities_yt_audio_tab, \
create_utilities_yt_video_tab
from App_Function_Libraries.Gradio_UI.Video_transcription_tab import create_video_transcription_tab
from App_Function_Libraries.Gradio_UI.View_tab import create_manage_items_tab
from App_Function_Libraries.Gradio_UI.Website_scraping_tab import create_website_scraping_tab
from App_Function_Libraries.Gradio_UI.Workflows_tab import chat_workflows_tab
from App_Function_Libraries.Gradio_UI.View_DB_Items_tab import create_view_all_mediadb_with_versions_tab, \
create_viewing_mediadb_tab, create_view_all_rag_notes_tab, create_viewing_ragdb_tab, \
create_mediadb_keyword_search_tab, create_ragdb_keyword_items_tab
from App_Function_Libraries.Gradio_UI.Prompts_tab import create_prompt_view_tab, create_prompts_export_tab
#
# Gradio UI Imports
from App_Function_Libraries.Gradio_UI.Evaluations_Benchmarks_tab import create_geval_tab, create_infinite_bench_tab
from App_Function_Libraries.Gradio_UI.XML_Ingestion_Tab import create_xml_import_tab
#from App_Function_Libraries.Local_LLM.Local_LLM_huggingface import create_huggingface_tab
from App_Function_Libraries.Local_LLM.Local_LLM_ollama import create_ollama_tab
from App_Function_Libraries.Utils.Utils import load_and_log_configs
#
#######################################################################################################################
# Function Definitions
#
# Disable Gradio Analytics
os.environ['GRADIO_ANALYTICS_ENABLED'] = 'False'
custom_prompt_input = None
server_mode = False
share_public = False
custom_prompt_summarize_bulleted_notes = ("""
<s>You are a bulleted notes specialist. [INST]```When creating comprehensive bulleted notes, you should follow these guidelines: Use multiple headings based on the referenced topics, not categories like quotes or terms. Headings should be surrounded by bold formatting and not be listed as bullet points themselves. Leave no space between headings and their corresponding list items underneath. Important terms within the content should be emphasized by setting them in bold font. Any text that ends with a colon should also be bolded. Before submitting your response, review the instructions, and make any corrections necessary to adhered to the specified format. Do not reference these instructions within the notes.``` \nBased on the content between backticks create comprehensive bulleted notes.[/INST]
**Bulleted Note Creation Guidelines**
**Headings**:
- Based on referenced topics, not categories like quotes or terms
- Surrounded by **bold** formatting
- Not listed as bullet points
- No space between headings and list items underneath
**Emphasis**:
- **Important terms** set in bold font
- **Text ending in a colon**: also bolded
**Review**:
- Ensure adherence to specified format
- Do not reference these instructions in your response.</s>[INST] {{ .Prompt }} [/INST]
""")
#
# End of globals
#######################################################################################################################
#
# Start of Video/Audio Transcription and Summarization Functions
#
# Functions:
# FIXME
#
#
################################################################################################################
# Functions for Re-Summarization
#
# Functions:
# FIXME
# End of Re-Summarization Functions
#
############################################################################################################################################################################################################################
#
# Explain/Summarize This Tab
#
# Functions:
# FIXME
#
#
############################################################################################################################################################################################################################
#
# Transcript Comparison Tab
#
# Functions:
# FIXME
#
#
###########################################################################################################################################################################################################################
#
# Search Tab
#
# Functions:
# FIXME
#
# End of Search Tab Functions
#
##############################################################################################################################################################################################################################
#
# Llamafile Tab
#
# Functions:
# FIXME
#
# End of Llamafile Tab Functions
##############################################################################################################################################################################################################################
#
# Chat Interface Tab Functions
#
# Functions:
# FIXME
#
#
# End of Chat Interface Tab Functions
################################################################################################################################################################################################################################
#
# Media Edit Tab Functions
# Functions:
# Fixme
# create_media_edit_tab():
##### Trash Tab
# FIXME
# Functions:
#
# End of Media Edit Tab Functions
################################################################################################################
#
# Import Items Tab Functions
#
# Functions:
#FIXME
# End of Import Items Tab Functions
################################################################################################################
#
# Export Items Tab Functions
#
# Functions:
# FIXME
#
#
# End of Export Items Tab Functions
################################################################################################################
#
# Keyword Management Tab Functions
#
# Functions:
# create_view_keywords_tab():
# FIXME
#
# End of Keyword Management Tab Functions
################################################################################################################
#
# Document Editing Tab Functions
#
# Functions:
# #FIXME
#
#
################################################################################################################
#
# Utilities Tab Functions
# Functions:
# create_utilities_yt_video_tab():
# #FIXME
#
# End of Utilities Tab Functions
################################################################################################################
# FIXME - Prompt sample box
#
# # Sample data
# prompts_category_1 = [
# "What are the key points discussed in the video?",
# "Summarize the main arguments made by the speaker.",
# "Describe the conclusions of the study presented."
# ]
#
# prompts_category_2 = [
# "How does the proposed solution address the problem?",
# "What are the implications of the findings?",
# "Can you explain the theory behind the observed phenomenon?"
# ]
#
# all_prompts2 = prompts_category_1 + prompts_category_2
#######################################################################################################################
#
# Migration Script
import sqlite3
import uuid
import logging
import os
from datetime import datetime
import shutil
# def migrate_media_db_to_rag_chat_db(media_db_path, rag_chat_db_path):
# # Check if migration is needed
# if not os.path.exists(media_db_path):
# logging.info("Media DB does not exist. No migration needed.")
# return
#
# # Optional: Check if migration has already been completed
# migration_flag = os.path.join(os.path.dirname(rag_chat_db_path), 'migration_completed.flag')
# if os.path.exists(migration_flag):
# logging.info("Migration already completed. Skipping migration.")
# return
#
# # Backup databases
# backup_database(media_db_path)
# backup_database(rag_chat_db_path)
#
# # Connect to both databases
# try:
# media_conn = sqlite3.connect(media_db_path)
# rag_conn = sqlite3.connect(rag_chat_db_path)
#
# # Enable foreign key support
# media_conn.execute('PRAGMA foreign_keys = ON;')
# rag_conn.execute('PRAGMA foreign_keys = ON;')
#
# media_cursor = media_conn.cursor()
# rag_cursor = rag_conn.cursor()
#
# # Begin transaction
# rag_conn.execute('BEGIN TRANSACTION;')
#
# # Extract conversations from media DB
# media_cursor.execute('''
# SELECT id, media_id, media_name, conversation_name, created_at, updated_at
# FROM ChatConversations
# ''')
# conversations = media_cursor.fetchall()
#
# for conv in conversations:
# old_conv_id, media_id, media_name, conversation_name, created_at, updated_at = conv
#
# # Convert timestamps if necessary
# created_at = parse_timestamp(created_at)
# updated_at = parse_timestamp(updated_at)
#
# # Generate a new conversation_id
# conversation_id = str(uuid.uuid4())
# title = conversation_name or (f"{media_name}-chat" if media_name else "Untitled Conversation")
#
# # Insert into conversation_metadata
# rag_cursor.execute('''
# INSERT INTO conversation_metadata (conversation_id, created_at, last_updated, title, media_id)
# VALUES (?, ?, ?, ?, ?)
# ''', (conversation_id, created_at, updated_at, title, media_id))
#
# # Extract messages from media DB
# media_cursor.execute('''
# SELECT sender, message, timestamp
# FROM ChatMessages
# WHERE conversation_id = ?
# ORDER BY timestamp ASC
# ''', (old_conv_id,))
# messages = media_cursor.fetchall()
#
# for msg in messages:
# sender, content, timestamp = msg
#
# # Convert timestamp if necessary
# timestamp = parse_timestamp(timestamp)
#
# role = sender # Assuming 'sender' is 'user' or 'ai'
#
# # Insert message into rag_qa_chats
# rag_cursor.execute('''
# INSERT INTO rag_qa_chats (conversation_id, timestamp, role, content)
# VALUES (?, ?, ?, ?)
# ''', (conversation_id, timestamp, role, content))
#
# # Commit transaction
# rag_conn.commit()
# logging.info("Migration completed successfully.")
#
# # Mark migration as complete
# with open(migration_flag, 'w') as f:
# f.write('Migration completed on ' + datetime.now().isoformat())
#
# except Exception as e:
# # Rollback transaction in case of error
# rag_conn.rollback()
# logging.error(f"Error during migration: {e}")
# raise
# finally:
# media_conn.close()
# rag_conn.close()
def backup_database(db_path):
backup_path = db_path + '.backup'
if not os.path.exists(backup_path):
shutil.copyfile(db_path, backup_path)
logging.info(f"Database backed up to {backup_path}")
else:
logging.info(f"Backup already exists at {backup_path}")
def parse_timestamp(timestamp_value):
"""
Parses the timestamp from the old database and converts it to a standard format.
Adjust this function based on the actual format of your timestamps.
"""
try:
# Attempt to parse ISO format
return datetime.fromisoformat(timestamp_value).isoformat()
except ValueError:
# Handle other timestamp formats if necessary
# For example, if timestamps are in Unix epoch format
try:
timestamp_float = float(timestamp_value)
return datetime.fromtimestamp(timestamp_float).isoformat()
except ValueError:
# Default to current time if parsing fails
logging.warning(f"Unable to parse timestamp '{timestamp_value}', using current time.")
return datetime.now().isoformat()
#
# End of Migration Script
#######################################################################################################################
#######################################################################################################################
#
# Launch UI Function
def launch_ui(share_public=None, server_mode=False):
webbrowser.open_new_tab('http://127.0.0.1:7860/?__theme=dark')
share=share_public
css = """
.result-box {
margin-bottom: 20px;
border: 1px solid #ddd;
padding: 10px;
}
.result-box.error {
border-color: #ff0000;
background-color: #ffeeee;
}
.transcription, .summary {
max-height: 800px;
overflow-y: auto;
border: 1px solid #eee;
padding: 10px;
margin-top: 10px;
}
"""
config = load_and_log_configs()
# Get database paths from config
media_db_path = 'Databases/media_summary.db'
character_chat_db_path = os.path.join(os.path.dirname(media_db_path), "chatDB.db")
rag_chat_db_path = os.path.join(os.path.dirname(media_db_path), "rag_qa.db")
# Initialize the RAG Chat DB (create tables and update schema)
create_tables()
# Migrate data from the media DB to the RAG Chat DB
#migrate_media_db_to_rag_chat_db(media_db_path, rag_chat_db_path)
with gr.Blocks(theme='bethecloud/storj_theme',css=css) as iface:
gr.HTML(
"""
<script>
document.addEventListener('DOMContentLoaded', (event) => {
document.body.classList.add('dark');
document.querySelector('gradio-app').style.backgroundColor = 'var(--color-background-primary)';
});
</script>
"""
)
db_config = get_db_config()
db_type = db_config['type']
gr.Markdown(f"# tl/dw: Your LLM-powered Research Multi-tool")
gr.Markdown(f"(Using {db_type.capitalize()} Database)")
with gr.Tabs():
with gr.TabItem("Transcribe / Analyze / Ingestion", id="ingestion-grouping", visible=True):
with gr.Tabs():
create_video_transcription_tab()
create_audio_processing_tab()
create_podcast_tab()
create_import_book_tab()
create_plain_text_import_tab()
create_xml_import_tab()
create_website_scraping_tab()
create_pdf_ingestion_tab()
create_pdf_ingestion_test_tab()
create_resummary_tab()
create_summarize_explain_tab()
create_live_recording_tab()
create_arxiv_tab()
create_semantic_scholar_tab()
with gr.TabItem("RAG Chat/Search", id="RAG Chat Notes group", visible=True):
create_rag_tab()
create_rag_qa_chat_tab()
create_rag_qa_notes_management_tab()
create_rag_qa_chat_management_tab()
with gr.TabItem("Chat with an LLM", id="LLM Chat group", visible=True):
create_chat_interface()
create_chat_interface_stacked()
create_chat_interface_multi_api()
create_chat_interface_four()
chat_workflows_tab()
with gr.TabItem("Character Chat", id="character chat group", visible=True):
create_character_card_interaction_tab()
create_character_chat_mgmt_tab()
create_custom_character_card_tab()
create_character_card_validation_tab()
create_multiple_character_chat_tab()
create_narrator_controlled_conversation_tab()
create_export_characters_tab()
with gr.TabItem("Writing Tools", id="writing_tools group", visible=True):
from App_Function_Libraries.Gradio_UI.Writing_tab import create_document_feedback_tab
create_document_feedback_tab()
from App_Function_Libraries.Gradio_UI.Writing_tab import create_grammar_style_check_tab
create_grammar_style_check_tab()
from App_Function_Libraries.Gradio_UI.Writing_tab import create_tone_adjustment_tab
create_tone_adjustment_tab()
from App_Function_Libraries.Gradio_UI.Writing_tab import create_creative_writing_tab
create_creative_writing_tab()
from App_Function_Libraries.Gradio_UI.Writing_tab import create_mikupad_tab
create_mikupad_tab()
with gr.TabItem("Search/View DB Items", id="view db items group", visible=True):
create_search_tab()
create_search_summaries_tab()
create_view_all_mediadb_with_versions_tab()
create_viewing_mediadb_tab()
create_mediadb_keyword_search_tab()
create_view_all_rag_notes_tab()
create_viewing_ragdb_tab()
create_ragdb_keyword_items_tab()
with gr.TabItem("Prompts", id='view prompts group', visible=True):
with gr.Tabs():
create_prompt_view_tab()
create_prompt_search_tab()
create_prompt_edit_tab()
create_prompt_clone_tab()
create_prompt_suggestion_tab()
create_prompts_export_tab()
with gr.TabItem("Manage Media DB Items", id="manage group", visible=True):
create_media_edit_tab()
create_manage_items_tab()
create_media_edit_and_clone_tab()
with gr.TabItem("Embeddings Management", id="embeddings group", visible=True):
create_embeddings_tab()
create_view_embeddings_tab()
create_purge_embeddings_tab()
with gr.TabItem("Keywords", id="keywords group", visible=True):
create_view_keywords_tab()
create_add_keyword_tab()
create_delete_keyword_tab()
create_export_keywords_tab()
create_character_keywords_tab()
create_rag_qa_keywords_tab()
create_meta_keywords_tab()
create_prompt_keywords_tab()
with gr.TabItem("Import", id="import group", visible=True):
create_import_item_tab()
create_import_obsidian_vault_tab()
create_import_single_prompt_tab()
create_import_multiple_prompts_tab()
create_mediawiki_import_tab()
create_mediawiki_config_tab()
create_conversation_import_tab()
with gr.TabItem("Export", id="export group", visible=True):
create_export_tabs()
with gr.TabItem("Database Management", id="database_management_group", visible=True):
create_database_management_interface(
media_db_config={
'db_path': media_db_path,
'backup_dir': backup_dir
},
rag_db_config={
'db_path': rag_chat_db_path,
'backup_dir': backup_dir
},
char_db_config={
'db_path': character_chat_db_path,
'backup_dir': backup_dir
}
)
with gr.TabItem("Utilities", id="util group", visible=True):
create_mindmap_tab()
create_utilities_yt_video_tab()
create_utilities_yt_audio_tab()
create_utilities_yt_timestamp_tab()
with gr.TabItem("Anki Deck Creation/Validation", id="anki group", visible=True):
create_anki_generator_tab()
create_anki_validation_tab()
with gr.TabItem("Local LLM", id="local llm group", visible=True):
create_chat_with_llamafile_tab()
create_ollama_tab()
#create_huggingface_tab()
with gr.TabItem("Trashcan", id="trashcan group", visible=True):
create_search_and_mark_trash_tab()
create_view_trash_tab()
create_delete_trash_tab()
create_empty_trash_tab()
with gr.TabItem("Evaluations", id="eval", visible=True):
create_geval_tab()
create_infinite_bench_tab()
# FIXME
#create_mmlu_pro_tab()
with gr.TabItem("Introduction/Help", id="introduction group", visible=True):
create_introduction_tab()
with gr.TabItem("Config Editor", id="config group"):
create_config_editor_tab()
# Launch the interface
server_port_variable = 7860
os.environ['GRADIO_ANALYTICS_ENABLED'] = 'False'
if share==True:
iface.launch(share=True)
elif server_mode and not share_public:
iface.launch(share=False, server_name="0.0.0.0", server_port=server_port_variable, )
else:
try:
iface.launch(share=False, server_name="0.0.0.0", server_port=server_port_variable, )
except Exception as e:
logging.error(f"Error launching interface: {str(e)}")
|