Spaces:
Sleeping
Sleeping
File size: 24,560 Bytes
f7892e5 |
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 |
"""Main application entry point for ScriptVoice - Pure Gradio Application."""
import gradio as gr
from models import (
load_projects, create_new_project, load_project,
save_script_content, update_word_count,
create_story, create_character, create_world_element,
get_all_stories, get_all_characters, get_all_world_elements,
search_content
)
from ui_components import CUSTOM_CSS, get_header_html, get_section_header
from audio_services import generate_tts
from image_services import extract_text_from_image
from enhancement_services import (
enhance_script_placeholder, enhance_script_with_context,
analyze_character_consistency, suggest_story_elements
)
from export_services import export_project
from knowledge_assistant import knowledge_assistant
# Global state for current project
current_project_id = None
def create_story_intelligence_interface():
"""Create the story intelligence interface components."""
with gr.Column():
# Knowledge Assistant
gr.HTML(get_section_header('π€ Knowledge Assistant'))
with gr.Group():
assistant_query = gr.Textbox(
label="Ask your Knowledge Assistant",
placeholder="Try: !search dragons, !characters, !stories, or ask any question about your stories...",
lines=2
)
assistant_btn = gr.Button("π Query Assistant", elem_classes=["primary-button"])
assistant_response = gr.HTML(visible=False)
# Enhanced AI Tools
gr.HTML(get_section_header('π― Context-Aware AI Tools'))
with gr.Group():
ai_analysis_text = gr.Textbox(
label="Text to Analyze",
placeholder="Paste your script text here for context-aware analysis...",
lines=4
)
with gr.Row():
consistency_btn = gr.Button("β
Check Character Consistency", elem_classes=["secondary-button"])
suggest_btn = gr.Button("π‘ Suggest Story Elements", elem_classes=["secondary-button"])
context_enhance_btn = gr.Button("π Context-Aware Enhancement", elem_classes=["primary-button"])
context_enhancement_type = gr.Dropdown(
choices=["character_consistent", "plot_coherent", "dramatic", "romantic"],
label="Enhancement Type",
value="character_consistent"
)
ai_analysis_output = gr.HTML(visible=False)
# Search functionality
gr.HTML(get_section_header('π Search Knowledge Base'))
with gr.Row():
search_input = gr.Textbox(label="Search", placeholder="Search stories, characters, world...")
search_btn = gr.Button("π Search", elem_classes=["primary-button"])
search_results = gr.HTML(visible=False)
# Story Management
gr.HTML(get_section_header('π Stories'))
with gr.Group():
new_story_title = gr.Textbox(label="Story Title", placeholder="Enter story title...")
new_story_desc = gr.Textbox(label="Description", placeholder="Brief description...", lines=2)
create_story_btn = gr.Button("π Create Story", elem_classes=["primary-button"])
story_status = gr.HTML(visible=False)
story_dropdown = gr.Dropdown(label="Select Story", choices=[])
stories_display = gr.HTML()
# Character Management
gr.HTML(get_section_header('π₯ Characters'))
with gr.Group():
new_char_name = gr.Textbox(label="Character Name", placeholder="Enter character name...")
new_char_desc = gr.Textbox(label="Description", placeholder="Character description...", lines=2)
create_char_btn = gr.Button("π€ Create Character", elem_classes=["primary-button"])
char_status = gr.HTML(visible=False)
character_dropdown = gr.Dropdown(label="Select Character", choices=[])
characters_display = gr.HTML()
# World Building
gr.HTML(get_section_header('π World Elements'))
with gr.Group():
new_world_name = gr.Textbox(label="Element Name", placeholder="Enter element name...")
world_type = gr.Dropdown(
choices=["location", "organization", "concept", "item"],
label="Type",
value="location"
)
new_world_desc = gr.Textbox(label="Description", placeholder="Element description...", lines=2)
create_world_btn = gr.Button("ποΈ Create Element", elem_classes=["primary-button"])
world_status = gr.HTML(visible=False)
world_dropdown = gr.Dropdown(label="Select World Element", choices=[])
world_display = gr.HTML()
# Knowledge Base Management
gr.HTML(get_section_header('βοΈ Knowledge Base Management'))
with gr.Group():
rebuild_btn = gr.Button("π Rebuild Knowledge Index", elem_classes=["secondary-button"])
rebuild_status = gr.HTML(visible=False)
return {
'assistant_query': assistant_query,
'assistant_btn': assistant_btn,
'assistant_response': assistant_response,
'ai_analysis_text': ai_analysis_text,
'consistency_btn': consistency_btn,
'suggest_btn': suggest_btn,
'context_enhance_btn': context_enhance_btn,
'context_enhancement_type': context_enhancement_type,
'ai_analysis_output': ai_analysis_output,
'search_input': search_input,
'search_btn': search_btn,
'search_results': search_results,
'new_story_title': new_story_title,
'new_story_desc': new_story_desc,
'create_story_btn': create_story_btn,
'story_status': story_status,
'story_dropdown': story_dropdown,
'stories_display': stories_display,
'new_char_name': new_char_name,
'new_char_desc': new_char_desc,
'create_char_btn': create_char_btn,
'char_status': char_status,
'character_dropdown': character_dropdown,
'characters_display': characters_display,
'new_world_name': new_world_name,
'world_type': world_type,
'new_world_desc': new_world_desc,
'create_world_btn': create_world_btn,
'world_status': world_status,
'world_dropdown': world_dropdown,
'world_display': world_display,
'rebuild_btn': rebuild_btn,
'rebuild_status': rebuild_status
}
def query_knowledge_assistant(query: str) -> tuple[str, any]:
"""Process knowledge assistant queries."""
if not query.strip():
return "Please enter a query.", gr.update(visible=False)
try:
response = knowledge_assistant.process_query(query)
formatted_response = f'<div class="search-results"><pre>{response}</pre></div>'
return formatted_response, gr.update(visible=True)
except Exception as e:
error_response = f'<div class="status-error">β Error processing query: {str(e)}</div>'
return error_response, gr.update(visible=True)
def analyze_consistency(text: str) -> tuple[str, any]:
"""Analyze character consistency."""
if not text.strip():
return "Please provide text to analyze.", gr.update(visible=False)
analysis, status = analyze_character_consistency(text)
formatted_response = f'<div class="search-results"><h4>Character Consistency Analysis</h4><pre>{analysis}</pre></div>'
return formatted_response, gr.update(visible=True)
def suggest_elements(text: str) -> tuple[str, any]:
"""Suggest story elements."""
if not text.strip():
return "Please provide text for suggestions.", gr.update(visible=False)
suggestions, status = suggest_story_elements(text)
formatted_response = f'<div class="search-results"><h4>Story Element Suggestions</h4><pre>{suggestions}</pre></div>'
return formatted_response, gr.update(visible=True)
def enhance_with_context(text: str, enhancement_type: str) -> tuple[str, any]:
"""Enhance text with context awareness."""
if not text.strip():
return "Please provide text to enhance.", gr.update(visible=False)
enhanced, status = enhance_script_with_context(text, enhancement_type)
formatted_response = f'<div class="search-results"><h4>Context-Aware Enhancement ({enhancement_type})</h4><pre>{enhanced}</pre></div>'
return formatted_response, gr.update(visible=True)
def rebuild_knowledge_index() -> tuple[str, any]:
"""Rebuild the knowledge base index."""
try:
from rag_services import rag_service
rag_service.rebuild_index_from_projects()
response = '<div class="status-success">β
Knowledge base index rebuilt successfully!</div>'
return response, gr.update(visible=True)
except Exception as e:
response = f'<div class="status-error">β Error rebuilding index: {str(e)}</div>'
return response, gr.update(visible=True)
def display_stories():
"""Display all stories in a formatted way."""
stories = get_all_stories()
if not stories:
return "<p>No stories created yet.</p>"
html = "<div class='stories-grid'>"
for story in stories:
html += f"""
<div class='story-card'>
<h3>{story['title']}</h3>
<p>{story['description'][:100]}{'...' if len(story['description']) > 100 else ''}</p>
<small>Created: {story['created_at'][:10]}</small>
</div>
"""
html += "</div>"
return html
def display_characters():
"""Display all characters in a formatted way."""
characters = get_all_characters()
if not characters:
return "<p>No characters created yet.</p>"
html = "<div class='characters-grid'>"
for char in characters:
html += f"""
<div class='character-card'>
<h3>{char['name']}</h3>
<p>{char['description'][:100]}{'...' if len(char['description']) > 100 else ''}</p>
<small>Created: {char['created_at'][:10]}</small>
</div>
"""
html += "</div>"
return html
def display_world_elements():
"""Display all world elements in a formatted way."""
elements = get_all_world_elements()
if not elements:
return "<p>No world elements created yet.</p>"
html = "<div class='world-grid'>"
for elem in elements:
html += f"""
<div class='world-card'>
<h3>{elem['name']} <span class='type-badge'>{elem['type']}</span></h3>
<p>{elem['description'][:100]}{'...' if len(elem['description']) > 100 else ''}</p>
<small>Created: {elem['created_at'][:10]}</small>
</div>
"""
html += "</div>"
return html
def perform_search(query):
"""Perform search across all content."""
if not query.strip():
return gr.update(visible=False)
results = search_content(query)
html = f"<h4>Search Results for: '{query}'</h4>"
if results['stories']:
html += "<h5>Stories:</h5><ul>"
for story in results['stories']:
html += f"<li><strong>{story['title']}</strong> - {story['description'][:50]}...</li>"
html += "</ul>"
if results['characters']:
html += "<h5>Characters:</h5><ul>"
for char in results['characters']:
html += f"<li><strong>{char['name']}</strong> - {char['description'][:50]}...</li>"
html += "</ul>"
if results['world_elements']:
html += "<h5>World Elements:</h5><ul>"
for elem in results['world_elements']:
html += f"<li><strong>{elem['name']}</strong> ({elem['type']}) - {elem['description'][:50]}...</li>"
html += "</ul>"
if not any(results.values()):
html += "<p>No results found.</p>"
return gr.update(value=html, visible=True)
def create_interface():
"""Create the main Gradio interface."""
# Load initial projects
data = load_projects()
project_choices = [(proj["name"], proj_id) for proj_id, proj in data["projects"].items()]
with gr.Blocks(
title="ScriptVoice - AI-Powered Story Intelligence Platform",
theme=gr.themes.Base(),
css=CUSTOM_CSS
) as app:
# Header with ScriptVoice branding
gr.HTML(get_header_html())
# Main tabbed interface
with gr.Tabs():
# Scripts Tab (Original functionality)
with gr.TabItem("π Scripts"):
with gr.Row():
# Left Sidebar
with gr.Column(scale=1, min_width=300, elem_classes=["sidebar-column"]):
gr.HTML(get_section_header('π Projects'))
# New Project Section
with gr.Group():
new_project_name = gr.Textbox(label="New Project Name", placeholder="Enter project name...")
create_btn = gr.Button("β Create Project", elem_classes=["primary-button"])
create_status = gr.HTML(visible=False)
# Project Selection
project_dropdown = gr.Dropdown(
choices=project_choices,
label="Select Project",
value=list(data["projects"].keys())[0] if data["projects"] else None
)
# Notes Section
gr.HTML(get_section_header('π Notes'))
notes_textbox = gr.Textbox(
label="Project Notes",
placeholder="Add your notes here...",
lines=5,
max_lines=10
)
# Settings Section
gr.HTML(get_section_header('βοΈ Settings'))
with gr.Group():
dyslexic_mode = gr.Checkbox(label="Dyslexic-friendly font", value=False)
voice_speed = gr.Slider(0.5, 2.0, value=1.0, step=0.1, label="Voice Speed")
voice_volume = gr.Slider(0.1, 1.0, value=1.0, step=0.1, label="Voice Volume")
# Main Editor Panel
with gr.Column(scale=2):
# Word Count Display
word_count_display = gr.HTML('<div class="word-count-highlight">π Word Count: 0</div>')
# Script Editor
script_textbox = gr.Textbox(
label="Script Editor",
placeholder="Start writing your script here...",
lines=15,
max_lines=25
)
# Control Buttons Row
with gr.Row():
save_btn = gr.Button("πΎ Save", elem_classes=["secondary-button"])
tts_btn = gr.Button("π Play TTS", elem_classes=["primary-button"])
save_status = gr.HTML(visible=False)
# TTS Audio Output
audio_output = gr.Audio(label="Generated Audio")
tts_status = gr.HTML(visible=False)
# OCR Section
with gr.Group():
gr.HTML(get_section_header('π· Extract Text from Image'))
with gr.Row():
image_input = gr.Image(type="filepath", label="Upload Image")
ocr_btn = gr.Button("Extract Text", elem_classes=["secondary-button"])
ocr_status = gr.HTML(visible=False)
# AI Enhancement Section
with gr.Group():
gr.HTML(get_section_header('π€ AI Script Enhancement'))
with gr.Row():
enhancement_type = gr.Dropdown(
choices=["dramatic", "romantic", "professional", "casual"],
label="Enhancement Style",
value="dramatic"
)
enhance_btn = gr.Button("β¨ Enhance Script", elem_classes=["primary-button"])
enhance_status = gr.HTML(visible=False)
# Export Section
with gr.Group():
gr.HTML(get_section_header('π€ Export'))
with gr.Row():
export_type = gr.Dropdown(
choices=["text", "audio"],
label="Export Type",
value="text"
)
export_btn = gr.Button("π₯ Export", elem_classes=["secondary-button"])
export_file = gr.File(label="Download")
export_status = gr.HTML(visible=False)
# Story Intelligence Tab (Enhanced with RAG)
with gr.TabItem("π Story Intelligence"):
story_components = create_story_intelligence_interface()
# Event Handlers for Scripts Tab
# Create new project
create_btn.click(
fn=create_new_project,
inputs=[new_project_name],
outputs=[create_status, project_dropdown]
).then(
lambda: ("", gr.update(visible=True)),
outputs=[new_project_name, create_status]
)
# Load project when selected
project_dropdown.change(
fn=load_project,
inputs=[project_dropdown],
outputs=[script_textbox, notes_textbox, word_count_display]
)
# Update word count as user types
script_textbox.change(
fn=update_word_count,
inputs=[script_textbox],
outputs=[word_count_display]
)
# Save script content
save_btn.click(
fn=save_script_content,
inputs=[project_dropdown, script_textbox, notes_textbox],
outputs=[save_status]
).then(
lambda: gr.update(visible=True),
outputs=[save_status]
)
# Generate TTS
tts_btn.click(
fn=generate_tts,
inputs=[script_textbox, voice_speed],
outputs=[audio_output, tts_status]
).then(
lambda: gr.update(visible=True),
outputs=[tts_status]
)
# OCR text extraction
ocr_btn.click(
fn=extract_text_from_image,
inputs=[image_input],
outputs=[script_textbox, ocr_status]
).then(
lambda: gr.update(visible=True),
outputs=[ocr_status]
)
# AI Enhancement
enhance_btn.click(
fn=enhance_script_placeholder,
inputs=[script_textbox, enhancement_type],
outputs=[script_textbox, enhance_status]
).then(
lambda: gr.update(visible=True),
outputs=[enhance_status]
)
# Export functionality
export_btn.click(
fn=export_project,
inputs=[project_dropdown, export_type],
outputs=[export_file, export_status]
).then(
lambda: gr.update(visible=True),
outputs=[export_status]
)
# Event Handlers for Story Intelligence Tab
# Knowledge Assistant
story_components['assistant_btn'].click(
fn=query_knowledge_assistant,
inputs=[story_components['assistant_query']],
outputs=[story_components['assistant_response'], story_components['assistant_response']]
)
# AI Analysis Tools
story_components['consistency_btn'].click(
fn=analyze_consistency,
inputs=[story_components['ai_analysis_text']],
outputs=[story_components['ai_analysis_output'], story_components['ai_analysis_output']]
)
story_components['suggest_btn'].click(
fn=suggest_elements,
inputs=[story_components['ai_analysis_text']],
outputs=[story_components['ai_analysis_output'], story_components['ai_analysis_output']]
)
story_components['context_enhance_btn'].click(
fn=enhance_with_context,
inputs=[story_components['ai_analysis_text'], story_components['context_enhancement_type']],
outputs=[story_components['ai_analysis_output'], story_components['ai_analysis_output']]
)
# Knowledge Base Management
story_components['rebuild_btn'].click(
fn=rebuild_knowledge_index,
outputs=[story_components['rebuild_status'], story_components['rebuild_status']]
)
# Create story
story_components['create_story_btn'].click(
fn=create_story,
inputs=[story_components['new_story_title'], story_components['new_story_desc']],
outputs=[story_components['story_status'], story_components['story_dropdown']]
).then(
lambda: ("", "", gr.update(visible=True)),
outputs=[story_components['new_story_title'], story_components['new_story_desc'], story_components['story_status']]
).then(
fn=display_stories,
outputs=[story_components['stories_display']]
)
# Create character
story_components['create_char_btn'].click(
fn=create_character,
inputs=[story_components['new_char_name'], story_components['new_char_desc']],
outputs=[story_components['char_status'], story_components['character_dropdown']]
).then(
lambda: ("", "", gr.update(visible=True)),
outputs=[story_components['new_char_name'], story_components['new_char_desc'], story_components['char_status']]
).then(
fn=display_characters,
outputs=[story_components['characters_display']]
)
# Create world element
story_components['create_world_btn'].click(
fn=create_world_element,
inputs=[story_components['new_world_name'], story_components['world_type'], story_components['new_world_desc']],
outputs=[story_components['world_status'], story_components['world_dropdown']]
).then(
lambda: ("", "", gr.update(visible=True)),
outputs=[story_components['new_world_name'], story_components['new_world_desc'], story_components['world_status']]
).then(
fn=display_world_elements,
outputs=[story_components['world_display']]
)
# Search functionality
story_components['search_btn'].click(
fn=perform_search,
inputs=[story_components['search_input']],
outputs=[story_components['search_results']]
)
# Load initial story intelligence data
app.load(
fn=display_stories,
outputs=[story_components['stories_display']]
)
app.load(
fn=display_characters,
outputs=[story_components['characters_display']]
)
app.load(
fn=display_world_elements,
outputs=[story_components['world_display']]
)
return app
if __name__ == "__main__":
print("π Starting ScriptVoice - AI-Powered Story Intelligence Platform")
print("π The app will be available at: http://localhost:7860")
# Create and launch the app
app = create_interface()
app.launch(
server_name="0.0.0.0",
server_port=7860,
share=True,
show_error=True
)
|