Open-GAMMA / app.py
openfree's picture
Update app.py
b7a60fa verified
raw
history blame
84.6 kB
#!/usr/bin/env python
import os
import re
import json
import requests
from collections.abc import Iterator
from threading import Thread
import tempfile
import random
from typing import Dict, List, Tuple, Optional
import shutil
import gradio as gr
from loguru import logger
import pandas as pd
import PyPDF2
from PIL import Image
from gradio_client import Client
import time
# python-pptx ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ ํ™•์ธ
try:
from pptx import Presentation
from pptx.util import Inches, Pt
from pptx.enum.text import PP_ALIGN, MSO_ANCHOR
from pptx.dml.color import RGBColor
from pptx.enum.shapes import MSO_SHAPE
from pptx.chart.data import CategoryChartData
from pptx.enum.chart import XL_CHART_TYPE, XL_LEGEND_POSITION
PPTX_AVAILABLE = True
except ImportError:
PPTX_AVAILABLE = False
logger.warning("python-pptx ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ๊ฐ€ ์„ค์น˜๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. pip install python-pptx")
##############################################################################
# API Configuration
##############################################################################
FRIENDLI_TOKEN = os.environ.get("FRIENDLI_TOKEN")
if not FRIENDLI_TOKEN:
raise ValueError("Please set FRIENDLI_TOKEN environment variable")
FRIENDLI_MODEL_ID = "dep89a2fld32mcm"
FRIENDLI_API_URL = "https://api.friendli.ai/dedicated/v1/chat/completions"
# SERPHouse API key
SERPHOUSE_API_KEY = os.getenv("SERPHOUSE_API_KEY", "")
if not SERPHOUSE_API_KEY:
logger.warning("SERPHOUSE_API_KEY not set. Web search functionality will be limited.")
##############################################################################
# AI Image Generation API Configuration
##############################################################################
AI_IMAGE_API_URL = "http://211.233.58.201:7971/"
AI_IMAGE_ENABLED = False
ai_image_client = None
def initialize_ai_image_api():
"""AI ์ด๋ฏธ์ง€ ์ƒ์„ฑ API ์ดˆ๊ธฐํ™”"""
global AI_IMAGE_ENABLED, ai_image_client
try:
logger.info("Connecting to AI image generation API...")
ai_image_client = Client(AI_IMAGE_API_URL)
AI_IMAGE_ENABLED = True
logger.info("AI image generation API connected successfully")
return True
except Exception as e:
logger.error(f"Failed to connect to AI image API: {e}")
AI_IMAGE_ENABLED = False
return False
##############################################################################
# Design Themes and Color Schemes
##############################################################################
DESIGN_THEMES = {
"professional": {
"name": "ํ”„๋กœํŽ˜์…”๋„",
"colors": {
"primary": RGBColor(46, 134, 171), # #2E86AB
"secondary": RGBColor(162, 59, 114), # #A23B72
"accent": RGBColor(241, 143, 1), # #F18F01
"background": RGBColor(250, 250, 250), # #FAFAFA - Lighter background
"text": RGBColor(44, 44, 44), # #2C2C2C - Darker text for better contrast
},
"fonts": {
"title": "Arial",
"subtitle": "Arial",
"body": "Calibri"
}
},
"modern": {
"name": "๋ชจ๋˜",
"colors": {
"primary": RGBColor(114, 9, 183), # #7209B7
"secondary": RGBColor(247, 37, 133), # #F72585
"accent": RGBColor(76, 201, 240), # #4CC9F0
"background": RGBColor(252, 252, 252), # #FCFCFC - Very light background
"text": RGBColor(40, 40, 40), # #282828 - Dark text
},
"fonts": {
"title": "Arial",
"subtitle": "Arial",
"body": "Helvetica"
}
},
"nature": {
"name": "์ž์—ฐ",
"colors": {
"primary": RGBColor(45, 106, 79), # #2D6A4F
"secondary": RGBColor(82, 183, 136), # #52B788
"accent": RGBColor(181, 233, 185), # #B5E9B9 - Softer accent
"background": RGBColor(248, 252, 248), # #F8FCF8 - Light green tint
"text": RGBColor(27, 38, 44), # #1B262C
},
"fonts": {
"title": "Georgia",
"subtitle": "Verdana",
"body": "Calibri"
}
},
"creative": {
"name": "ํฌ๋ฆฌ์—์ดํ‹ฐ๋ธŒ",
"colors": {
"primary": RGBColor(255, 0, 110), # #FF006E
"secondary": RGBColor(251, 86, 7), # #FB5607
"accent": RGBColor(255, 190, 11), # #FFBE0B
"background": RGBColor(255, 248, 240), # #FFF8F0 - Light warm background
"text": RGBColor(33, 33, 33), # #212121 - Dark text on light bg
},
"fonts": {
"title": "Impact",
"subtitle": "Arial",
"body": "Segoe UI"
}
},
"minimal": {
"name": "๋ฏธ๋‹ˆ๋ฉ€",
"colors": {
"primary": RGBColor(55, 55, 55), # #373737 - Softer than pure black
"secondary": RGBColor(120, 120, 120), # #787878
"accent": RGBColor(0, 122, 255), # #007AFF - Blue accent
"background": RGBColor(252, 252, 252), # #FCFCFC
"text": RGBColor(33, 33, 33), # #212121
},
"fonts": {
"title": "Helvetica",
"subtitle": "Helvetica",
"body": "Arial"
}
}
}
##############################################################################
# Slide Layout Types
##############################################################################
SLIDE_LAYOUTS = {
"title": 0, # ์ œ๋ชฉ ์Šฌ๋ผ์ด๋“œ
"title_content": 1, # ์ œ๋ชฉ๊ณผ ๋‚ด์šฉ
"section_header": 2, # ์„น์…˜ ํ—ค๋”
"two_content": 3, # 2๋‹จ ๋ ˆ์ด์•„์›ƒ
"comparison": 4, # ๋น„๊ต ๋ ˆ์ด์•„์›ƒ
"title_only": 5, # ์ œ๋ชฉ๋งŒ
"blank": 6 # ๋นˆ ์Šฌ๋ผ์ด๋“œ
}
##############################################################################
# Emoji Bullet Points Mapping
##############################################################################
def has_emoji(text: str) -> bool:
"""Check if text already contains emoji"""
# Check for common emoji unicode ranges
for char in text[:3]: # Check first 3 characters
code = ord(char)
# Common emoji ranges
if (0x1F300 <= code <= 0x1F9FF) or \
(0x2600 <= code <= 0x26FF) or \
(0x2700 <= code <= 0x27BF) or \
(0x1F000 <= code <= 0x1F02F) or \
(0x1F0A0 <= code <= 0x1F0FF) or \
(0x1F100 <= code <= 0x1F1FF):
return True
return False
def get_emoji_for_content(text: str) -> str:
"""Get relevant emoji based on content"""
text_lower = text.lower()
# Technology
if any(word in text_lower for word in ['ai', '์ธ๊ณต์ง€๋Šฅ', 'ml', '๋จธ์‹ ๋Ÿฌ๋‹', '๋”ฅ๋Ÿฌ๋‹', 'deep learning']):
return '๐Ÿค–'
elif any(word in text_lower for word in ['๋ฐ์ดํ„ฐ', 'data', '๋ถ„์„', 'analysis', 'ํ†ต๊ณ„']):
return '๐Ÿ“Š'
elif any(word in text_lower for word in ['์ฝ”๋“œ', 'code', 'ํ”„๋กœ๊ทธ๋ž˜๋ฐ', 'programming', '๊ฐœ๋ฐœ']):
return '๐Ÿ’ป'
elif any(word in text_lower for word in ['ํด๋ผ์šฐ๋“œ', 'cloud', '์„œ๋ฒ„', 'server']):
return 'โ˜๏ธ'
elif any(word in text_lower for word in ['๋ณด์•ˆ', 'security', '์•ˆ์ „', 'safety']):
return '๐Ÿ”’'
elif any(word in text_lower for word in ['๋„คํŠธ์›Œํฌ', 'network', '์—ฐ๊ฒฐ', 'connection', '์ธํ„ฐ๋„ท']):
return '๐ŸŒ'
elif any(word in text_lower for word in ['๋ชจ๋ฐ”์ผ', 'mobile', '์Šค๋งˆํŠธํฐ', 'smartphone', '์•ฑ']):
return '๐Ÿ“ฑ'
# Business
elif any(word in text_lower for word in ['์„ฑ์žฅ', 'growth', '์ฆ๊ฐ€', 'increase', '์ƒ์Šน']):
return '๐Ÿ“ˆ'
elif any(word in text_lower for word in ['๋ชฉํ‘œ', 'goal', 'target', 'ํƒ€๊ฒŸ', '๋ชฉ์ ']):
return '๐ŸŽฏ'
elif any(word in text_lower for word in ['๋ˆ', 'money', '๋น„์šฉ', 'cost', '์˜ˆ์‚ฐ', 'budget', '์ˆ˜์ต']):
return '๐Ÿ’ฐ'
elif any(word in text_lower for word in ['ํŒ€', 'team', 'ํ˜‘์—…', 'collaboration', 'ํ˜‘๋ ฅ']):
return '๐Ÿ‘ฅ'
elif any(word in text_lower for word in ['์‹œ๊ฐ„', 'time', '์ผ์ •', 'schedule', '๊ธฐํ•œ']):
return 'โฐ'
elif any(word in text_lower for word in ['์•„์ด๋””์–ด', 'idea', '์ฐฝ์˜', 'creative', 'ํ˜์‹ ']):
return '๐Ÿ’ก'
elif any(word in text_lower for word in ['์ „๋žต', 'strategy', '๊ณ„ํš', 'plan']):
return '๐Ÿ“‹'
elif any(word in text_lower for word in ['์„ฑ๊ณต', 'success', '๋‹ฌ์„ฑ', 'achieve']):
return '๐Ÿ†'
# Education
elif any(word in text_lower for word in ['ํ•™์Šต', 'learning', '๊ต์œก', 'education', '๊ณต๋ถ€']):
return '๐Ÿ“š'
elif any(word in text_lower for word in ['์—ฐ๊ตฌ', 'research', '์กฐ์‚ฌ', 'study', '์‹คํ—˜']):
return '๐Ÿ”ฌ'
elif any(word in text_lower for word in ['๋ฌธ์„œ', 'document', '๋ณด๊ณ ์„œ', 'report']):
return '๐Ÿ“„'
elif any(word in text_lower for word in ['์ •๋ณด', 'information', '์ง€์‹', 'knowledge']):
return '๐Ÿ“–'
# Communication
elif any(word in text_lower for word in ['์†Œํ†ต', 'communication', '๋Œ€ํ™”', 'conversation']):
return '๐Ÿ’ฌ'
elif any(word in text_lower for word in ['์ด๋ฉ”์ผ', 'email', '๋ฉ”์ผ', 'mail']):
return '๐Ÿ“ง'
elif any(word in text_lower for word in ['์ „ํ™”', 'phone', 'call', 'ํ†ตํ™”']):
return '๐Ÿ“ž'
elif any(word in text_lower for word in ['ํšŒ์˜', 'meeting', '๋ฏธํŒ…', '์ปจํผ๋Ÿฐ์Šค']):
return '๐Ÿ‘”'
# Nature/Environment
elif any(word in text_lower for word in ['ํ™˜๊ฒฝ', 'environment', '์ž์—ฐ', 'nature']):
return '๐ŸŒฑ'
elif any(word in text_lower for word in ['์ง€์†๊ฐ€๋Šฅ', 'sustainable', '์นœํ™˜๊ฒฝ', 'eco']):
return 'โ™ป๏ธ'
elif any(word in text_lower for word in ['์—๋„ˆ์ง€', 'energy', '์ „๋ ฅ', 'power']):
return 'โšก'
elif any(word in text_lower for word in ['์ง€๊ตฌ', 'earth', '์„ธ๊ณ„', 'world']):
return '๐ŸŒ'
# Process/Steps
elif any(word in text_lower for word in ['ํ”„๋กœ์„ธ์Šค', 'process', '์ ˆ์ฐจ', 'procedure', '๋‹จ๊ณ„']):
return '๐Ÿ”„'
elif any(word in text_lower for word in ['์ฒดํฌ', 'check', 'ํ™•์ธ', 'verify', '๊ฒ€์ฆ']):
return 'โœ…'
elif any(word in text_lower for word in ['์ฃผ์˜', 'warning', '๊ฒฝ๊ณ ', 'caution']):
return 'โš ๏ธ'
elif any(word in text_lower for word in ['์ค‘์š”', 'important', 'ํ•ต์‹ฌ', 'key', 'ํ•„์ˆ˜']):
return 'โญ'
elif any(word in text_lower for word in ['์งˆ๋ฌธ', 'question', '๋ฌธ์˜', 'ask']):
return 'โ“'
elif any(word in text_lower for word in ['ํ•ด๊ฒฐ', 'solution', '๋‹ต', 'answer']):
return '๐Ÿ’ฏ'
# Actions
elif any(word in text_lower for word in ['์‹œ์ž‘', 'start', '์ถœ๋ฐœ', 'begin']):
return '๐Ÿš€'
elif any(word in text_lower for word in ['์™„๋ฃŒ', 'complete', '์ข…๋ฃŒ', 'finish']):
return '๐Ÿ'
elif any(word in text_lower for word in ['๊ฐœ์„ ', 'improve', 'ํ–ฅ์ƒ', 'enhance']):
return '๐Ÿ”ง'
elif any(word in text_lower for word in ['๋ณ€ํ™”', 'change', '๋ณ€๊ฒฝ', 'modify']):
return '๐Ÿ”„'
# Industries
elif any(word in text_lower for word in ['์˜๋ฃŒ', 'medical', '๋ณ‘์›', 'hospital', '๊ฑด๊ฐ•']):
return '๐Ÿฅ'
elif any(word in text_lower for word in ['๊ธˆ์œต', 'finance', '์€ํ–‰', 'bank']):
return '๐Ÿฆ'
elif any(word in text_lower for word in ['์ œ์กฐ', 'manufacturing', '๊ณต์žฅ', 'factory']):
return '๐Ÿญ'
elif any(word in text_lower for word in ['๋†์—…', 'agriculture', '๋†์žฅ', 'farm']):
return '๐ŸŒพ'
# Emotion/Status
elif any(word in text_lower for word in ['ํ–‰๋ณต', 'happy', '๊ธฐ์จ', 'joy']):
return '๐Ÿ˜Š'
elif any(word in text_lower for word in ['์œ„ํ—˜', 'danger', 'risk', '๋ฆฌ์Šคํฌ']):
return 'โšก'
elif any(word in text_lower for word in ['์ƒˆ๋กœ์šด', 'new', '์‹ ๊ทœ', 'novel']):
return 'โœจ'
# Numbers
elif text_lower.startswith(('์ฒซ์งธ', 'first', '1.', '์ฒซ๋ฒˆ์งธ', '์ฒซ ๋ฒˆ์งธ')):
return '1๏ธโƒฃ'
elif text_lower.startswith(('๋‘˜์งธ', 'second', '2.', '๋‘๋ฒˆ์งธ', '๋‘ ๋ฒˆ์งธ')):
return '2๏ธโƒฃ'
elif text_lower.startswith(('์…‹์งธ', 'third', '3.', '์„ธ๋ฒˆ์งธ', '์„ธ ๋ฒˆ์งธ')):
return '3๏ธโƒฃ'
elif text_lower.startswith(('๋„ท์งธ', 'fourth', '4.', '๋„ค๋ฒˆ์งธ', '๋„ค ๋ฒˆ์งธ')):
return '4๏ธโƒฃ'
elif text_lower.startswith(('๋‹ค์„ฏ์งธ', 'fifth', '5.', '๋‹ค์„ฏ๋ฒˆ์งธ', '๋‹ค์„ฏ ๋ฒˆ์งธ')):
return '5๏ธโƒฃ'
# Default
else:
return 'โ–ถ๏ธ'
##############################################################################
# Icon and Shape Mappings
##############################################################################
SHAPE_ICONS = {
"๋ชฉํ‘œ": MSO_SHAPE.STAR_5_POINT,
"ํ”„๋กœ์„ธ์Šค": MSO_SHAPE.BLOCK_ARC,
"์„ฑ์žฅ": MSO_SHAPE.UP_ARROW,
"์•„์ด๋””์–ด": MSO_SHAPE.LIGHTNING_BOLT,
"์ฒดํฌ": MSO_SHAPE.RECTANGLE,
"์ฃผ์˜": MSO_SHAPE.DIAMOND,
"์งˆ๋ฌธ": MSO_SHAPE.OVAL,
"๋ถ„์„": MSO_SHAPE.PENTAGON,
"์‹œ๊ฐ„": MSO_SHAPE.DONUT,
"ํŒ€": MSO_SHAPE.HEXAGON,
}
##############################################################################
# File Processing Constants
##############################################################################
MAX_FILE_SIZE = 30 * 1024 * 1024 # 30MB
MAX_CONTENT_CHARS = 6000
##############################################################################
# Improved Keyword Extraction
##############################################################################
def extract_keywords(text: str, top_k: int = 5) -> str:
"""
Extract keywords: supports English and Korean
"""
stop_words = {'์€', '๋Š”', '์ด', '๊ฐ€', '์„', '๋ฅผ', '์˜', '์—', '์—์„œ',
'the', 'is', 'at', 'on', 'in', 'a', 'an', 'and', 'or', 'but'}
text = re.sub(r"[^a-zA-Z0-9๊ฐ€-ํžฃ\s]", "", text)
tokens = text.split()
key_tokens = [
token for token in tokens
if token.lower() not in stop_words and len(token) > 1
][:top_k]
return " ".join(key_tokens)
##############################################################################
# File Size Validation
##############################################################################
def validate_file_size(file_path: str) -> bool:
"""Check if file size is within limits"""
try:
file_size = os.path.getsize(file_path)
return file_size <= MAX_FILE_SIZE
except:
return False
##############################################################################
# Web Search Function
##############################################################################
def do_web_search(query: str, use_korean: bool = False) -> str:
"""
Search web and return top 20 organic results
"""
if not SERPHOUSE_API_KEY:
return "Web search unavailable. API key not configured."
try:
url = "https://api.serphouse.com/serp/live"
params = {
"q": query,
"domain": "google.com",
"serp_type": "web",
"device": "desktop",
"lang": "ko" if use_korean else "en",
"num": "20"
}
headers = {
"Authorization": f"Bearer {SERPHOUSE_API_KEY}"
}
logger.info(f"Calling SerpHouse API... Query: {query}")
response = requests.get(url, headers=headers, params=params, timeout=30)
response.raise_for_status()
data = response.json()
# Parse results
results = data.get("results", {})
organic = None
if isinstance(results, dict) and "organic" in results:
organic = results["organic"]
elif isinstance(results, dict) and "results" in results:
if isinstance(results["results"], dict) and "organic" in results["results"]:
organic = results["results"]["organic"]
elif "organic" in data:
organic = data["organic"]
if not organic:
return "No search results found or unexpected API response structure."
max_results = min(20, len(organic))
limited_organic = organic[:max_results]
summary_lines = []
for idx, item in enumerate(limited_organic, start=1):
title = item.get("title", "No title")
link = item.get("link", "#")
snippet = item.get("snippet", "No description")
displayed_link = item.get("displayed_link", link)
summary_lines.append(
f"### Result {idx}: {title}\n\n"
f"{snippet}\n\n"
f"**Source**: [{displayed_link}]({link})\n\n"
f"---\n"
)
instructions = """
# Web Search Results
Below are the search results. Use this information when answering questions:
1. Reference the title, content, and source links
2. Explicitly cite sources in your answer (e.g., "According to source X...")
3. Include actual source links in your response
4. Synthesize information from multiple sources
"""
search_results = instructions + "\n".join(summary_lines)
return search_results
except requests.exceptions.Timeout:
logger.error("Web search timeout")
return "Web search timed out. Please try again."
except requests.exceptions.RequestException as e:
logger.error(f"Web search network error: {e}")
return "Network error during web search."
except Exception as e:
logger.error(f"Web search failed: {e}")
return f"Web search failed: {str(e)}"
##############################################################################
# File Analysis Functions
##############################################################################
def analyze_csv_file(path: str) -> str:
"""Analyze CSV file with size validation and encoding handling"""
if not validate_file_size(path):
return f"โš ๏ธ Error: File size exceeds {MAX_FILE_SIZE/1024/1024:.1f}MB limit."
try:
encodings = ['utf-8', 'cp949', 'euc-kr', 'latin-1']
df = None
for encoding in encodings:
try:
df = pd.read_csv(path, encoding=encoding, nrows=50)
break
except UnicodeDecodeError:
continue
if df is None:
return f"Failed to read CSV: Unsupported encoding"
total_rows = len(pd.read_csv(path, encoding=encoding, usecols=[0]))
if df.shape[1] > 10:
df = df.iloc[:, :10]
summary = f"**Data size**: {total_rows} rows x {df.shape[1]} columns\n"
summary += f"**Showing**: Top {min(50, total_rows)} rows\n"
summary += f"**Columns**: {', '.join(df.columns)}\n\n"
# Extract data for charts
chart_data = {
"columns": list(df.columns),
"sample_data": df.head(10).to_dict('records')
}
df_str = df.to_string()
if len(df_str) > MAX_CONTENT_CHARS:
df_str = df_str[:MAX_CONTENT_CHARS] + "\n...(truncated)..."
return f"**[CSV File: {os.path.basename(path)}]**\n\n{summary}{df_str}\n\nCHART_DATA:{json.dumps(chart_data)}"
except Exception as e:
logger.error(f"CSV read error: {e}")
return f"Failed to read CSV file ({os.path.basename(path)}): {str(e)}"
def analyze_txt_file(path: str) -> str:
"""Analyze text file with automatic encoding detection"""
if not validate_file_size(path):
return f"โš ๏ธ Error: File size exceeds {MAX_FILE_SIZE/1024/1024:.1f}MB limit."
encodings = ['utf-8', 'cp949', 'euc-kr', 'latin-1', 'utf-16']
for encoding in encodings:
try:
with open(path, "r", encoding=encoding) as f:
text = f.read()
file_size = os.path.getsize(path)
size_info = f"**File size**: {file_size/1024:.1f}KB\n\n"
if len(text) > MAX_CONTENT_CHARS:
text = text[:MAX_CONTENT_CHARS] + "\n...(truncated)..."
return f"**[TXT File: {os.path.basename(path)}]**\n\n{size_info}{text}"
except UnicodeDecodeError:
continue
return f"Failed to read text file ({os.path.basename(path)}): Unsupported encoding"
def pdf_to_markdown(pdf_path: str) -> str:
"""Convert PDF to markdown with improved error handling"""
if not validate_file_size(pdf_path):
return f"โš ๏ธ Error: File size exceeds {MAX_FILE_SIZE/1024/1024:.1f}MB limit."
text_chunks = []
try:
with open(pdf_path, "rb") as f:
reader = PyPDF2.PdfReader(f)
total_pages = len(reader.pages)
max_pages = min(5, total_pages)
text_chunks.append(f"**Total pages**: {total_pages}")
text_chunks.append(f"**Showing**: First {max_pages} pages\n")
for page_num in range(max_pages):
try:
page = reader.pages[page_num]
page_text = page.extract_text() or ""
page_text = page_text.strip()
if page_text:
if len(page_text) > MAX_CONTENT_CHARS // max_pages:
page_text = page_text[:MAX_CONTENT_CHARS // max_pages] + "...(truncated)"
text_chunks.append(f"## Page {page_num+1}\n\n{page_text}\n")
except Exception as e:
text_chunks.append(f"## Page {page_num+1}\n\nFailed to read page: {str(e)}\n")
if total_pages > max_pages:
text_chunks.append(f"\n...({max_pages}/{total_pages} pages shown)...")
except Exception as e:
logger.error(f"PDF read error: {e}")
return f"Failed to read PDF file ({os.path.basename(pdf_path)}): {str(e)}"
full_text = "\n".join(text_chunks)
if len(full_text) > MAX_CONTENT_CHARS:
full_text = full_text[:MAX_CONTENT_CHARS] + "\n...(truncated)..."
return f"**[PDF File: {os.path.basename(pdf_path)}]**\n\n{full_text}"
##############################################################################
# AI Image Generation Functions using API
##############################################################################
def generate_cover_image_prompt(topic: str, slides_data: list) -> str:
"""PPT ์ฃผ์ œ์™€ ๋‚ด์šฉ์„ ๊ธฐ๋ฐ˜์œผ๋กœ ํ‘œ์ง€ ์ด๋ฏธ์ง€ ํ”„๋กฌํ”„ํŠธ ์ƒ์„ฑ - ํ•œ๊ธ€ ์ง€์›"""
# ์ฃผ์š” ํ‚ค์›Œ๋“œ ์ถ”์ถœ
keywords = []
topic_keywords = extract_keywords(topic, top_k=3)
keywords.extend(topic_keywords.split())
# ๊ฐ ์Šฌ๋ผ์ด๋“œ ์ œ๋ชฉ์—์„œ ํ‚ค์›Œ๋“œ ์ถ”์ถœ
for slide in slides_data[:5]:
title = slide.get('title', '')
if title:
slide_keywords = extract_keywords(title, top_k=2)
keywords.extend(slide_keywords.split())
unique_keywords = list(dict.fromkeys(keywords))[:5]
# ์ฃผ์ œ ๋ถ„์„์„ ํ†ตํ•œ ์Šคํƒ€์ผ ๊ฒฐ์ •
style = "ํ˜„๋Œ€์ ์ด๊ณ  ์ „๋ฌธ์ ์ธ"
topic_lower = topic.lower()
if any(word in topic_lower for word in ['๊ธฐ์ˆ ', 'tech', 'ai', '์ธ๊ณต์ง€๋Šฅ', 'digital', '๋””์ง€ํ„ธ']):
style = "๋ฏธ๋ž˜์ง€ํ–ฅ์ ์ด๊ณ  ํ•˜์ดํ…Œํฌํ•œ ๋””์ง€ํ„ธ ์•„ํŠธ"
elif any(word in topic_lower for word in ['๋น„์ฆˆ๋‹ˆ์Šค', 'business', '๊ฒฝ์˜', 'management']):
style = "์ „๋ฌธ์ ์ด๊ณ  ๊ธฐ์—…์ ์ธ ํ˜„๋Œ€์ "
elif any(word in topic_lower for word in ['๊ต์œก', 'education', 'ํ•™์Šต', 'learning']):
style = "๊ต์œก์ ์ด๊ณ  ์˜๊ฐ์„ ์ฃผ๋Š” ๋ฐ์€"
elif any(word in topic_lower for word in ['ํ™˜๊ฒฝ', 'environment', '์ž์—ฐ', 'nature']):
style = "์ž์—ฐ์ ์ด๊ณ  ์นœํ™˜๊ฒฝ์ ์ธ ๋…น์ƒ‰"
elif any(word in topic_lower for word in ['์˜๋ฃŒ', 'medical', '๊ฑด๊ฐ•', 'health']):
style = "์˜๋ฃŒ์ ์ด๊ณ  ๊ฑด๊ฐ•ํ•œ ๊นจ๋—ํ•œ"
elif any(word in topic_lower for word in ['๊ธˆ์œต', 'finance', 'ํˆฌ์ž', 'investment']):
style = "๊ธˆ์œต์ ์ด๊ณ  ์ „๋ฌธ์ ์ธ ์‹ ๋ขฐ๊ฐ ์žˆ๋Š”"
# wbgmsst ์Šคํƒ€์ผ์„ ์œ„ํ•œ ํ•œ๊ธ€ ํ”„๋กฌํ”„ํŠธ ๊ตฌ์„ฑ
prompt = f"wbgmsst, 3D, {' '.join(unique_keywords)}๋ฅผ ์ƒ์ง•ํ•˜๋Š” ์•„์ด์†Œ๋ฉ”ํŠธ๋ฆญ ์Šคํƒ€์ผ์˜ {style} ์ผ๋Ÿฌ์ŠคํŠธ๋ ˆ์ด์…˜, ํฐ์ƒ‰ ๋ฐฐ๊ฒฝ, ๊น”๋”ํ•œ ๋ฏธ๋‹ˆ๋ฉ€๋ฆฌ์Šคํ‹ฑ ๊ตฌ์„ฑ, ์ „๋ฌธ์ ์ธ ํ”„๋ ˆ์  ํ…Œ์ด์…˜ ํ‘œ์ง€, ๊ณ ํ’ˆ์งˆ, ์ŠคํŠœ๋””์˜ค ์กฐ๋ช…"
return prompt
def generate_ai_cover_image_via_api(topic: str, slides_data: list) -> Optional[str]:
"""API๋ฅผ ํ†ตํ•ด AI ํ‘œ์ง€ ์ด๋ฏธ์ง€ ์ƒ์„ฑ(PNG ๋ณ€ํ™˜ ํฌํ•จ)"""
if not AI_IMAGE_ENABLED or not ai_image_client:
logger.warning("AI image generation API is not available")
return None
try:
# โ”€โ”€ 1. ํ”„๋กฌํ”„ํŠธ ๋ฐ ํŒŒ๋ผ๋ฏธํ„ฐ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
prompt = generate_cover_image_prompt(topic, slides_data)
logger.info(f"Generated image prompt: {prompt}")
height, width = 1024.0, 1024.0
steps, scales = 8.0, 3.5
seed = float(random.randint(0, 1_000_000))
logger.info(f"Calling AI image APIโ€ฆ (h={height}, w={width}, steps={steps}, scales={scales}, seed={seed})")
result = ai_image_client.predict(
height=height,
width=width,
steps=steps,
scales=scales,
prompt=prompt,
seed=seed,
api_name="/process_and_save_image"
)
logger.info(f"API call successful. Result type: {type(result)}")
# โ”€โ”€ 2. ๋‚ด๋ถ€ ํ—ฌํผ: WEBP โ†’ PNG ๋ณ€ํ™˜ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
def _to_png(src_path: str) -> Optional[str]:
try:
with Image.open(src_path) as im:
png_tmp = tempfile.NamedTemporaryFile(delete=False, suffix=".png")
im.save(png_tmp.name, format="PNG")
logger.info(f"Converted {src_path} โ†’ {png_tmp.name}")
return png_tmp.name
except Exception as e:
logger.error(f"PNG ๋ณ€ํ™˜ ์‹คํŒจ: {e}")
return None
# โ”€โ”€ 3. ๊ฒฐ๊ณผ ์ฒ˜๋ฆฌ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
image_path = None
if isinstance(result, dict):
image_path = result.get("path")
elif isinstance(result, str):
image_path = result
if image_path and os.path.exists(image_path):
ext = os.path.splitext(image_path)[1].lower()
if ext == ".png":
# ์ด๋ฏธ PNG๋ผ๋ฉด ๊ทธ๋Œ€๋กœ ๋ณต์‚ฌ
with tempfile.NamedTemporaryFile(delete=False, suffix=".png") as tmp:
shutil.copy2(image_path, tmp.name)
logger.info(f"PNG copied from {image_path} โ†’ {tmp.name}")
return tmp.name
else:
# WEBPยทJPEG ๋“ฑ์€ PNG๋กœ ๋ณ€ํ™˜
return _to_png(image_path)
logger.error(f"Image path not found or invalid: {result}")
return None
except Exception as e:
logger.error(f"Failed to generate AI image via API: {e}", exc_info=True)
return None
##############################################################################
# PPT Generation Functions - FIXED VERSION
##############################################################################
def parse_llm_ppt_response(response: str, layout_style: str = "consistent") -> list:
"""Parse LLM response to extract slide content - COMPLETELY FIXED VERSION"""
slides = []
# Debug: ์ „์ฒด ์‘๋‹ต ํ™•์ธ
logger.info(f"Parsing LLM response, total length: {len(response)}")
logger.debug(f"First 500 chars: {response[:500]}")
# Try JSON parsing first
try:
json_match = re.search(r'\[[\s\S]*\]', response)
if json_match:
slides_data = json.loads(json_match.group())
return slides_data
except:
pass
# Split by slide markers and process each section
# ์Šฌ๋ผ์ด๋“œ๋ฅผ ๊ตฌ๋ถ„ํ•˜๋Š” ๋” ๊ฐ•๋ ฅํ•œ ์ •๊ทœ์‹
slide_pattern = r'(?:^|\n)(?:์Šฌ๋ผ์ด๋“œ|Slide)\s*\d+|(?:^|\n)\d+[\.)](?:\s|$)'
# ์Šฌ๋ผ์ด๋“œ ์„น์…˜์œผ๋กœ ๋ถ„ํ• 
sections = re.split(slide_pattern, response, flags=re.MULTILINE | re.IGNORECASE)
# ์ฒซ ๋ฒˆ์งธ ๋นˆ ์„น์…˜ ์ œ๊ฑฐ
if sections and not sections[0].strip():
sections = sections[1:]
logger.info(f"Found {len(sections)} potential slide sections")
for idx, section in enumerate(sections):
if not section.strip():
continue
logger.debug(f"Processing section {idx}: {section[:100]}...")
slide = {
'title': '',
'content': '',
'notes': '',
'layout': 'title_content',
'chart_data': None
}
# ์„น์…˜ ๋‚ด์—์„œ ์ œ๋ชฉ, ๋‚ด์šฉ, ๋…ธํŠธ ์ถ”์ถœ
lines = section.strip().split('\n')
current_part = None
title_lines = []
content_lines = []
notes_lines = []
for line in lines:
line = line.strip()
if not line:
continue
# ์ œ๋ชฉ ์„น์…˜ ๊ฐ์ง€
if line.startswith('์ œ๋ชฉ:') or line.startswith('Title:'):
current_part = 'title'
title_text = line.split(':', 1)[1].strip() if ':' in line else ''
if title_text:
title_lines.append(title_text)
# ๋‚ด์šฉ ์„น์…˜ ๊ฐ์ง€
elif line.startswith('๋‚ด์šฉ:') or line.startswith('Content:'):
current_part = 'content'
content_text = line.split(':', 1)[1].strip() if ':' in line else ''
if content_text:
content_lines.append(content_text)
# ๋…ธํŠธ ์„น์…˜ ๊ฐ์ง€
elif line.startswith('๋…ธํŠธ:') or line.startswith('Notes:') or line.startswith('๋ฐœํ‘œ์ž ๋…ธํŠธ:'):
current_part = 'notes'
notes_text = line.split(':', 1)[1].strip() if ':' in line else ''
if notes_text:
notes_lines.append(notes_text)
# ํ˜„์žฌ ์„น์…˜์— ๋”ฐ๋ผ ๋‚ด์šฉ ์ถ”๊ฐ€
else:
if current_part == 'title' and not title_lines:
title_lines.append(line)
elif current_part == 'content':
content_lines.append(line)
elif current_part == 'notes':
notes_lines.append(line)
elif not current_part and not title_lines:
# ์ฒซ ๋ฒˆ์งธ ์ค„์„ ์ œ๋ชฉ์œผ๋กœ
title_lines.append(line)
current_part = 'content' # ์ดํ›„ ์ค„๋“ค์€ content๋กœ
elif not current_part:
content_lines.append(line)
# ์Šฌ๋ผ์ด๋“œ ๋ฐ์ดํ„ฐ ์„ค์ •
slide['title'] = ' '.join(title_lines).strip()
slide['content'] = '\n'.join(content_lines).strip()
slide['notes'] = ' '.join(notes_lines).strip()
# ์ œ๋ชฉ ์ •๋ฆฌ
slide['title'] = re.sub(r'^(์Šฌ๋ผ์ด๋“œ|Slide)\s*\d+\s*[:๏ผš\-]?\s*', '', slide['title'], flags=re.IGNORECASE)
slide['title'] = re.sub(r'^(์ œ๋ชฉ|Title)\s*[:๏ผš]\s*', '', slide['title'], flags=re.IGNORECASE)
# ๋‚ด์šฉ์ด ์žˆ๋Š” ๊ฒฝ์šฐ์—๋งŒ ์ถ”๊ฐ€
if slide['title'] or slide['content']:
logger.info(f"Slide {len(slides)+1}: Title='{slide['title'][:30]}...', Content length={len(slide['content'])}")
slides.append(slide)
# ๋งŒ์•ฝ ์œ„ ๋ฐฉ๋ฒ•์œผ๋กœ ํŒŒ์‹ฑ์ด ์•ˆ ๋˜์—ˆ๋‹ค๋ฉด, ๋” ๊ฐ„๋‹จํ•œ ๋ฐฉ๋ฒ• ์‹œ๋„
if not slides:
logger.warning("Primary parsing failed, trying fallback method...")
# ๋”๋ธ” ๋‰ด๋ผ์ธ์œผ๋กœ ๊ตฌ๋ถ„
sections = response.split('\n\n')
for section in sections:
lines = section.strip().split('\n')
if len(lines) >= 2: # ์ตœ์†Œ ์ œ๋ชฉ๊ณผ ๋‚ด์šฉ์ด ์žˆ์–ด์•ผ ํ•จ
slide = {
'title': lines[0].strip(),
'content': '\n'.join(lines[1:]).strip(),
'notes': '',
'layout': 'title_content',
'chart_data': None
}
# ์ œ๋ชฉ ์ •๋ฆฌ
slide['title'] = re.sub(r'^(์Šฌ๋ผ์ด๋“œ|Slide)\s*\d+\s*[:๏ผš\-]?\s*', '', slide['title'], flags=re.IGNORECASE)
if slide['title'] and slide['content']:
slides.append(slide)
logger.info(f"Total slides parsed: {len(slides)}")
return slides
def force_font_size(text_frame, font_size_pt: int, theme: Dict):
"""Force font size for all paragraphs and runs in a text frame"""
if not text_frame:
return
try:
# Ensure paragraphs exist
if not hasattr(text_frame, 'paragraphs'):
return
for paragraph in text_frame.paragraphs:
try:
# Set paragraph level font
if hasattr(paragraph, 'font'):
paragraph.font.size = Pt(font_size_pt)
paragraph.font.name = theme['fonts']['body']
paragraph.font.color.rgb = theme['colors']['text']
# Set run level font (most important for actual rendering)
if hasattr(paragraph, 'runs'):
for run in paragraph.runs:
run.font.size = Pt(font_size_pt)
run.font.name = theme['fonts']['body']
run.font.color.rgb = theme['colors']['text']
# If paragraph has no runs but has text, create a run
if paragraph.text and (not hasattr(paragraph, 'runs') or len(paragraph.runs) == 0):
# Force creation of runs by modifying text
temp_text = paragraph.text
paragraph.text = temp_text # This creates runs
if hasattr(paragraph, 'runs'):
for run in paragraph.runs:
run.font.size = Pt(font_size_pt)
run.font.name = theme['fonts']['body']
run.font.color.rgb = theme['colors']['text']
except Exception as e:
logger.warning(f"Error setting font for paragraph: {e}")
continue
except Exception as e:
logger.warning(f"Error in force_font_size: {e}")
def apply_theme_to_slide(slide, theme: Dict, layout_type: str = 'title_content'):
"""Apply design theme to a slide with consistent styling"""
# Add colored background shape for all slides
bg_shape = slide.shapes.add_shape(
MSO_SHAPE.RECTANGLE, 0, 0, Inches(10), Inches(5.625)
)
bg_shape.fill.solid()
# Use lighter background for content slides
if layout_type in ['title_content', 'two_content', 'comparison']:
# Light background with subtle gradient effect
bg_shape.fill.fore_color.rgb = theme['colors']['background']
# Add accent strip at top
accent_strip = slide.shapes.add_shape(
MSO_SHAPE.RECTANGLE, 0, 0, Inches(10), Inches(0.5)
)
accent_strip.fill.solid()
accent_strip.fill.fore_color.rgb = theme['colors']['primary']
accent_strip.line.fill.background()
# Add bottom accent
bottom_strip = slide.shapes.add_shape(
MSO_SHAPE.RECTANGLE, 0, Inches(5.125), Inches(10), Inches(0.5)
)
bottom_strip.fill.solid()
bottom_strip.fill.fore_color.rgb = theme['colors']['secondary']
bottom_strip.fill.transparency = 0.7
bottom_strip.line.fill.background()
else:
# Section headers get primary color background
bg_shape.fill.fore_color.rgb = theme['colors']['primary']
bg_shape.line.fill.background()
# Move background shapes to back
slide.shapes._spTree.remove(bg_shape._element)
slide.shapes._spTree.insert(2, bg_shape._element)
# Apply title formatting if exists
if slide.shapes.title:
try:
title = slide.shapes.title
if title.text_frame and title.text_frame.paragraphs:
for paragraph in title.text_frame.paragraphs:
paragraph.font.name = theme['fonts']['title']
paragraph.font.bold = True
# UPDATED: Increased font sizes for better readability
if layout_type == 'section_header':
paragraph.font.size = Pt(28) # Increased from 20
paragraph.font.color.rgb = RGBColor(255, 255, 255)
paragraph.alignment = PP_ALIGN.CENTER
else:
paragraph.font.size = Pt(24) # Increased from 18
paragraph.font.color.rgb = theme['colors']['primary']
paragraph.alignment = PP_ALIGN.LEFT
except Exception as e:
logger.warning(f"Title formatting failed: {e}")
# Apply content formatting with improved readability
# NOTE: Do NOT add emojis here - they will be added in create_advanced_ppt_from_content
for shape in slide.shapes:
if shape.has_text_frame and shape != slide.shapes.title:
try:
text_frame = shape.text_frame
# Set text frame margins for better spacing
text_frame.margin_left = Inches(0.25)
text_frame.margin_right = Inches(0.25)
text_frame.margin_top = Inches(0.1)
text_frame.margin_bottom = Inches(0.1)
# Only apply font formatting, no content modification
if text_frame.text.strip():
# Use force_font_size helper to ensure font is applied
force_font_size(text_frame, 16, theme) # Increased from 12
for paragraph in text_frame.paragraphs:
# Add line spacing for better readability
paragraph.space_after = Pt(4) # Increased from 3
paragraph.line_spacing = 1.2 # Increased from 1.1
except Exception as e:
logger.warning(f"Content formatting failed: {e}")
def add_gradient_background(slide, color1: RGBColor, color2: RGBColor):
"""Add gradient-like background to slide using shapes"""
# Note: python-pptx doesn't directly support gradients in backgrounds,
# so we'll create a gradient effect using overlapping shapes
left = top = 0
width = Inches(10)
height = Inches(5.625)
# Add base color rectangle
shape1 = slide.shapes.add_shape(
MSO_SHAPE.RECTANGLE, left, top, width, height
)
shape1.fill.solid()
shape1.fill.fore_color.rgb = color1
shape1.line.fill.background()
# Add semi-transparent overlay for gradient effect
shape2 = slide.shapes.add_shape(
MSO_SHAPE.RECTANGLE, left, top, width, Inches(2.8)
)
shape2.fill.solid()
shape2.fill.fore_color.rgb = color2
shape2.fill.transparency = 0.5
shape2.line.fill.background()
# Move shapes to back
slide.shapes._spTree.remove(shape1._element)
slide.shapes._spTree.remove(shape2._element)
slide.shapes._spTree.insert(2, shape1._element)
slide.shapes._spTree.insert(3, shape2._element)
def add_decorative_shapes(slide, theme: Dict):
"""Add decorative shapes to enhance visual appeal"""
try:
# Add corner accent circle
shape1 = slide.shapes.add_shape(
MSO_SHAPE.OVAL,
Inches(9.3), Inches(4.8),
Inches(0.7), Inches(0.7)
)
shape1.fill.solid()
shape1.fill.fore_color.rgb = theme['colors']['accent']
shape1.fill.transparency = 0.3
shape1.line.fill.background()
# Add smaller accent
shape2 = slide.shapes.add_shape(
MSO_SHAPE.OVAL,
Inches(0.1), Inches(0.1),
Inches(0.4), Inches(0.4)
)
shape2.fill.solid()
shape2.fill.fore_color.rgb = theme['colors']['secondary']
shape2.fill.transparency = 0.5
shape2.line.fill.background()
except Exception as e:
logger.warning(f"Failed to add decorative shapes: {e}")
def create_chart_slide(slide, chart_data: Dict, theme: Dict):
"""Create a chart on the slide based on data"""
try:
# Add chart
x, y, cx, cy = Inches(1), Inches(2), Inches(8), Inches(4.5)
# Prepare chart data
chart_data_obj = CategoryChartData()
# Simple bar chart example
if 'columns' in chart_data and 'sample_data' in chart_data:
# Use first numeric column for chart
numeric_cols = []
for col in chart_data['columns']:
try:
# Check if column has numeric data
float(chart_data['sample_data'][0].get(col, 0))
numeric_cols.append(col)
except:
pass
if numeric_cols:
categories = [str(row.get(chart_data['columns'][0], ''))
for row in chart_data['sample_data'][:5]]
chart_data_obj.categories = categories
for col in numeric_cols[:3]: # Max 3 series
values = [float(row.get(col, 0))
for row in chart_data['sample_data'][:5]]
chart_data_obj.add_series(col, values)
chart = slide.shapes.add_chart(
XL_CHART_TYPE.COLUMN_CLUSTERED, x, y, cx, cy, chart_data_obj
).chart
# Style the chart
chart.has_legend = True
chart.legend.position = XL_LEGEND_POSITION.BOTTOM
except Exception as e:
logger.warning(f"Chart creation failed: {e}")
# If chart fails, add a text placeholder instead
textbox = slide.shapes.add_textbox(x, y, cx, cy)
text_frame = textbox.text_frame
text_frame.text = "๋ฐ์ดํ„ฐ ์ฐจํŠธ (์ฐจํŠธ ์ƒ์„ฑ ์‹คํŒจ)"
text_frame.paragraphs[0].font.size = Pt(16) # Increased font size
text_frame.paragraphs[0].font.color.rgb = theme['colors']['secondary']
def create_advanced_ppt_from_content(
slides_data: list,
topic: str,
theme_name: str,
include_charts: bool = False,
include_ai_image: bool = False
) -> str:
"""Create advanced PPT file with consistent visual design and AI image option"""
if not PPTX_AVAILABLE:
raise ImportError("python-pptx library is required")
prs = Presentation()
theme = DESIGN_THEMES.get(theme_name, DESIGN_THEMES['professional'])
# Set slide size (16:9)
prs.slide_width = Inches(10)
prs.slide_height = Inches(5.625)
# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
# 1) ์ œ๋ชฉ ์Šฌ๋ผ์ด๋“œ(ํ‘œ์ง€) ์ƒ์„ฑ
# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
title_slide_layout = prs.slide_layouts[0]
slide = prs.slides.add_slide(title_slide_layout)
# ๋ฐฐ๊ฒฝ ๊ทธ๋ผ๋””์–ธํŠธ
add_gradient_background(slide, theme['colors']['primary'], theme['colors']['secondary'])
# AI ์ด๋ฏธ์ง€(ํ‘œ์ง€ ๊ทธ๋ฆผ)
title_top_position = Inches(2.0)
if include_ai_image and AI_IMAGE_ENABLED:
logger.info("Generating AI cover image via API...")
ai_image_path = generate_ai_cover_image_via_api(topic, slides_data)
if ai_image_path and os.path.exists(ai_image_path):
img = Image.open(ai_image_path)
img_width, img_height = img.size
# ์ด๋ฏธ์ง€ ๋” ํฌ๊ฒŒ (60% ํญ, ์ตœ๋Œ€ ๋†’์ด 4")
max_width = Inches(6)
ratio = img_height / img_width
img_w = max_width
img_h = max_width * ratio
max_height = Inches(4)
if img_h > max_height:
img_h = max_height
img_w = max_height / ratio
left = (prs.slide_width - img_w) / 2
top = Inches(0.6)
pic = slide.shapes.add_picture(ai_image_path, left, top, width=img_w, height=img_h)
pic.shadow.inherit = False
pic.shadow.visible = True
pic.shadow.blur_radius = Pt(15)
pic.shadow.distance = Pt(8)
pic.shadow.angle = 45
title_top_position = top + img_h + Inches(0.35)
try:
os.unlink(ai_image_path)
except Exception as e:
logger.warning(f"Temp image delete failed: {e}")
# ์ œ๋ชฉ / ๋ถ€์ œ๋ชฉ ํ…์ŠคํŠธ
title_shape = slide.shapes.title
subtitle_shape = slide.placeholders[1] if len(slide.placeholders) > 1 else None
if title_shape:
title_shape.left = Inches(0.5)
title_shape.width = prs.slide_width - Inches(1)
title_shape.top = int(title_top_position)
title_shape.height = Inches(1.2)
tf = title_shape.text_frame
tf.clear()
tf.text = topic
p = tf.paragraphs[0]
p.font.name = theme['fonts']['title']
p.font.size = Pt(32)
p.font.bold = True
p.font.color.rgb = RGBColor(255, 255, 255)
p.alignment = PP_ALIGN.CENTER
# ๊ฐ€๋กœ ๋ฐฉํ–ฅ ๊ณ ์ •
bodyPr = tf._txBody.bodyPr
bodyPr.set('vert', 'horz')
# ์ตœ์ƒ์œ„ ๋ ˆ์ด์–ด๋กœ ์ด๋™
slide.shapes._spTree.remove(title_shape._element)
slide.shapes._spTree.append(title_shape._element)
if subtitle_shape:
subtitle_shape.left = Inches(0.5)
subtitle_shape.width = prs.slide_width - Inches(1)
subtitle_shape.top = int(title_top_position + Inches(1.0))
subtitle_shape.height = Inches(0.9)
tf2 = subtitle_shape.text_frame
tf2.clear()
tf2.text = f"์ž๋™ ์ƒ์„ฑ๋œ ํ”„๋ ˆ์  ํ…Œ์ด์…˜ โ€ข ์ด {len(slides_data)}์žฅ"
p2 = tf2.paragraphs[0]
p2.font.name = theme['fonts']['subtitle']
p2.font.size = Pt(18)
p2.font.color.rgb = RGBColor(255, 255, 255)
p2.alignment = PP_ALIGN.CENTER
bodyPr2 = tf2._txBody.bodyPr
bodyPr2.set('vert', 'horz')
slide.shapes._spTree.remove(subtitle_shape._element)
slide.shapes._spTree.append(subtitle_shape._element)
# ์žฅ์‹ ์š”์†Œ
add_decorative_shapes(slide, theme)
# Add content slides with consistent design
for i, slide_data in enumerate(slides_data):
layout_type = slide_data.get('layout', 'title_content')
# Log slide creation
logger.info(f"Creating slide {i+1}: {slide_data.get('title', 'No title')}")
logger.debug(f"Content length: {len(slide_data.get('content', ''))}")
# Choose appropriate layout
if layout_type == 'section_header' and len(prs.slide_layouts) > 2:
slide_layout = prs.slide_layouts[2]
elif layout_type == 'two_content' and len(prs.slide_layouts) > 3:
slide_layout = prs.slide_layouts[3]
elif layout_type == 'comparison' and len(prs.slide_layouts) > 4:
slide_layout = prs.slide_layouts[4]
else:
slide_layout = prs.slide_layouts[1] if len(prs.slide_layouts) > 1 else prs.slide_layouts[0]
slide = prs.slides.add_slide(slide_layout)
# Apply theme to EVERY slide for consistency
apply_theme_to_slide(slide, theme, layout_type)
# Set title
if slide.shapes.title:
slide.shapes.title.text = slide_data.get('title', '์ œ๋ชฉ ์—†์Œ')
# IMMEDIATELY set title font size after setting text
try:
title_text_frame = slide.shapes.title.text_frame
if title_text_frame and title_text_frame.paragraphs:
for paragraph in title_text_frame.paragraphs:
if layout_type == 'section_header':
paragraph.font.size = Pt(28) # Increased from 20
paragraph.font.color.rgb = RGBColor(255, 255, 255)
paragraph.alignment = PP_ALIGN.CENTER
else:
paragraph.font.size = Pt(24) # Increased from 18
paragraph.font.color.rgb = theme['colors']['primary']
paragraph.font.bold = True
paragraph.font.name = theme['fonts']['title']
except Exception as e:
logger.warning(f"Title font sizing failed: {e}")
# Add content based on layout - COMPLETELY FIXED VERSION
if layout_type == 'section_header':
# Section header content handling
content = slide_data.get('content', '')
if content:
logger.info(f"Adding content to section header slide {i+1}: {content[:50]}...")
textbox = slide.shapes.add_textbox(
Inches(1), Inches(3.5), Inches(8), Inches(1.5)
)
tf = textbox.text_frame
tf.clear()
tf.text = content
tf.word_wrap = True
for paragraph in tf.paragraphs:
paragraph.font.name = theme['fonts']['body']
paragraph.font.size = Pt(16)
paragraph.font.color.rgb = RGBColor(255, 255, 255)
paragraph.alignment = PP_ALIGN.CENTER
# Add decorative line
line = slide.shapes.add_shape(
MSO_SHAPE.RECTANGLE, Inches(3), Inches(3.2), Inches(4), Pt(4)
)
line.fill.solid()
line.fill.fore_color.rgb = RGBColor(255, 255, 255)
line.line.fill.background()
elif layout_type == 'two_content':
content = slide_data.get('content', '')
if content:
logger.info(f"Creating two-column layout for slide {i+1}")
content_lines = content.split('\n')
mid_point = len(content_lines) // 2
# Left column
left_box = slide.shapes.add_textbox(
Inches(0.5), Inches(1.5), Inches(4.5), Inches(3.5)
)
left_tf = left_box.text_frame
left_tf.clear()
left_content = '\n'.join(content_lines[:mid_point])
if left_content:
left_tf.text = left_content
left_tf.word_wrap = True
force_font_size(left_tf, 14, theme)
# Apply emoji bullets
for paragraph in left_tf.paragraphs:
text = paragraph.text.strip()
if text and text.startswith(('-', 'โ€ข', 'โ—')) and not has_emoji(text):
clean_text = text.lstrip('-โ€ขโ— ')
emoji = get_emoji_for_content(clean_text)
paragraph.text = f"{emoji} {clean_text}"
force_font_size(left_tf, 14, theme)
# Right column
right_box = slide.shapes.add_textbox(
Inches(5), Inches(1.5), Inches(4.5), Inches(3.5)
)
right_tf = right_box.text_frame
right_tf.clear()
right_content = '\n'.join(content_lines[mid_point:])
if right_content:
right_tf.text = right_content
right_tf.word_wrap = True
force_font_size(right_tf, 14, theme)
# Apply emoji bullets
for paragraph in right_tf.paragraphs:
text = paragraph.text.strip()
if text and text.startswith(('-', 'โ€ข', 'โ—')) and not has_emoji(text):
clean_text = text.lstrip('-โ€ขโ— ')
emoji = get_emoji_for_content(clean_text)
paragraph.text = f"{emoji} {clean_text}"
force_font_size(right_tf, 14, theme)
else:
# Regular content - MOST IMPORTANT PART - COMPLETELY FIXED
content = slide_data.get('content', '')
# ๋””๋ฒ„๊น… ๋กœ๊ทธ
logger.info(f"Slide {i+1} - Content to add: '{content[:100]}...' (length: {len(content)})")
if include_charts and slide_data.get('chart_data'):
create_chart_slide(slide, slide_data['chart_data'], theme)
# content๊ฐ€ ์žˆ์œผ๋ฉด ๋ฌด์กฐ๊ฑด ํ…์ŠคํŠธ๋ฐ•์Šค ์ถ”๊ฐ€
if content and content.strip():
# ๋ช…ํ™•ํ•œ ์œ„์น˜์™€ ํฌ๊ธฐ๋กœ ํ…์ŠคํŠธ๋ฐ•์Šค ์ƒ์„ฑ
textbox = slide.shapes.add_textbox(
Inches(0.5), # left
Inches(1.5), # top
Inches(9), # width
Inches(3.5) # height
)
tf = textbox.text_frame
tf.clear()
# ํ…์ŠคํŠธ ์„ค์ •
tf.text = content.strip()
tf.word_wrap = True
# ํ…์ŠคํŠธ ํ”„๋ ˆ์ž„ ์—ฌ๋ฐฑ ์„ค์ •
tf.margin_left = Inches(0.1)
tf.margin_right = Inches(0.1)
tf.margin_top = Inches(0.05)
tf.margin_bottom = Inches(0.05)
# ํฐํŠธ ๊ฐ•์ œ ์ ์šฉ
force_font_size(tf, 16, theme)
# ๊ฐ ๋‹จ๋ฝ์— ๋Œ€ํ•ด ์ฒ˜๋ฆฌ
for p_idx, paragraph in enumerate(tf.paragraphs):
if paragraph.text.strip():
# ์ด๋ชจ์ง€ ์ถ”๊ฐ€
text = paragraph.text.strip()
if text.startswith(('-', 'โ€ข', 'โ—')) and not has_emoji(text):
clean_text = text.lstrip('-โ€ขโ— ')
emoji = get_emoji_for_content(clean_text)
paragraph.text = f"{emoji} {clean_text}"
# ํฐํŠธ ์žฌ์ ์šฉ - ๊ฐ run์— ๋Œ€ํ•ด ๋ช…์‹œ์ ์œผ๋กœ ์„ค์ •
if paragraph.runs:
for run in paragraph.runs:
run.font.size = Pt(16)
run.font.name = theme['fonts']['body']
run.font.color.rgb = theme['colors']['text']
else:
# runs๊ฐ€ ์—†์œผ๋ฉด ์ƒ์„ฑ
paragraph.font.size = Pt(16)
paragraph.font.name = theme['fonts']['body']
paragraph.font.color.rgb = theme['colors']['text']
# ๋‹จ๋ฝ ๊ฐ„๊ฒฉ
paragraph.space_before = Pt(6)
paragraph.space_after = Pt(6)
paragraph.line_spacing = 1.3
logger.info(f"Successfully added content to slide {i+1}")
else:
logger.warning(f"Slide {i+1} has no content or empty content")
# Add slide notes if available
if slide_data.get('notes'):
try:
notes_slide = slide.notes_slide
notes_text_frame = notes_slide.notes_text_frame
notes_text_frame.text = slide_data.get('notes', '')
except Exception as e:
logger.warning(f"Failed to add slide notes: {e}")
# Add slide number with better design
slide_number_bg = slide.shapes.add_shape(
MSO_SHAPE.ROUNDED_RECTANGLE,
Inches(8.3), Inches(5.0), Inches(1.5), Inches(0.5)
)
slide_number_bg.fill.solid()
slide_number_bg.fill.fore_color.rgb = theme['colors']['primary']
slide_number_bg.fill.transparency = 0.8
slide_number_bg.line.fill.background()
slide_number_box = slide.shapes.add_textbox(
Inches(8.3), Inches(5.05), Inches(1.5), Inches(0.4)
)
slide_number_frame = slide_number_box.text_frame
slide_number_frame.text = f"{i + 1} / {len(slides_data)}"
slide_number_frame.paragraphs[0].font.size = Pt(10) # Increased from 8
slide_number_frame.paragraphs[0].font.color.rgb = RGBColor(255, 255, 255)
slide_number_frame.paragraphs[0].font.bold = False
slide_number_frame.paragraphs[0].alignment = PP_ALIGN.CENTER
# Add subtle design element on alternating slides
if i % 2 == 0:
accent_shape = slide.shapes.add_shape(
MSO_SHAPE.OVAL,
Inches(9.6), Inches(0.1),
Inches(0.2), Inches(0.2)
)
accent_shape.fill.solid()
accent_shape.fill.fore_color.rgb = theme['colors']['accent']
accent_shape.line.fill.background()
# Add thank you slide with consistent design
thank_you_layout = prs.slide_layouts[5] if len(prs.slide_layouts) > 5 else prs.slide_layouts[0]
thank_you_slide = prs.slides.add_slide(thank_you_layout)
# Apply gradient background
add_gradient_background(thank_you_slide, theme['colors']['secondary'], theme['colors']['primary'])
if thank_you_slide.shapes.title:
thank_you_slide.shapes.title.text = "๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค"
try:
if thank_you_slide.shapes.title.text_frame and thank_you_slide.shapes.title.text_frame.paragraphs:
thank_you_slide.shapes.title.text_frame.paragraphs[0].font.size = Pt(36) # Increased from 28
thank_you_slide.shapes.title.text_frame.paragraphs[0].font.bold = True
thank_you_slide.shapes.title.text_frame.paragraphs[0].font.color.rgb = RGBColor(255, 255, 255)
thank_you_slide.shapes.title.text_frame.paragraphs[0].alignment = PP_ALIGN.CENTER
except Exception as e:
logger.warning(f"Thank you slide styling failed: {e}")
# Add contact or additional info placeholder
info_box = thank_you_slide.shapes.add_textbox(
Inches(2), Inches(3.5), Inches(6), Inches(1)
)
info_tf = info_box.text_frame
info_tf.text = "AI๋กœ ์ƒ์„ฑ๋œ ํ”„๋ ˆ์  ํ…Œ์ด์…˜"
info_tf.paragraphs[0].font.size = Pt(18) # Increased from 14
info_tf.paragraphs[0].font.color.rgb = RGBColor(255, 255, 255)
info_tf.paragraphs[0].alignment = PP_ALIGN.CENTER
# Save to temporary file
with tempfile.NamedTemporaryFile(delete=False, suffix=".pptx") as tmp_file:
prs.save(tmp_file.name)
return tmp_file.name
##############################################################################
# Streaming Response Handler for PPT Generation - IMPROVED VERSION
##############################################################################
def generate_ppt_content(topic: str, num_slides: int, additional_context: str, use_korean: bool = False, layout_style: str = "consistent") -> Iterator[str]:
"""Generate PPT content using LLM with clearer format"""
# Layout instructions based on style
layout_instructions = ""
if layout_style == "varied":
layout_instructions = """
์Šฌ๋ผ์ด๋“œ ๋ ˆ์ด์•„์›ƒ์„ ๋‹ค์–‘ํ•˜๊ฒŒ ๊ตฌ์„ฑํ•ด์ฃผ์„ธ์š”:
- ๋งค 5๋ฒˆ์งธ ์Šฌ๋ผ์ด๋“œ๋Š” '์„น์…˜ ๊ตฌ๋ถ„' ์Šฌ๋ผ์ด๋“œ๋กœ ๋งŒ๋“ค์–ด์ฃผ์„ธ์š”
- ๋น„๊ต๋‚˜ ๋Œ€์กฐ ๋‚ด์šฉ์ด ์žˆ์œผ๋ฉด '๋น„๊ต' ๋ ˆ์ด์•„์›ƒ์„ ์‚ฌ์šฉํ•˜์„ธ์š”
- ๋‚ด์šฉ์ด ๋งŽ์œผ๋ฉด 2๋‹จ ๊ตฌ์„ฑ์„ ๊ณ ๋ คํ•˜์„ธ์š”
"""
elif layout_style == "consistent":
layout_instructions = """
์ผ๊ด€๋œ ๋ ˆ์ด์•„์›ƒ์„ ์œ ์ง€ํ•ด์ฃผ์„ธ์š”:
- ๋ชจ๋“  ์Šฌ๋ผ์ด๋“œ๋Š” ๋™์ผํ•œ ๊ตฌ์กฐ๋กœ ์ž‘์„ฑ
- ์ œ๋ชฉ๊ณผ ๊ธ€๋จธ๋ฆฌ ๊ธฐํ˜ธ ํ˜•์‹ ํ†ต์ผ
- ๊ฐ„๊ฒฐํ•˜๊ณ  ๋ช…ํ™•ํ•œ ๊ตฌ์„ฑ
"""
# ๋” ๋ช…ํ™•ํ•œ ์‹œ์Šคํ…œ ํ”„๋กฌํ”„ํŠธ
if use_korean:
system_prompt = f"""๋‹น์‹ ์€ ์ „๋ฌธ์ ์ธ PPT ํ”„๋ ˆ์  ํ…Œ์ด์…˜ ์ž‘์„ฑ ์ „๋ฌธ๊ฐ€์ž…๋‹ˆ๋‹ค.
์ฃผ์–ด์ง„ ์ฃผ์ œ์— ๋Œ€ํ•ด ์ •ํ™•ํžˆ {num_slides}์žฅ์˜ ์Šฌ๋ผ์ด๋“œ ๋‚ด์šฉ์„ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.
**๋ฐ˜๋“œ์‹œ ์•„๋ž˜ ํ˜•์‹์„ ์ •ํ™•ํžˆ ๋”ฐ๋ผ์ฃผ์„ธ์š”:**
์Šฌ๋ผ์ด๋“œ 1
์ œ๋ชฉ: [์Šฌ๋ผ์ด๋“œ ์ œ๋ชฉ - "์Šฌ๋ผ์ด๋“œ 1" ๊ฐ™์€ ๋ฒˆํ˜ธ๋Š” ํฌํ•จํ•˜์ง€ ๋งˆ์„ธ์š”]
๋‚ด์šฉ:
- ์ฒซ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ๋‘ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ์„ธ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ๋„ค ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ๋‹ค์„ฏ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
๋…ธํŠธ: [๋ฐœํ‘œ์ž๊ฐ€ ์ด ์Šฌ๋ผ์ด๋“œ๋ฅผ ์„ค๋ช…ํ•  ๋•Œ ์‚ฌ์šฉํ•  ๊ตฌ์–ด์ฒด ์Šคํฌ๋ฆฝํŠธ]
์Šฌ๋ผ์ด๋“œ 2
์ œ๋ชฉ: [์Šฌ๋ผ์ด๋“œ ์ œ๋ชฉ]
๋‚ด์šฉ:
- ์ฒซ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ๋‘ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ์„ธ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ๋„ค ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
- ๋‹ค์„ฏ ๋ฒˆ์งธ ํ•ต์‹ฌ ํฌ์ธํŠธ
๋…ธํŠธ: [๋ฐœํ‘œ ์Šคํฌ๋ฆฝํŠธ]
(์ด๋Ÿฐ ์‹์œผ๋กœ ์Šฌ๋ผ์ด๋“œ {num_slides}๊นŒ์ง€ ๊ณ„์†)
{layout_instructions}
**์ค‘์š” ์ง€์นจ:**
1. ๊ฐ ์Šฌ๋ผ์ด๋“œ๋Š” "์Šฌ๋ผ์ด๋“œ ์ˆซ์ž"๋กœ ์‹œ์ž‘
2. ์ œ๋ชฉ: ๋’ค์— ์‹ค์ œ ์ œ๋ชฉ ์ž‘์„ฑ (๋ฒˆํ˜ธ ์ œ์™ธ)
3. ๋‚ด์šฉ: ๋’ค์— ์ •ํ™•ํžˆ 5๊ฐœ์˜ ๊ธ€๋จธ๋ฆฌ ๊ธฐํ˜ธ ํฌ์ธํŠธ
4. ๋…ธํŠธ: ๋’ค์— ๋ฐœํ‘œ ์Šคํฌ๋ฆฝํŠธ
5. ๊ฐ ์„น์…˜ ์‚ฌ์ด์— ๋นˆ ์ค„ ์—†์Œ
6. ์ด {num_slides}์žฅ ์ž‘์„ฑ
7. ๊ฐ ํฌ์ธํŠธ๋Š” '-' ๊ธฐํ˜ธ๋กœ ์‹œ์ž‘ํ•˜์„ธ์š” (์ด๋ชจ์ง€๋Š” ์ž๋™์œผ๋กœ ์ถ”๊ฐ€๋ฉ๋‹ˆ๋‹ค)
8. ๋…ธํŠธ๋Š” ํ•ด๋‹น ์Šฌ๋ผ์ด๋“œ์˜ ๋‚ด์šฉ์„ ๋ฐœํ‘œ์ž๊ฐ€ ์ฒญ์ค‘์—๊ฒŒ ์„ค๋ช…ํ•˜๋Š” ๊ตฌ์–ด์ฒด ๋Œ€๋ณธ์œผ๋กœ ์ž‘์„ฑํ•˜์„ธ์š”"""
else:
system_prompt = f"""You are a professional PPT presentation expert.
Create content for exactly {num_slides} slides on the given topic.
**You MUST follow this exact format:**
Slide 1
Title: [Slide title - do NOT include "Slide 1" in the title]
Content:
- First key point
- Second key point
- Third key point
- Fourth key point
- Fifth key point
Notes: [Speaker script in conversational style for explaining this slide]
Slide 2
Title: [Slide title]
Content:
- First key point
- Second key point
- Third key point
- Fourth key point
- Fifth key point
Notes: [Speaker script]
(Continue this way until Slide {num_slides})
**Important instructions:**
1. Each slide starts with "Slide number"
2. Title: followed by the actual title (no numbers)
3. Content: followed by exactly 5 bullet points
4. Notes: followed by speaker script
5. No empty lines between sections
6. Create exactly {num_slides} slides
7. Start each point with '-' (emojis will be added automatically)
8. Notes should be a speaker script explaining the slide content in conversational style"""
# Add search results if web search is performed
if additional_context:
system_prompt += f"\n\n์ฐธ๊ณ  ์ •๋ณด:\n{additional_context}"
# Prepare messages
user_prompt = f"์ฃผ์ œ: {topic}\n\n์œ„์—์„œ ์„ค๋ช…ํ•œ ํ˜•์‹์— ๋งž์ถฐ ์ •ํ™•ํžˆ {num_slides}์žฅ์˜ PPT ์Šฌ๋ผ์ด๋“œ ๋‚ด์šฉ์„ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”. ๊ฐ ์Šฌ๋ผ์ด๋“œ๋งˆ๋‹ค 5๊ฐœ์˜ ํ•ต์‹ฌ ํฌ์ธํŠธ์™€ ํ•จ๊ป˜, ๋ฐœํ‘œ์ž๊ฐ€ ์ฒญ์ค‘์—๊ฒŒ ํ•ด๋‹น ๋‚ด์šฉ์„ ์„ค๋ช…ํ•˜๋Š” ๊ตฌ์–ด์ฒด ๋ฐœํ‘œ ๋Œ€๋ณธ์„ ๋…ธํŠธ๋กœ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”."
if not use_korean:
user_prompt = f"Topic: {topic}\n\nPlease create exactly {num_slides} PPT slides following the format described above. Include exactly 5 key points per slide, and write speaker notes as a conversational script explaining the content to the audience."
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_prompt}
]
# Call LLM API
headers = {
"Authorization": f"Bearer {FRIENDLI_TOKEN}",
"Content-Type": "application/json"
}
payload = {
"model": FRIENDLI_MODEL_ID,
"messages": messages,
"max_tokens": min(4000, num_slides * 300), # More tokens for 5 points + notes
"top_p": 0.9,
"temperature": 0.8,
"stream": True,
"stream_options": {
"include_usage": True
}
}
try:
response = requests.post(
FRIENDLI_API_URL,
headers=headers,
json=payload,
stream=True,
timeout=60
)
response.raise_for_status()
full_response = ""
for line in response.iter_lines():
if line:
line_text = line.decode('utf-8')
if line_text.startswith("data: "):
data_str = line_text[6:]
if data_str == "[DONE]":
break
try:
data = json.loads(data_str)
if "choices" in data and len(data["choices"]) > 0:
delta = data["choices"][0].get("delta", {})
content = delta.get("content", "")
if content:
full_response += content
yield full_response
except json.JSONDecodeError:
logger.warning(f"JSON parsing failed: {data_str}")
continue
except Exception as e:
logger.error(f"LLM API error: {str(e)}")
yield f"โš ๏ธ Error generating content: {str(e)}"
##############################################################################
# Main PPT Generation Function - IMPROVED VERSION with API Image
##############################################################################
def generate_ppt(
topic: str,
num_slides: int = 10,
use_web_search: bool = False,
use_korean: bool = True,
reference_files: list = None,
design_theme: str = "professional",
font_style: str = "modern",
layout_style: str = "consistent",
include_charts: bool = False,
include_ai_image: bool = False
) -> tuple:
"""Main function to generate PPT with advanced design and API-based AI image"""
if not PPTX_AVAILABLE:
return None, "โŒ python-pptx ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ๊ฐ€ ์„ค์น˜๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค.\n\n์„ค์น˜ ๋ช…๋ น: pip install python-pptx", ""
if not topic.strip():
return None, "โŒ PPT ์ฃผ์ œ๋ฅผ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”.", ""
if num_slides < 3 or num_slides > 20:
return None, "โŒ ์Šฌ๋ผ์ด๋“œ ์ˆ˜๋Š” 3์žฅ ์ด์ƒ 20์žฅ ์ดํ•˜๋กœ ์„ค์ •ํ•ด์ฃผ์„ธ์š”.", ""
try:
# AI ์ด๋ฏธ์ง€ ์ƒ์„ฑ์ด ์š”์ฒญ๋˜์—ˆ์ง€๋งŒ ์ดˆ๊ธฐํ™”๋˜์ง€ ์•Š์€ ๊ฒฝ์šฐ
if include_ai_image and not AI_IMAGE_ENABLED:
yield None, "๐Ÿ”„ AI ์ด๋ฏธ์ง€ ์ƒ์„ฑ API์— ์—ฐ๊ฒฐํ•˜๋Š” ์ค‘...", ""
if initialize_ai_image_api():
yield None, "โœ… AI ์ด๋ฏธ์ง€ API ์—ฐ๊ฒฐ ์„ฑ๊ณต!", ""
else:
include_ai_image = False
yield None, "โš ๏ธ AI ์ด๋ฏธ์ง€ API ์—ฐ๊ฒฐ ์‹คํŒจ. AI ์ด๋ฏธ์ง€ ์—†์ด ์ง„ํ–‰ํ•ฉ๋‹ˆ๋‹ค.", ""
# Process reference files if provided
additional_context = ""
chart_data = None
if reference_files:
file_contents = []
for file_path in reference_files:
if file_path.lower().endswith(".csv"):
csv_content = analyze_csv_file(file_path)
file_contents.append(csv_content)
# Extract chart data if available
if "CHART_DATA:" in csv_content:
chart_json = csv_content.split("CHART_DATA:")[1]
try:
chart_data = json.loads(chart_json)
except:
pass
elif file_path.lower().endswith(".txt"):
file_contents.append(analyze_txt_file(file_path))
elif file_path.lower().endswith(".pdf"):
file_contents.append(pdf_to_markdown(file_path))
if file_contents:
additional_context = "\n\n".join(file_contents)
# Web search if enabled
if use_web_search:
search_query = extract_keywords(topic, top_k=5)
search_results = do_web_search(search_query, use_korean=use_korean)
if not search_results.startswith("Web search"):
additional_context += f"\n\n{search_results}"
# Generate PPT content
llm_response = ""
for response in generate_ppt_content(topic, num_slides, additional_context, use_korean, layout_style):
llm_response = response
yield None, f"๐Ÿ“ ์ƒ์„ฑ ์ค‘...\n\n{response}", response
# Parse LLM response
slides_data = parse_llm_ppt_response(llm_response, layout_style)
# Debug: ํŒŒ์‹ฑ๋œ ๊ฐ ์Šฌ๋ผ์ด๋“œ ๋‚ด์šฉ ์ถœ๋ ฅ
logger.info(f"=== Parsed Slides Debug Info ===")
for i, slide in enumerate(slides_data):
logger.info(f"Slide {i+1}:")
logger.info(f" Title: {slide.get('title', 'NO TITLE')}")
logger.info(f" Content: {slide.get('content', 'NO CONTENT')[:100]}...")
logger.info(f" Content Length: {len(slide.get('content', ''))}")
logger.info("---")
# Add chart data to relevant slides if available
if chart_data and include_charts:
for slide in slides_data:
if '๋ฐ์ดํ„ฐ' in slide.get('title', '') or 'data' in slide.get('title', '').lower():
slide['chart_data'] = chart_data
break
# Debug logging
logger.info(f"Parsed {len(slides_data)} slides from LLM response")
logger.info(f"Design theme: {design_theme}, Layout style: {layout_style}")
if not slides_data:
# Show the raw response for debugging
error_msg = "โŒ PPT ๋‚ด์šฉ ํŒŒ์‹ฑ์— ์‹คํŒจํ–ˆ์Šต๋‹ˆ๋‹ค.\n\n"
error_msg += "LLM ์‘๋‹ต์„ ํ™•์ธํ•ด์ฃผ์„ธ์š”:\n"
error_msg += "=" * 50 + "\n"
error_msg += llm_response[:500] + "..." if len(llm_response) > 500 else llm_response
yield None, error_msg, llm_response
return
# AI ์ด๋ฏธ์ง€ ์ƒ์„ฑ ์•Œ๋ฆผ
if include_ai_image and AI_IMAGE_ENABLED:
yield None, f"๐Ÿ“ ์Šฌ๋ผ์ด๋“œ ์ƒ์„ฑ ์™„๋ฃŒ!\n\n๐ŸŽจ AI 3D ํ‘œ์ง€ ์ด๋ฏธ์ง€ ์ƒ์„ฑ ์ค‘... (30์ดˆ ์ •๋„ ์†Œ์š”)", llm_response
# Create PPT file with advanced design
ppt_path = create_advanced_ppt_from_content(slides_data, topic, design_theme, include_charts, include_ai_image)
success_msg = f"โœ… PPT ํŒŒ์ผ์ด ์„ฑ๊ณต์ ์œผ๋กœ ์ƒ์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค!\n\n"
success_msg += f"๐Ÿ“Š ์ฃผ์ œ: {topic}\n"
success_msg += f"๐Ÿ“„ ์Šฌ๋ผ์ด๋“œ ์ˆ˜: {len(slides_data)}์žฅ\n"
success_msg += f"๐ŸŽจ ๋””์ž์ธ ํ…Œ๋งˆ: {DESIGN_THEMES[design_theme]['name']}\n"
success_msg += f"๐Ÿ“ ๋ ˆ์ด์•„์›ƒ ์Šคํƒ€์ผ: {layout_style}\n"
if include_ai_image and AI_IMAGE_ENABLED:
success_msg += f"๐Ÿ–ผ๏ธ AI ์ƒ์„ฑ 3D ์Šคํƒ€์ผ ํ‘œ์ง€ ์ด๋ฏธ์ง€ ํฌํ•จ\n"
success_msg += f"๐Ÿ“ ์ƒ์„ฑ๋œ ์Šฌ๋ผ์ด๋“œ:\n"
for i, slide in enumerate(slides_data[:5]): # Show first 5 slides
success_msg += f" {i+1}. {slide.get('title', '์ œ๋ชฉ ์—†์Œ')} [{slide.get('layout', 'standard')}]\n"
if slide.get('notes'):
success_msg += f" ๐Ÿ’ก ๋…ธํŠธ: {slide.get('notes', '')[:50]}...\n"
if len(slides_data) > 5:
success_msg += f" ... ์™ธ {len(slides_data) - 5}์žฅ"
yield ppt_path, success_msg, llm_response
except Exception as e:
logger.error(f"PPT generation error: {str(e)}")
import traceback
error_details = traceback.format_exc()
logger.error(f"Error details: {error_details}")
yield None, f"โŒ PPT ์ƒ์„ฑ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}\n\n์ƒ์„ธ ์˜ค๋ฅ˜:\n{error_details}", ""
##############################################################################
# Gradio UI
##############################################################################
css = """
/* Full width UI */
.gradio-container {
background: rgba(255, 255, 255, 0.98);
padding: 40px 50px;
margin: 30px auto;
width: 100% !important;
max-width: 1400px !important;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Background */
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
margin: 0;
padding: 0;
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
/* Title styling */
h1 {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
margin-bottom: 10px;
}
/* Button styles */
button.primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
border: none;
color: white !important;
font-weight: 600;
padding: 15px 30px !important;
font-size: 18px !important;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}
button.primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}
/* Input styles */
.textbox, textarea, input[type="text"], input[type="number"] {
border: 2px solid #e5e7eb;
border-radius: 12px;
padding: 15px;
font-size: 16px;
transition: all 0.3s ease;
background: white;
}
.textbox:focus, textarea:focus, input[type="text"]:focus {
border-color: #667eea;
outline: none;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
/* Card style */
.card {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
margin-bottom: 25px;
border: 1px solid rgba(102, 126, 234, 0.1);
}
/* Dropdown styles */
.dropdown {
border: 2px solid #e5e7eb;
border-radius: 12px;
padding: 12px;
background: white;
transition: all 0.3s ease;
}
.dropdown:hover {
border-color: #667eea;
}
/* Slider styles */
.gr-slider input[type="range"] {
background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
height: 8px;
border-radius: 4px;
}
/* File upload area */
.file-upload {
border: 3px dashed #667eea;
border-radius: 16px;
padding: 40px;
text-align: center;
transition: all 0.3s ease;
background: rgba(102, 126, 234, 0.02);
}
.file-upload:hover {
border-color: #764ba2;
background: rgba(102, 126, 234, 0.05);
transform: scale(1.01);
}
/* Checkbox styles */
input[type="checkbox"] {
width: 20px;
height: 20px;
margin-right: 10px;
cursor: pointer;
}
/* Tab styles */
.tabs {
border-radius: 12px;
overflow: hidden;
margin-bottom: 20px;
}
.tab-nav {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 5px;
}
.tab-nav button {
background: transparent;
color: white;
border: none;
padding: 10px 20px;
margin: 0 5px;
border-radius: 8px;
transition: all 0.3s ease;
}
.tab-nav button.selected {
background: white;
color: #667eea;
}
/* Section headers */
.section-header {
font-size: 20px;
font-weight: 600;
color: #667eea;
margin: 20px 0 15px 0;
padding-bottom: 10px;
border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}
/* Status box styling */
.status-box {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
border-radius: 12px;
padding: 20px;
}
/* Preview box styling */
.preview-box {
background: #f8f9fa;
border-radius: 12px;
padding: 20px;
font-family: 'Courier New', monospace;
font-size: 13px;
line-height: 1.5;
max-height: 500px;
overflow-y: auto;
}
"""
with gr.Blocks(css=css, title="AI PPT Generator Pro") as demo:
gr.Markdown(
"""
# ๐ŸŽฏ AI ๊ธฐ๋ฐ˜ PPT ์ž๋™ ์ƒ์„ฑ ์‹œ์Šคํ…œ Pro
๊ณ ๊ธ‰ ๋””์ž์ธ ํ…Œ๋งˆ์™€ ๋ ˆ์ด์•„์›ƒ์„ ํ™œ์šฉํ•œ ์ „๋ฌธ์ ์ธ ํ”„๋ ˆ์  ํ…Œ์ด์…˜์„ ์ž๋™์œผ๋กœ ์ƒ์„ฑํ•ฉ๋‹ˆ๋‹ค.
๊ฐ ์Šฌ๋ผ์ด๋“œ๋งˆ๋‹ค 5๊ฐœ์˜ ํ•ต์‹ฌ ํฌ์ธํŠธ์™€ ๋ฐœํ‘œ์ž ๋…ธํŠธ๋ฅผ ํฌํ•จํ•ฉ๋‹ˆ๋‹ค.
"""
)
with gr.Row():
with gr.Column(scale=2):
topic_input = gr.Textbox(
label="๐Ÿ“Œ PPT ์ฃผ์ œ",
placeholder="์˜ˆ: ์ธ๊ณต์ง€๋Šฅ์˜ ๋ฏธ๋ž˜์™€ ์‚ฐ์—… ์ ์šฉ ์‚ฌ๋ก€",
lines=2,
elem_classes="card"
)
with gr.Row():
with gr.Column():
num_slides = gr.Slider(
label="๐Ÿ“„ ์Šฌ๋ผ์ด๋“œ ์ˆ˜",
minimum=3,
maximum=20,
step=1,
value=10,
info="์ƒ์„ฑํ•  ์Šฌ๋ผ์ด๋“œ ๊ฐœ์ˆ˜ (3-20์žฅ)"
)
with gr.Column():
use_korean = gr.Checkbox(
label="๐Ÿ‡ฐ๐Ÿ‡ท ํ•œ๊ตญ์–ด",
value=True,
info="ํ•œ๊ตญ์–ด๋กœ ์ƒ์„ฑ"
)
use_web_search = gr.Checkbox(
label="๐Ÿ” ์›น ๊ฒ€์ƒ‰",
value=False,
info="์ตœ์‹  ์ •๋ณด ๊ฒ€์ƒ‰"
)
# Design Options Section
gr.Markdown("<div class='section-header'>๐ŸŽจ ๋””์ž์ธ ์˜ต์…˜</div>")
with gr.Row():
design_theme = gr.Dropdown(
label="๋””์ž์ธ ํ…Œ๋งˆ",
choices=[
("ํ”„๋กœํŽ˜์…”๋„ (ํŒŒ๋ž‘/ํšŒ์ƒ‰)", "professional"),
("๋ชจ๋˜ (๋ณด๋ผ/ํ•‘ํฌ)", "modern"),
("์ž์—ฐ (์ดˆ๋ก/๊ฐˆ์ƒ‰)", "nature"),
("ํฌ๋ฆฌ์—์ดํ‹ฐ๋ธŒ (๋‹ค์ฑ„๋กœ์šด)", "creative"),
("๋ฏธ๋‹ˆ๋ฉ€ (ํ‘๋ฐฑ)", "minimal")
],
value="professional",
elem_classes="dropdown"
)
layout_style = gr.Dropdown(
label="๋ ˆ์ด์•„์›ƒ ์Šคํƒ€์ผ",
choices=[
("์ผ๊ด€๋œ ๋ ˆ์ด์•„์›ƒ", "consistent"),
("๋‹ค์–‘ํ•œ ๋ ˆ์ด์•„์›ƒ", "varied"),
("๋ฏธ๋‹ˆ๋ฉ€ ๋ ˆ์ด์•„์›ƒ", "minimal")
],
value="consistent",
elem_classes="dropdown"
)
with gr.Row():
font_style = gr.Dropdown(
label="ํฐํŠธ ์Šคํƒ€์ผ",
choices=[
("๋ชจ๋˜", "modern"),
("ํด๋ž˜์‹", "classic"),
("์บ์ฃผ์–ผ", "casual")
],
value="modern",
elem_classes="dropdown"
)
include_charts = gr.Checkbox(
label="๐Ÿ“Š ์ฐจํŠธ ํฌํ•จ",
value=False,
info="CSV ๋ฐ์ดํ„ฐ๊ฐ€ ์žˆ์„ ๊ฒฝ์šฐ ์ฐจํŠธ ์ƒ์„ฑ"
)
include_ai_image = gr.Checkbox(
label="๐Ÿ–ผ๏ธ AI 3D ํ‘œ์ง€ ์ด๋ฏธ์ง€",
value=False,
info="AI๋กœ ์ƒ์„ฑํ•œ 3D ์Šคํƒ€์ผ ์ด๋ฏธ์ง€๋ฅผ ํ‘œ์ง€์— ์ถ”๊ฐ€ (์ƒ์„ฑ ์‹œ๊ฐ„ 30์ดˆ ์ถ”๊ฐ€)"
)
reference_files = gr.File(
label="๐Ÿ“Ž ์ฐธ๊ณ  ์ž๋ฃŒ (์„ ํƒ์‚ฌํ•ญ)",
file_types=[".pdf", ".csv", ".txt"],
file_count="multiple",
elem_classes="file-upload"
)
generate_btn = gr.Button(
"๐Ÿš€ PPT ์ƒ์„ฑํ•˜๊ธฐ",
variant="primary",
size="lg"
)
with gr.Column(scale=1):
download_file = gr.File(
label="๐Ÿ“ฅ ์ƒ์„ฑ๋œ PPT ๋‹ค์šด๋กœ๋“œ",
interactive=False,
elem_classes="card"
)
status_text = gr.Textbox(
label="๐Ÿ“Š ์ƒ์„ฑ ์ƒํƒœ",
lines=10,
interactive=False,
elem_classes="status-box"
)
with gr.Row():
content_preview = gr.Textbox(
label="๐Ÿ“ ์ƒ์„ฑ๋œ ๋‚ด์šฉ ๋ฏธ๋ฆฌ๋ณด๊ธฐ",
lines=20,
interactive=False,
visible=True,
elem_classes="preview-box"
)
gr.Markdown(
"""
### ๐Ÿ“‹ ์‚ฌ์šฉ ๋ฐฉ๋ฒ•
1. **PPT ์ฃผ์ œ ์ž…๋ ฅ**: ๊ตฌ์ฒด์ ์ธ ์ฃผ์ œ์ผ์ˆ˜๋ก ๋” ์ข‹์€ ๊ฒฐ๊ณผ
2. **์Šฌ๋ผ์ด๋“œ ์ˆ˜ ์„ ํƒ**: 3-20์žฅ ๋ฒ”์œ„์—์„œ ์„ ํƒ
3. **๋””์ž์ธ ํ…Œ๋งˆ ์„ ํƒ**: 5๊ฐ€์ง€ ์ „๋ฌธ์ ์ธ ํ…Œ๋งˆ ์ค‘ ์„ ํƒ
4. **์ถ”๊ฐ€ ์˜ต์…˜ ์„ค์ •**: ์›น ๊ฒ€์ƒ‰, ์ฐจํŠธ ํฌํ•จ ๋“ฑ
5. **AI 3D ์ด๋ฏธ์ง€**: ์ฃผ์ œ๋ฅผ ์ƒ์ง•ํ•˜๋Š” 3D ์Šคํƒ€์ผ ํ‘œ์ง€ ์ด๋ฏธ์ง€ ์ƒ์„ฑ
6. **์ฐธ๊ณ  ์ž๋ฃŒ ์—…๋กœ๋“œ**: PDF, CSV, TXT ํŒŒ์ผ ์ง€์›
7. **์ƒ์„ฑ ๋ฒ„ํŠผ ํด๋ฆญ**: AI๊ฐ€ ์ž๋™์œผ๋กœ PPT ์ƒ์„ฑ
### ๐ŸŽจ ๋””์ž์ธ ํ…Œ๋งˆ ํŠน์ง•
- **ํ”„๋กœํŽ˜์…”๋„**: ๋น„์ฆˆ๋‹ˆ์Šค ํ”„๋ ˆ์  ํ…Œ์ด์…˜์— ์ ํ•ฉํ•œ ๊น”๋”ํ•œ ๋””์ž์ธ
- **๋ชจ๋˜**: ํŠธ๋ Œ๋””ํ•˜๊ณ  ์„ธ๋ จ๋œ ์ƒ‰์ƒ ์กฐํ•ฉ
- **์ž์—ฐ**: ํŽธ์•ˆํ•˜๊ณ  ์นœ๊ทผํ•œ ๋А๋‚Œ์˜ ์ž์—ฐ ์ƒ‰์ƒ
- **ํฌ๋ฆฌ์—์ดํ‹ฐ๋ธŒ**: ๋Œ€๋‹ดํ•˜๊ณ  ํ™œ๊ธฐ์ฐฌ ์ƒ‰์ƒ์œผ๋กœ ์ฃผ๋ชฉ๋„ ๋†’์Œ
- **๋ฏธ๋‹ˆ๋ฉ€**: ๊น”๋”ํ•˜๊ณ  ๋‹จ์ˆœํ•œ ํ‘๋ฐฑ ๋””์ž์ธ
### โœจ ์ƒˆ๋กœ์šด ๊ธฐ๋Šฅ
- **5๊ฐœ ํ•ต์‹ฌ ํฌ์ธํŠธ**: ๊ฐ ์Šฌ๋ผ์ด๋“œ๋งˆ๋‹ค 5๊ฐœ์˜ ํ•ต์‹ฌ ๋‚ด์šฉ
- **๋ฐœํ‘œ์ž ๋…ธํŠธ**: ๊ฐ ์Šฌ๋ผ์ด๋“œ๋งˆ๋‹ค ๋ฐœํ‘œ์ž๋ฅผ ์œ„ํ•œ ๋…ธํŠธ ์ž๋™ ์ƒ์„ฑ
- **ํ–ฅ์ƒ๋œ ํฐํŠธ ํฌ๊ธฐ**: ๋” ํฐ ํฐํŠธ๋กœ ๊ฐ€๋…์„ฑ ํ–ฅ์ƒ
- **AI 3D ์ด๋ฏธ์ง€**: API๋ฅผ ํ†ตํ•œ ๊ณ ํ’ˆ์งˆ 3D ์Šคํƒ€์ผ ํ‘œ์ง€ ์ด๋ฏธ์ง€ (ํ•œ๊ธ€ ํ”„๋กฌํ”„ํŠธ ์ง€์›)
### ๐Ÿ’ก ๊ณ ๊ธ‰ ํŒ
- CSV ํŒŒ์ผ ์—…๋กœ๋“œ ์‹œ '์ฐจํŠธ ํฌํ•จ' ์˜ต์…˜์œผ๋กœ ๋ฐ์ดํ„ฐ ์‹œ๊ฐํ™” ๊ฐ€๋Šฅ
- ์›น ๊ฒ€์ƒ‰ ํ™œ์„ฑํ™”๋กœ ์ตœ์‹  ์ •๋ณด ๋ฐ˜์˜
- AI ์ด๋ฏธ์ง€๋Š” ์ฃผ์ œ์˜ ํ•ต์‹ฌ ํ‚ค์›Œ๋“œ๋ฅผ ๋ถ„์„ํ•˜์—ฌ ์ž๋™ ์ƒ์„ฑ
- ๋‹ค์–‘ํ•œ ๋ ˆ์ด์•„์›ƒ์œผ๋กœ ์‹œ๊ฐ์  ํฅ๋ฏธ ์œ ๋ฐœ
"""
)
# Examples
gr.Examples(
examples=[
["์ธ๊ณต์ง€๋Šฅ์˜ ๋ฏธ๋ž˜์™€ ์‚ฐ์—… ์ ์šฉ ์‚ฌ๋ก€", 10, False, True, [], "professional", "modern", "consistent", False, False],
["2024๋…„ ๋””์ง€ํ„ธ ๋งˆ์ผ€ํŒ… ํŠธ๋ Œ๋“œ", 12, True, True, [], "modern", "modern", "consistent", False, True],
["๊ธฐํ›„๋ณ€ํ™”์™€ ์ง€์†๊ฐ€๋Šฅํ•œ ๋ฐœ์ „", 15, True, True, [], "nature", "classic", "consistent", False, True],
["์Šคํƒ€ํŠธ์—… ์‚ฌ์—…๊ณ„ํš์„œ", 8, False, True, [], "creative", "modern", "varied", False, True],
],
inputs=[topic_input, num_slides, use_web_search, use_korean, reference_files,
design_theme, font_style, layout_style, include_charts, include_ai_image],
)
# Event handler
generate_btn.click(
fn=generate_ppt,
inputs=[
topic_input,
num_slides,
use_web_search,
use_korean,
reference_files,
design_theme,
font_style,
layout_style,
include_charts,
include_ai_image
],
outputs=[download_file, status_text, content_preview]
)
if __name__ == "__main__":
demo.launch()