File size: 60,544 Bytes
0eea7ac |
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 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 |
import gradio as gr
import replicate
import requests
import os
import json
import asyncio
import concurrent.futures
from io import BytesIO
from PIL import Image
from typing import List, Tuple, Dict
import zipfile
from datetime import datetime
import time
import traceback
import base64
from pptx import Presentation
from pptx.util import Inches, Pt
from pptx.dml.color import RGBColor
from pptx.enum.text import PP_ALIGN, MSO_ANCHOR
import PyPDF2
import pandas as pd
import chardet
# νκ²½ λ³μμμ ν ν° κ°μ Έμ€κΈ°
REPLICATE_API_TOKEN = os.getenv("RAPI_TOKEN")
FRIENDLI_TOKEN = os.getenv("FRIENDLI_TOKEN")
BRAVE_API_TOKEN = os.getenv("BAPI_TOKEN")
# μ€νμΌ μ μ (νμ§μ μ’
λ£ μ¬λΌμ΄λ μ€νμΌ μΆκ°)
STYLE_TEMPLATES = {
"Title Slide (Hero)": {
"name": "Title Slide",
"description": "Impactful hero image for title slide",
"use_case": "νμ§, νμ΄ν",
"example": "A dramatic wide-angle view of a modern glass skyscraper reaching into clouds with golden sunset lighting, symbolizing growth and ambition. Ultra-realistic photography style, cinematic composition, lens flare, professional corporate aesthetic"
},
"Thank You Slide": {
"name": "Thank You",
"description": "Elegant closing slide design",
"use_case": "λ§μ§λ§ μΈμ¬",
"example": "Abstract elegant background with soft gradient from deep blue to purple, golden particles floating like celebration confetti, subtle light rays, with space for 'Thank You' text. Minimalist, professional, warm feeling"
},
"3D Style (Pixar-like)": {
"name": "3D Style",
"description": "Pixar-esque 3D render with volumetric lighting",
"use_case": "νμ§, λΉμ , λ―Έλ 컨μ
",
"example": "A fluffy ginger cat wearing a tiny spacesuit, floating amidst a vibrant nebula in a 3D render. The cat is gazing curiously at a swirling planet with rings made of candy. Background is filled with sparkling stars and colorful gas clouds, lit with soft, volumetric lighting. Style: Pixar-esque, highly detailed, playful. Colors: Deep blues, purples, oranges, and pinks. Rendered in Octane, 8k resolution."
},
"Elegant SWOT Quadrant": {
"name": "SWOT Analysis",
"description": "Flat-design 4-grid layout with minimal shadows",
"use_case": "νν© λΆμ, μ λ΅ νκ°",
"example": "Elegant SWOT quadrant: flat-design 4-grid on matte-white backdrop, thin pastel separators, top-left 'Strengths' panel shows glowing shield icon and subtle motif, top-right 'Weaknesses' panel with cracked chain icon in soft crimson, bottom-left 'Opportunities' panel with sunrise-over-horizon icon in optimistic teal, bottom-right 'Threats' panel with storm-cloud & lightning icon in deep indigo, minimal shadows, no text, no watermark, 16:9, 4K"
},
"Colorful Mind Map": {
"name": "Mind Map",
"description": "Hand-drawn educational style with vibrant colors",
"use_case": "λΈλ μΈμ€ν λ°, μμ΄λμ΄ μ 리",
"example": "A handrawn colorful mind map diagram: educational style, vibrant colors, clear hierarchy, golden ratio layout. Central concept with branching sub-topics, each branch with unique color coding, organic flowing connections, doodle-style icons for each node"
},
"Business Workflow": {
"name": "Business Process",
"description": "End-to-end business workflow with clear phases",
"use_case": "νλ‘μΈμ€ μ€λͺ
, λ¨κ³λ³ μ§ν",
"example": "A detailed hand-drawn diagram illustrating an end-to-end business workflow with Market Analysis, Strategy Development, Product Design, Implementation, and Post-Launch Review phases. Clear directional arrows, iconography for each component, vibrant educational yet professional style"
},
"Industrial Design": {
"name": "Product Design",
"description": "Sleek industrial design concept sketch",
"use_case": "μ ν μκ°, 컨μ
λμμΈ",
"example": "A sleek industrial design concept: Curved metallic body with minimal bezel, Touchscreen panel for settings, Modern matte black finish, Hand-drawn concept sketch style with annotations and dimension lines"
},
"3D Bubble Chart": {
"name": "Bubble Chart",
"description": "Clean 3D bubble visualization",
"use_case": "λΉκ΅ λΆμ, ν¬μ§μ
λ",
"example": "3-D bubble chart on clean white 2Γ2 grid, quadrant titles hidden, four translucent spheres in lime, azure, amber, magenta, gentle depth-of-field, modern consulting aesthetic, no text, 4K"
},
"Timeline Ribbon": {
"name": "Timeline",
"description": "Horizontal ribbon timeline with cyber-futuristic vibe",
"use_case": "μΌμ , λ‘λλ§΅, λ§μΌμ€ν€",
"example": "Horizontal ribbon timeline, milestone pins glowing hot pink on charcoal, year markers as circles, faint motion streaks, cyber-futuristic vibe, no text, 1920Γ1080"
},
"Risk Heat Map": {
"name": "Heat Map",
"description": "Risk assessment heat map with gradient colors",
"use_case": "리μ€ν¬ λΆμ, μ°μ μμ",
"example": "Risk Heat Map: square grid, smooth gradient from mint to fire-red, cells beveled, simple legend strip hidden, long subtle shadow, sterile white frame, no text"
},
"Pyramid/Funnel": {
"name": "Funnel Chart",
"description": "Multi-layer gradient funnel visualization",
"use_case": "λ¨κ³λ³ μΆμ, ν΅μ¬ λμΆ",
"example": "Pyramid / Funnel: 5-layer gradient funnel narrowing downwards, top vivid sky-blue, mid mint-green, bottom sunset-orange, glass reflection, minimal background, no text"
},
"KPI Dashboard": {
"name": "Dashboard",
"description": "Dark-mode analytics dashboard with sci-fi interface",
"use_case": "μ±κ³Ό μ§ν, μ€μ λμ보λ",
"example": "KPI Dashboard: Dark-mode analytic dashboard, three glass speedometers glowing neon lime, two sparkline charts under, black glass background, sci-fi interface, no text, 4K"
},
"Value Chain": {
"name": "Value Chain",
"description": "Horizontal value chain with industrial look",
"use_case": "κ°μΉ μ¬μ¬, λΉμ¦λμ€ λͺ¨λΈ",
"example": "Value Chain Diagram: Horizontal value chain blocks, steel-blue gradient bars with subtle bevel, small gear icons above each segment, sleek industrial look, shadow cast, no text"
},
"Gantt Chart": {
"name": "Gantt Chart",
"description": "Hand-drawn style Gantt chart with playful colors",
"use_case": "νλ‘μ νΈ μΌμ , μμ
κ΄λ¦¬",
"example": "Gantt Chart: Hand-drawn style Gantt bars sketched with vibrant markers on dotted grid notebook page, sticky-note color palette, playful yet organized, perspective tilt, no text"
},
"Mobile App Mockup": {
"name": "App Mockup",
"description": "Clean wireframe for mobile app design",
"use_case": "μ±/μΉ UI, νλ©΄ μ€κ³",
"example": "MOCKUP DESIGN: A clean hand-drawn style wireframe for a mobile app with Title screen, Login screen, Dashboard with sections, Bottom navigation bar, minimalist design with annotations"
},
"Flowchart": {
"name": "Flowchart",
"description": "Vibrant flowchart with minimalistic icons",
"use_case": "μμ¬κ²°μ , νλ‘μΈμ€ νλ¦",
"example": "FLOWCHART DESIGN: A hand-drawn style flowchart, vibrant colors, minimalistic icons showing process flow from START to END with decision points, branches, and clear directional arrows"
}
}
# PPT ν
νλ¦Ώ μ μ (λμ μΌλ‘ μ¬λΌμ΄λ μ μ‘°μ κ°λ₯)
PPT_TEMPLATES = {
"λΉμ¦λμ€ μ μμ": {
"description": "ν¬μ μ μΉ, μ¬μ
μ μμ©",
"core_slides": [
{"title": "λͺ©μ°¨", "style": "Flowchart", "prompt_hint": "νλ μ ν
μ΄μ
ꡬ쑰"},
{"title": "λ¬Έμ μ μ", "style": "Colorful Mind Map", "prompt_hint": "νμ¬ μμ₯μ λ¬Έμ μ "},
{"title": "νν© λΆμ", "style": "Elegant SWOT Quadrant", "prompt_hint": "κ°μ , μ½μ , κΈ°ν, μν"},
{"title": "μ루μ
", "style": "Industrial Design", "prompt_hint": "μ ν/μλΉμ€ 컨μ
"},
{"title": "νλ‘μΈμ€", "style": "Business Workflow", "prompt_hint": "μ€ν λ¨κ³"},
{"title": "μΌμ ", "style": "Timeline Ribbon", "prompt_hint": "μ£Όμ λ§μΌμ€ν€"}
],
"optional_slides": [
{"title": "μμ₯ κ·λͺ¨", "style": "3D Bubble Chart", "prompt_hint": "μμ₯ κΈ°νμ μ±μ₯μ±"},
{"title": "κ²½μ λΆμ", "style": "Risk Heat Map", "prompt_hint": "κ²½μμ¬ ν¬μ§μ
λ"},
{"title": "λΉμ¦λμ€ λͺ¨λΈ", "style": "Value Chain", "prompt_hint": "μμ΅ κ΅¬μ‘°"},
{"title": "ν μκ°", "style": "Colorful Mind Map", "prompt_hint": "ν΅μ¬ νμκ³Ό μλ"},
{"title": "μ¬λ¬΄ κ³ν", "style": "KPI Dashboard", "prompt_hint": "μμ λ§€μΆκ³Ό μμ΅"},
{"title": "μν κ΄λ¦¬", "style": "Risk Heat Map", "prompt_hint": "μ£Όμ 리μ€ν¬μ λμ"},
{"title": "ννΈλμ", "style": "Business Workflow", "prompt_hint": "μ λ΅μ μ ν΄"},
{"title": "κΈ°μ μ€ν", "style": "Flowchart", "prompt_hint": "ν΅μ¬ κΈ°μ ꡬ쑰"},
{"title": "κ³ κ° μ¬λ‘", "style": "Industrial Design", "prompt_hint": "μ±κ³΅ μ¬λ‘"},
{"title": "μ±μ₯ μ λ΅", "style": "Timeline Ribbon", "prompt_hint": "νμ₯ κ³ν"},
{"title": "ν¬μ νμ©", "style": "Pyramid/Funnel", "prompt_hint": "μκΈ μ¬μ© κ³ν"},
{"title": "Exit μ λ΅", "style": "Timeline Ribbon", "prompt_hint": "μΆκ΅¬ μ λ΅"}
]
},
"μ ν μκ°": {
"description": "μ μ ν λ°μΉ, μλΉμ€ μκ°μ©",
"core_slides": [
{"title": "μ ν 컨μ
", "style": "Industrial Design", "prompt_hint": "μ ν λμμΈ"},
{"title": "μ¬μ©μ λμ¦", "style": "Colorful Mind Map", "prompt_hint": "κ³ κ° νμΈν¬μΈνΈ"},
{"title": "κΈ°λ₯ μκ°", "style": "Mobile App Mockup", "prompt_hint": "UI/UX νλ©΄"},
{"title": "μλ μ리", "style": "Flowchart", "prompt_hint": "κΈ°λ₯ νλ‘μ°"},
{"title": "μμ₯ ν¬μ§μ
", "style": "3D Bubble Chart", "prompt_hint": "κ²½μμ¬ λΉκ΅"},
{"title": "μΆμ μΌμ ", "style": "Timeline Ribbon", "prompt_hint": "λ°μΉ λ‘λλ§΅"}
],
"optional_slides": [
{"title": "νκ² κ³ κ°", "style": "Colorful Mind Map", "prompt_hint": "μ£Όμ κ³ κ°μΈ΅"},
{"title": "κ°κ²© μ μ±
", "style": "Pyramid/Funnel", "prompt_hint": "κ°κ²© μ λ΅"},
{"title": "κΈ°μ μ°μ", "style": "Industrial Design", "prompt_hint": "ν΅μ¬ κΈ°μ "},
{"title": "μ¬μ© μλ리μ€", "style": "Business Workflow", "prompt_hint": "νμ© μ¬λ‘"},
{"title": "κ³ κ° νκΈ°", "style": "KPI Dashboard", "prompt_hint": "μ¬μ©μ νκ°"},
{"title": "νλ§€ μ±λ", "style": "Value Chain", "prompt_hint": "μ ν΅ μ λ΅"},
{"title": "λ§μΌν
μ λ΅", "style": "Timeline Ribbon", "prompt_hint": "ν보 κ³ν"},
{"title": "μ±λ₯ λΉκ΅", "style": "3D Bubble Chart", "prompt_hint": "λ²€μΉλ§ν¬"}
]
},
"νλ‘μ νΈ λ³΄κ³ ": {
"description": "μ§ν μν©, μ±κ³Ό λ³΄κ³ μ©",
"core_slides": [
{"title": "νλ‘μ νΈ κ°μ", "style": "Business Workflow", "prompt_hint": "μ 체 νλ‘μΈμ€"},
{"title": "μ§ν νν©", "style": "Gantt Chart", "prompt_hint": "μμ
μΌμ "},
{"title": "리μ€ν¬ κ΄λ¦¬", "style": "Risk Heat Map", "prompt_hint": "μν μμ"},
{"title": "μ±κ³Ό μ§ν", "style": "KPI Dashboard", "prompt_hint": "λ¬μ± μ€μ "},
{"title": "ν₯ν κ³ν", "style": "Timeline Ribbon", "prompt_hint": "λ€μ λ¨κ³"}
],
"optional_slides": [
{"title": "μμ° νν©", "style": "Pyramid/Funnel", "prompt_hint": "μμ° μ§ν"},
{"title": "ν μ±κ³Ό", "style": "3D Bubble Chart", "prompt_hint": "νλ³ κΈ°μ¬λ"},
{"title": "μ΄μ κ΄λ¦¬", "style": "Risk Heat Map", "prompt_hint": "μ£Όμ μ΄μ"},
{"title": "κ°μ μ¬ν", "style": "Colorful Mind Map", "prompt_hint": "νλ‘μΈμ€ κ°μ "},
{"title": "κ΅ν", "style": "Business Workflow", "prompt_hint": "λ°°μ΄ μ "}
]
},
"μ λ΅ κΈ°ν": {
"description": "μ€μ₯κΈ° μ λ΅, λΉμ μ립μ©",
"core_slides": [
{"title": "λΉμ ", "style": "3D Style (Pixar-like)", "prompt_hint": "λ―Έλ λΉμ "},
{"title": "νκ²½ λΆμ", "style": "Elegant SWOT Quadrant", "prompt_hint": "λ΄μΈλΆ νκ²½"},
{"title": "μ λ΅ μ²΄κ³", "style": "Colorful Mind Map", "prompt_hint": "μ λ΅ κ΅¬μ‘°"},
{"title": "κ°μΉ μ¬μ¬", "style": "Value Chain", "prompt_hint": "λΉμ¦λμ€ λͺ¨λΈ"},
{"title": "μ€ν λ‘λλ§΅", "style": "Timeline Ribbon", "prompt_hint": "λ¨κ³λ³ κ³ν"},
{"title": "λͺ©ν μ§ν", "style": "KPI Dashboard", "prompt_hint": "KPI λͺ©ν"}
],
"optional_slides": [
{"title": "μμ₯ μ λ§", "style": "3D Bubble Chart", "prompt_hint": "λ―Έλ μμ₯"},
{"title": "νμ λ°©ν₯", "style": "Industrial Design", "prompt_hint": "νμ μ λ΅"},
{"title": "μ‘°μ§ λ³ν", "style": "Business Workflow", "prompt_hint": "μ‘°μ§ κ°νΈ"},
{"title": "λμ§νΈ μ ν", "style": "Flowchart", "prompt_hint": "DX μ λ΅"},
{"title": "μ§μκ°λ₯μ±", "style": "Timeline Ribbon", "prompt_hint": "ESG μ λ΅"}
]
},
"μ¬μ©μ μ μ": {
"description": "μ§μ ꡬμ±νκΈ°",
"core_slides": [],
"optional_slides": []
}
}
def brave_search(query: str) -> List[Dict]:
"""Brave Search APIλ₯Ό μ¬μ©ν μΉ κ²μ"""
if not BRAVE_API_TOKEN:
print("[Brave Search] API ν ν°μ΄ μμ΄ κ²μμ 건λλλλ€.")
return []
print(f"[Brave Search] κ²μμ΄: {query}")
headers = {
"Accept": "application/json",
"X-Subscription-Token": BRAVE_API_TOKEN
}
params = {
"q": query,
"count": 5
}
try:
response = requests.get(
"https://api.search.brave.com/res/v1/web/search",
headers=headers,
params=params,
timeout=10
)
if response.status_code == 200:
data = response.json()
results = []
for item in data.get("web", {}).get("results", [])[:3]:
results.append({
"title": item.get("title", ""),
"description": item.get("description", ""),
"url": item.get("url", "")
})
print(f"[Brave Search] {len(results)}κ° κ²°κ³Ό νλ")
return results
else:
print(f"[Brave Search] μ€λ₯: {response.status_code}")
return []
except Exception as e:
print(f"[Brave Search] μμΈ: {str(e)}")
return []
def read_uploaded_file(file_path: str) -> str:
"""μ
λ‘λλ νμΌ μ½κΈ° (PDF, CSV, TXT)"""
print(f"[νμΌ μ½κΈ°] {file_path}")
try:
# νμΌ νμ₯μ νμΈ
ext = os.path.splitext(file_path)[1].lower()
if ext == '.pdf':
# PDF μ½κΈ°
with open(file_path, 'rb') as file:
pdf_reader = PyPDF2.PdfReader(file)
text = ""
for page in pdf_reader.pages:
text += page.extract_text() + "\n"
return text[:5000] # μ΅λ 5000μ
elif ext == '.csv':
# CSV μ½κΈ°
# μΈμ½λ© κ°μ§
with open(file_path, 'rb') as file:
raw_data = file.read()
result = chardet.detect(raw_data)
encoding = result['encoding'] or 'utf-8'
df = pd.read_csv(file_path, encoding=encoding)
return f"CSV λ°μ΄ν°:\n{df.head(20).to_string()}\n\nμμ½: {len(df)} ν, {len(df.columns)} μ΄"
elif ext in ['.txt', '.text']:
# ν
μ€νΈ νμΌ μ½κΈ°
with open(file_path, 'rb') as file:
raw_data = file.read()
result = chardet.detect(raw_data)
encoding = result['encoding'] or 'utf-8'
with open(file_path, 'r', encoding=encoding) as file:
return file.read()[:5000] # μ΅λ 5000μ
else:
return "μ§μνμ§ μλ νμΌ νμμ
λλ€."
except Exception as e:
return f"νμΌ μ½κΈ° μ€λ₯: {str(e)}"
def generate_presentation_notes(topic: str, slide_title: str, content: Dict) -> str:
"""κ° μ¬λΌμ΄λμ λ°νμ λ
ΈνΈ μμ± (ꡬμ΄μ²΄)"""
print(f"[λ°νμ λ
ΈνΈ] {slide_title} μμ± μ€...")
url = "https://api.friendli.ai/dedicated/v1/chat/completions"
headers = {
"Authorization": f"Bearer {FRIENDLI_TOKEN}",
"Content-Type": "application/json"
}
system_prompt = """You are a professional presentation coach who creates natural, conversational speaker notes.
Create speaker notes that:
1. Sound natural and conversational, as if speaking to an audience
2. Include transitions and engagement phrases
3. Reference the slide content but expand with additional context
4. Use a warm, professional tone
5. Be 100-150 words long
6. Include pauses and emphasis markers where appropriate
Format:
- Use conversational language
- Include transition phrases
- Add engagement questions or comments
- Keep it professional but friendly"""
bullet_text = "\n".join(content.get("bullet_points", []))
user_message = f"""Topic: {topic}
Slide Title: {slide_title}
Subtitle: {content.get('subtitle', '')}
Key Points:
{bullet_text}
Create natural speaker notes for presenting this slide."""
payload = {
"model": "dep89a2fld32mcm",
"messages": [
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": user_message
}
],
"max_tokens": 300,
"temperature": 0.8,
"stream": False
}
try:
response = requests.post(url, json=payload, headers=headers, timeout=30)
if response.status_code == 200:
result = response.json()
notes = result['choices'][0]['message']['content'].strip()
# νκΈ μ£Όμ μΈ κ²½μ° λ²μ
if any(ord('κ°') <= ord(char) <= ord('ν£') for char in topic):
notes = translate_content_to_korean(notes)
return notes
else:
return "μ΄ μ¬λΌμ΄λμμλ ν΅μ¬ λ΄μ©μ μ€λͺ
ν΄ μ£ΌμΈμ."
except Exception as e:
print(f"[λ°νμ λ
ΈνΈ] μ€λ₯: {str(e)}")
return "μ΄ μ¬λΌμ΄λμμλ ν΅μ¬ λ΄μ©μ μ€λͺ
ν΄ μ£ΌμΈμ."
def generate_slide_content(topic: str, slide_title: str, slide_context: str, uploaded_content: str = None, web_search_results: List[Dict] = None) -> Dict[str, str]:
"""κ° μ¬λΌμ΄λμ ν
μ€νΈ λ΄μ© μμ±"""
print(f"[μ¬λΌμ΄λ λ΄μ©] {slide_title} ν
μ€νΈ μμ± μ€...")
url = "https://api.friendli.ai/dedicated/v1/chat/completions"
headers = {
"Authorization": f"Bearer {FRIENDLI_TOKEN}",
"Content-Type": "application/json"
}
system_prompt = """You are a professional presentation content writer specializing in creating concise, impactful slide content.
Your task is to create:
1. A compelling subtitle (max 10 words)
2. Exactly 5 bullet points, each being a complete, concise sentence
3. Each bullet point should be 10-15 words
Guidelines:
- Be specific and actionable
- Use professional business language
- Include relevant data points or metrics when appropriate
- Ensure content aligns with the slide's purpose
- Make each point distinct and valuable
- Use active voice and strong verbs
Output format:
Subtitle: [subtitle here]
β’ [Point 1]
β’ [Point 2]
β’ [Point 3]
β’ [Point 4]
β’ [Point 5]"""
user_message = f"""Topic: {topic}
Slide Title: {slide_title}
Context: {slide_context}"""
# μ
λ‘λλ μ½ν
μΈ κ° μμΌλ©΄ μΆκ°
if uploaded_content:
user_message += f"\n\nReference Material:\n{uploaded_content[:1000]}"
# μΉ κ²μ κ²°κ³Όκ° μμΌλ©΄ μΆκ°
if web_search_results:
search_context = "\n\nWeb Search Results:\n"
for result in web_search_results[:3]:
search_context += f"- {result['title']}: {result['description']}\n"
user_message += search_context
user_message += "\n\nCreate compelling content for this presentation slide."
payload = {
"model": "dep89a2fld32mcm",
"messages": [
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": user_message
}
],
"max_tokens": 300,
"top_p": 0.8,
"temperature": 0.7,
"stream": False
}
try:
response = requests.post(url, json=payload, headers=headers, timeout=30)
if response.status_code == 200:
result = response.json()
content = result['choices'][0]['message']['content'].strip()
# Parse content
lines = content.split('\n')
subtitle = ""
bullet_points = []
for line in lines:
if line.startswith("Subtitle:"):
subtitle = line.replace("Subtitle:", "").strip()
elif line.strip().startswith("β’"):
bullet_points.append(line.strip())
# νκΈλ‘ λ²μμ΄ νμν κ²½μ°
if any(ord('κ°') <= ord(char) <= ord('ν£') for char in topic):
subtitle = translate_content_to_korean(subtitle)
bullet_points = [translate_content_to_korean(point) for point in bullet_points]
return {
"subtitle": subtitle,
"bullet_points": bullet_points[:5] # μ΅λ 5κ°
}
else:
return {
"subtitle": slide_title,
"bullet_points": ["λ΄μ©μ μμ±ν μ μμ΅λλ€."] * 5
}
except Exception as e:
print(f"[μ¬λΌμ΄λ λ΄μ©] μ€λ₯: {str(e)}")
return {
"subtitle": slide_title,
"bullet_points": ["λ΄μ©μ μμ±ν μ μμ΅λλ€."] * 5
}
def translate_content_to_korean(text: str) -> str:
"""μμ΄ ν
μ€νΈλ₯Ό νκΈλ‘ λ²μ"""
url = "https://api.friendli.ai/dedicated/v1/chat/completions"
headers = {
"Authorization": f"Bearer {FRIENDLI_TOKEN}",
"Content-Type": "application/json"
}
payload = {
"model": "dep89a2fld32mcm",
"messages": [
{
"role": "system",
"content": "You are a translator. Translate the given English text to Korean. Maintain professional business tone. Only return the translation without any explanation."
},
{
"role": "user",
"content": text
}
],
"max_tokens": 200,
"top_p": 0.8,
"stream": False
}
try:
response = requests.post(url, json=payload, headers=headers, timeout=30)
if response.status_code == 200:
result = response.json()
return result['choices'][0]['message']['content'].strip()
else:
return text
except Exception as e:
return text
def generate_prompt_with_llm(topic: str, style_example: str = None, slide_context: str = None, uploaded_content: str = None) -> str:
"""μ£Όμ μ μ€νμΌ μμ λ₯Ό λ°μμ LLMμ μ¬μ©ν΄ μ΄λ―Έμ§ ν둬ννΈλ₯Ό μμ±"""
print(f"[LLM] ν둬ννΈ μμ± μμ: {slide_context}")
url = "https://api.friendli.ai/dedicated/v1/chat/completions"
headers = {
"Authorization": f"Bearer {FRIENDLI_TOKEN}",
"Content-Type": "application/json"
}
system_prompt = """You are an expert image prompt engineer specializing in creating prompts for professional presentation slides.
Your task is to create prompts that:
1. Are highly specific and visual, perfect for PPT backgrounds or main visuals
2. Consider the slide's purpose and maintain consistency across a presentation
3. Include style references matching the given example
4. Focus on clean, professional visuals that won't distract from text overlays
5. Ensure high contrast areas for text readability when needed
6. Maintain brand consistency and professional aesthetics
Important guidelines:
- If given a style example, adapt the topic to match that specific visual style
- Consider the slide context (e.g., "νμ§", "νν© λΆμ") to create appropriate visuals
- Always output ONLY the prompt without any explanation
- Keep prompts between 50-150 words for optimal results
- Ensure the visual supports rather than overwhelms the slide content"""
user_message = f"Topic: {topic}"
if style_example:
user_message += f"\n\nStyle reference to follow:\n{style_example}"
if slide_context:
user_message += f"\n\nSlide context: {slide_context}"
if uploaded_content:
user_message += f"\n\nAdditional context from document:\n{uploaded_content[:500]}"
payload = {
"model": "dep89a2fld32mcm",
"messages": [
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": user_message
}
],
"max_tokens": 300,
"top_p": 0.8,
"temperature": 0.7,
"stream": False
}
try:
response = requests.post(url, json=payload, headers=headers, timeout=30)
if response.status_code == 200:
result = response.json()
prompt = result['choices'][0]['message']['content'].strip()
print(f"[LLM] ν둬ννΈ μμ± μλ£: {prompt[:50]}...")
return prompt
else:
error_msg = f"ν둬ννΈ μμ± μ€ν¨: {response.status_code}"
print(f"[LLM] {error_msg}")
return error_msg
except Exception as e:
error_msg = f"ν둬ννΈ μμ± μ€ μ€λ₯ λ°μ: {str(e)}"
print(f"[LLM] {error_msg}")
return error_msg
def translate_to_english(text: str) -> str:
"""νκΈ ν
μ€νΈλ₯Ό μμ΄λ‘ λ²μ (LLM μ¬μ©)"""
if not any(ord('κ°') <= ord(char) <= ord('ν£') for char in text):
return text
print(f"[λ²μ] νκΈ κ°μ§, μμ΄λ‘ λ²μ μμ")
url = "https://api.friendli.ai/dedicated/v1/chat/completions"
headers = {
"Authorization": f"Bearer {FRIENDLI_TOKEN}",
"Content-Type": "application/json"
}
payload = {
"model": "dep89a2fld32mcm",
"messages": [
{
"role": "system",
"content": "You are a translator. Translate the given Korean text to English. Only return the translation without any explanation."
},
{
"role": "user",
"content": text
}
],
"max_tokens": 500,
"top_p": 0.8,
"stream": False
}
try:
response = requests.post(url, json=payload, headers=headers, timeout=30)
if response.status_code == 200:
result = response.json()
translated = result['choices'][0]['message']['content'].strip()
print(f"[λ²μ] μλ£")
return translated
else:
print(f"[λ²μ] μ€ν¨, μλ³Έ μ¬μ©")
return text
except Exception as e:
print(f"[λ²μ] μ€λ₯: {str(e)}, μλ³Έ μ¬μ©")
return text
def generate_image(prompt: str, seed: int = 10, slide_info: str = "") -> Tuple[Image.Image, str]:
"""Replicate APIλ₯Ό μ¬μ©ν΄ μ΄λ―Έμ§ μμ±"""
print(f"\n[μ΄λ―Έμ§ μμ±] {slide_info}")
print(f"[μ΄λ―Έμ§ μμ±] ν둬ννΈ: {prompt[:50]}...")
try:
english_prompt = translate_to_english(prompt)
if not REPLICATE_API_TOKEN:
error_msg = "RAPI_TOKEN νκ²½λ³μκ° μ€μ λμ§ μμμ΅λλ€."
print(f"[μ΄λ―Έμ§ μμ±] μ€λ₯: {error_msg}")
return None, error_msg
print(f"[μ΄λ―Έμ§ μμ±] Replicate API νΈμΆ μ€...")
client = replicate.Client(api_token=REPLICATE_API_TOKEN)
input_params = {
"seed": seed,
"prompt": english_prompt,
"speed_mode": "Extra Juiced π (even more speed)",
"output_quality": 100
}
start_time = time.time()
output = client.run(
"prunaai/hidream-l1-fast:17c237d753218fed0ed477cb553902b6b75735f48c128537ab829096ef3d3645",
input=input_params
)
elapsed = time.time() - start_time
print(f"[μ΄λ―Έμ§ μμ±] API μλ΅ λ°μ ({elapsed:.1f}μ΄)")
if output:
if isinstance(output, str) and output.startswith('http'):
print(f"[μ΄λ―Έμ§ μμ±] URLμμ μ΄λ―Έμ§ λ€μ΄λ‘λ μ€...")
response = requests.get(output, timeout=30)
img = Image.open(BytesIO(response.content))
print(f"[μ΄λ―Έμ§ μμ±] μλ£!")
return img, english_prompt
else:
print(f"[μ΄λ―Έμ§ μμ±] λ°μ΄λ리 λ°μ΄ν° μ²λ¦¬ μ€...")
img = Image.open(BytesIO(output.read()))
print(f"[μ΄λ―Έμ§ μμ±] μλ£!")
return img, english_prompt
else:
error_msg = "μ΄λ―Έμ§ μμ± μ€ν¨ - λΉ μλ΅"
print(f"[μ΄λ―Έμ§ μμ±] {error_msg}")
return None, error_msg
except Exception as e:
error_msg = f"μ€λ₯: {str(e)}"
print(f"[μ΄λ―Έμ§ μμ±] {error_msg}")
print(f"[μ΄λ―Έμ§ μμ±] μμΈ μ€λ₯:\n{traceback.format_exc()}")
return None, error_msg
def create_slide_preview_html(slide_data: Dict) -> str:
"""16:9 λΉμ¨μ μ¬λΌμ΄λ ν리뷰 HTML μμ±"""
# μ΄λ―Έμ§λ₯Ό base64λ‘ μΈμ½λ©
img_base64 = ""
if slide_data.get("image"):
buffered = BytesIO()
slide_data["image"].save(buffered, format="PNG")
img_base64 = base64.b64encode(buffered.getvalue()).decode()
# ν
μ€νΈ λ΄μ© κ°μ Έμ€κΈ°
subtitle = slide_data.get("subtitle", "")
bullet_points = slide_data.get("bullet_points", [])
# HTML μμ±
html = f"""
<div class="slide-container" style="
width: 100%;
max-width: 1200px;
margin: 20px auto;
background: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
">
<div class="slide-header" style="
background: #2c3e50;
color: white;
padding: 15px 30px;
font-size: 18px;
font-weight: bold;
">
μ¬λΌμ΄λ {slide_data.get('slide_number', '')}: {slide_data.get('title', '')}
</div>
<div class="slide-content" style="
display: flex;
height: 0;
padding-bottom: 56.25%; /* 16:9 λΉμ¨ */
position: relative;
">
<div class="slide-inner" style="
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
">
"""
# νμ§μ λ§μ§λ§ μ¬λΌμ΄λλ μ 체 νλ©΄ μ΄λ―Έμ§
if slide_data.get('title') in ['νμ§', 'Thank You']:
html += f"""
<!-- μ 체 νλ©΄ μ΄λ―Έμ§ -->
<div style="
width: 100%;
height: 100%;
position: relative;
background: #e9ecef;
">
"""
if img_base64:
html += f"""
<img src="data:image/png;base64,{img_base64}" style="
width: 100%;
height: 100%;
object-fit: cover;
" alt="Slide Image">
<div style="
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
">
<h1 style="font-size: 48px; margin-bottom: 20px;">{slide_data.get('topic', '')}</h1>
<h2 style="font-size: 24px;">{subtitle}</h2>
</div>
"""
html += """
</div>
"""
else:
# μΌλ° μ¬λΌμ΄λ λ μ΄μμ
html += f"""
<!-- ν
μ€νΈ μμ (μ’μΈ‘) -->
<div class="text-area" style="
flex: 1;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
background: #f8f9fa;
">
<h2 style="
color: #2c3e50;
font-size: 28px;
margin-bottom: 30px;
font-weight: 600;
">{subtitle}</h2>
<ul style="
list-style: none;
padding: 0;
margin: 0;
">
"""
for point in bullet_points:
html += f"""
<li style="
margin-bottom: 15px;
padding-left: 25px;
position: relative;
color: #34495e;
font-size: 16px;
line-height: 1.6;
">
<span style="
position: absolute;
left: 0;
color: #3498db;
">βΆ</span>
{point.replace('β’', '').strip()}
</li>
"""
html += f"""
</ul>
</div>
<!-- μ΄λ―Έμ§ μμ (μ°μΈ‘) -->
<div class="image-area" style="
flex: 1;
background: #e9ecef;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
">
"""
if img_base64:
html += f"""
<img src="data:image/png;base64,{img_base64}" style="
max-width: 100%;
max-height: 100%;
object-fit: contain;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
" alt="Slide Image">
"""
else:
html += """
<div style="
color: #6c757d;
text-align: center;
">
<div style="font-size: 48px;">πΌοΈ</div>
<p>μ΄λ―Έμ§ μμ± μ€...</p>
</div>
"""
html += """
</div>
"""
html += """
</div>
</div>
</div>
"""
return html
def create_pptx_file(results: List[Dict], topic: str, template_name: str) -> str:
"""μμ±λ κ²°κ³Όλ₯Ό PPTX νμΌλ‘ λ³ν (λ°νμ λ
ΈνΈ ν¬ν¨)"""
print("[PPTX] νμΌ μμ± μμ...")
# νλ μ ν
μ΄μ
μμ± (16:9 λΉμ¨)
prs = Presentation()
prs.slide_width = Inches(16)
prs.slide_height = Inches(9)
# κ° κ²°κ³Ό μ¬λΌμ΄λ μΆκ°
for i, result in enumerate(results):
if not result.get("success", False):
continue
slide_data = result.get("slide_data", {})
# λΉ λ μ΄μμ μ¬μ© (μ λͺ© νλ μ΄μ€νλ μλ μμ ν λΉ μ¬λΌμ΄λ)
blank_layout = prs.slide_layouts[6] # μμ ν λΉ λ μ΄μμ
slide = prs.slides.add_slide(blank_layout)
# νμ§ μ¬λΌμ΄λ
if slide_data.get('title') == 'νμ§':
# λ°°κ²½ μ΄λ―Έμ§ μΆκ°
if slide_data.get('image'):
try:
img_buffer = BytesIO()
slide_data['image'].save(img_buffer, format='PNG')
img_buffer.seek(0)
# μ 체 νλ©΄ λ°°κ²½ μ΄λ―Έμ§
pic = slide.shapes.add_picture(
img_buffer,
0, 0,
width=prs.slide_width,
height=prs.slide_height
)
# 맨 λ€λ‘ 보λ΄κΈ°
slide.shapes._spTree.remove(pic._element)
slide.shapes._spTree.insert(2, pic._element)
except Exception as e:
print(f"[PPTX] νμ§ μ΄λ―Έμ§ μΆκ° μ€ν¨: {str(e)}")
# μ λͺ© ν
μ€νΈ μΆκ°
title_box = slide.shapes.add_textbox(
Inches(2), Inches(3),
Inches(12), Inches(3)
)
title_frame = title_box.text_frame
title_frame.text = topic
title_para = title_frame.paragraphs[0]
title_para.font.size = Pt(48)
title_para.font.bold = True
title_para.font.color.rgb = RGBColor(255, 255, 255)
title_para.alignment = PP_ALIGN.CENTER
# λΆμ λͺ© μΆκ°
subtitle_box = slide.shapes.add_textbox(
Inches(2), Inches(6),
Inches(12), Inches(2)
)
subtitle_frame = subtitle_box.text_frame
subtitle_frame.text = slide_data.get('subtitle', f'{template_name} - AI νλ μ ν
μ΄μ
')
subtitle_para = subtitle_frame.paragraphs[0]
subtitle_para.font.size = Pt(24)
subtitle_para.font.color.rgb = RGBColor(255, 255, 255)
subtitle_para.alignment = PP_ALIGN.CENTER
# Thank You μ¬λΌμ΄λ
elif slide_data.get('title') == 'Thank You':
# λ°°κ²½ μ΄λ―Έμ§ μΆκ°
if slide_data.get('image'):
try:
img_buffer = BytesIO()
slide_data['image'].save(img_buffer, format='PNG')
img_buffer.seek(0)
# μ 체 νλ©΄ λ°°κ²½ μ΄λ―Έμ§
pic = slide.shapes.add_picture(
img_buffer,
0, 0,
width=prs.slide_width,
height=prs.slide_height
)
# 맨 λ€λ‘ 보λ΄κΈ°
slide.shapes._spTree.remove(pic._element)
slide.shapes._spTree.insert(2, pic._element)
except Exception as e:
print(f"[PPTX] Thank You μ΄λ―Έμ§ μΆκ° μ€ν¨: {str(e)}")
# Thank You ν
μ€νΈ
thanks_box = slide.shapes.add_textbox(
Inches(2), Inches(3.5),
Inches(12), Inches(2)
)
thanks_frame = thanks_box.text_frame
thanks_frame.text = "Thank You"
thanks_para = thanks_frame.paragraphs[0]
thanks_para.font.size = Pt(60)
thanks_para.font.bold = True
thanks_para.font.color.rgb = RGBColor(255, 255, 255)
thanks_para.alignment = PP_ALIGN.CENTER
# μΌλ° μ¬λΌμ΄λ
else:
# μ¬λΌμ΄λ μ λͺ© μΆκ° (μλ¨)
title_box = slide.shapes.add_textbox(
Inches(0.5), Inches(0.3),
Inches(15), Inches(0.8)
)
title_frame = title_box.text_frame
title_frame.text = f"{slide_data.get('title', '')}"
title_para = title_frame.paragraphs[0]
title_para.font.size = Pt(28)
title_para.font.bold = True
title_para.font.color.rgb = RGBColor(44, 62, 80)
# μ’μΈ‘ ν
μ€νΈ μμ
text_box = slide.shapes.add_textbox(
Inches(0.5), Inches(1.5),
Inches(7.5), Inches(6.5)
)
text_frame = text_box.text_frame
text_frame.word_wrap = True
# μμ λͺ© μΆκ°
subtitle_para = text_frame.paragraphs[0]
subtitle_para.text = slide_data.get('subtitle', '')
subtitle_para.font.size = Pt(20)
subtitle_para.font.bold = True
subtitle_para.font.color.rgb = RGBColor(52, 73, 94)
subtitle_para.space_after = Pt(20)
# λΆλ¦Ώ ν¬μΈνΈ μΆκ°
bullet_points = slide_data.get('bullet_points', [])
for point in bullet_points:
p = text_frame.add_paragraph()
p.text = point.replace('β’', '').strip()
p.font.size = Pt(16)
p.font.color.rgb = RGBColor(52, 73, 94)
p.level = 0
p.space_after = Pt(12)
p.line_spacing = 1.5
# μ°μΈ‘ μ΄λ―Έμ§ μΆκ°
if slide_data.get('image'):
try:
img_buffer = BytesIO()
slide_data['image'].save(img_buffer, format='PNG')
img_buffer.seek(0)
pic = slide.shapes.add_picture(
img_buffer,
Inches(8.5), Inches(1.5),
width=Inches(7), height=Inches(6)
)
pic.line.color.rgb = RGBColor(189, 195, 199)
pic.line.width = Pt(1)
except Exception as e:
print(f"[PPTX] μ΄λ―Έμ§ μΆκ° μ€ν¨: {str(e)}")
# νμ΄μ§ λ²νΈ μΆκ°
page_num = slide.shapes.add_textbox(
Inches(15), Inches(8.5),
Inches(1), Inches(0.5)
)
page_frame = page_num.text_frame
page_frame.text = str(i + 1)
page_para = page_frame.paragraphs[0]
page_para.font.size = Pt(12)
page_para.font.color.rgb = RGBColor(127, 140, 141)
page_para.alignment = PP_ALIGN.RIGHT
# λ°νμ λ
ΈνΈ μΆκ°
notes_slide = slide.notes_slide
notes_slide.notes_text_frame.text = slide_data.get('speaker_notes', '')
# νμΌ μ μ₯
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
filename = f"presentation_{timestamp}.pptx"
filepath = os.path.join("/tmp", filename)
prs.save(filepath)
print(f"[PPTX] νμΌ μμ± μλ£: {filename}")
return filepath
def generate_dynamic_slides(topic: str, template: Dict, slide_count: int) -> List[Dict]:
"""μ νλ μ¬λΌμ΄λ μμ λ°λΌ λμ μΌλ‘ μ¬λΌμ΄λ ꡬμ±"""
core_slides = template.get("core_slides", [])
optional_slides = template.get("optional_slides", [])
# νμ§μ Thank Youλ₯Ό μ μΈν λ³Έλ¬Έ μ¬λΌμ΄λ μ
content_slide_count = slide_count
# μ½μ΄ μ¬λΌμ΄λκ° μμ²λ μλ³΄λ€ λ§μΌλ©΄ μ‘°μ
if len(core_slides) > content_slide_count:
selected_slides = core_slides[:content_slide_count]
else:
# μ½μ΄ μ¬λΌμ΄λ + μ΅μ
λ μ¬λΌμ΄λμμ μ ν
selected_slides = core_slides.copy()
remaining = content_slide_count - len(core_slides)
if remaining > 0 and optional_slides:
# μ΅μ
λ μ¬λΌμ΄λμμ μΆκ° μ ν
additional = optional_slides[:remaining]
selected_slides.extend(additional)
# νμ§ μΆκ° (맨 μ)
slides = [{"title": "νμ§", "style": "Title Slide (Hero)", "prompt_hint": "νλ μ ν
μ΄μ
νμ§"}]
# λ³Έλ¬Έ μ¬λΌμ΄λ μΆκ°
slides.extend(selected_slides)
# Thank You μ¬λΌμ΄λ μΆκ° (맨 λ€)
slides.append({"title": "Thank You", "style": "Thank You Slide", "prompt_hint": "κ°μ¬ μΈμ¬"})
return slides
def generate_ppt_with_content(topic: str, template_name: str, custom_slides: List[Dict],
slide_count: int, seed: int, uploaded_file: str,
use_web_search: bool, progress=gr.Progress()):
"""PPT μ΄λ―Έμ§μ ν
μ€νΈ λ΄μ©μ ν¨κ» μμ± (λ°νμ λ
ΈνΈ ν¬ν¨)"""
results = []
preview_html = ""
# μ
λ‘λλ νμΌ λ΄μ© μ½κΈ°
uploaded_content = ""
if uploaded_file:
uploaded_content = read_uploaded_file(uploaded_file.name)
print(f"[νμΌ μ
λ‘λ] λ΄μ© κΈΈμ΄: {len(uploaded_content)}μ")
# ν
νλ¦Ώ μ ν λ° μ¬λΌμ΄λ ꡬμ±
if template_name == "μ¬μ©μ μ μ" and custom_slides:
slides = [{"title": "νμ§", "style": "Title Slide (Hero)", "prompt_hint": "νλ μ ν
μ΄μ
νμ§"}]
slides.extend(custom_slides)
slides.append({"title": "Thank You", "style": "Thank You Slide", "prompt_hint": "κ°μ¬ μΈμ¬"})
else:
template = PPT_TEMPLATES[template_name]
slides = generate_dynamic_slides(topic, template, slide_count)
if not slides:
yield "", "μ¬λΌμ΄λκ° μ μλμ§ μμμ΅λλ€.", None
return
total_slides = len(slides)
print(f"\n[PPT μμ±] μμ - μ΄ {total_slides}κ° μ¬λΌμ΄λ (νμ§ + λ³Έλ¬Έ {slide_count} + Thank You)")
print(f"[PPT μμ±] μ£Όμ : {topic}")
print(f"[PPT μμ±] ν
νλ¦Ώ: {template_name}")
print(f"[PPT μμ±] μΉ κ²μ: {'μ¬μ©' if use_web_search else 'λ―Έμ¬μ©'}")
# μΉ κ²μ μ€ν (μ νλ κ²½μ°)
web_search_results = []
if use_web_search and BRAVE_API_TOKEN:
progress(0.05, "μΉ κ²μ μ€...")
web_search_results = brave_search(topic)
# CSS μ€νμΌ μΆκ°
preview_html = """
<style>
.slides-container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
}
</style>
<div class="slides-container">
"""
# κ° μ¬λΌμ΄λ μμ°¨ μ²λ¦¬
for i, slide in enumerate(slides):
progress((i + 1) / (total_slides + 1), f"μ¬λΌμ΄λ {i+1}/{total_slides} μ²λ¦¬ μ€...")
slide_info = f"μ¬λΌμ΄λ {i+1}: {slide['title']}"
# ν
μ€νΈ λ΄μ© μμ±
slide_context = f"{slide['title']} - {slide.get('prompt_hint', '')}"
content = generate_slide_content(
topic, slide['title'], slide_context,
uploaded_content, web_search_results
)
# λ°νμ λ
ΈνΈ μμ±
speaker_notes = generate_presentation_notes(topic, slide['title'], content)
# ν둬ννΈ μμ± λ° μ΄λ―Έμ§ μμ±
style_key = slide["style"]
if style_key in STYLE_TEMPLATES:
style_info = STYLE_TEMPLATES[style_key]
prompt = generate_prompt_with_llm(
topic, style_info["example"],
slide_context, uploaded_content
)
# μ΄λ―Έμ§ μμ±
slide_seed = seed + i
img, used_prompt = generate_image(prompt, slide_seed, slide_info)
# μ¬λΌμ΄λ λ°μ΄ν° ꡬμ±
slide_data = {
"slide_number": i + 1,
"title": slide["title"],
"subtitle": content["subtitle"],
"bullet_points": content["bullet_points"],
"image": img,
"style": style_info["name"],
"speaker_notes": speaker_notes,
"topic": topic # νμ§μ©
}
# ν리뷰 HTML μμ±
preview_html += create_slide_preview_html(slide_data)
# νμ¬κΉμ§μ μν μ
λ°μ΄νΈ
yield preview_html + "</div>", f"### π {slide_info} μμ± μ€...", None
results.append({
"slide_data": slide_data,
"success": img is not None
})
# PPTX νμΌ μμ±
progress(0.95, "PPTX νμΌ μμ± μ€...")
pptx_path = None
try:
pptx_path = create_pptx_file(results, topic, template_name)
except Exception as e:
print(f"[PPTX] νμΌ μμ± μ€λ₯: {str(e)}")
# μ΅μ’
κ²°κ³Ό
preview_html += "</div>"
progress(1.0, "μλ£!")
successful = sum(1 for r in results if r["success"])
final_status = f"### π μμ± μλ£! μ΄ {total_slides}κ° μ¬λΌμ΄λ μ€ {successful}κ° μ±κ³΅"
if pptx_path:
final_status += f"\n\n### π₯ PPTX νμΌμ΄ μ€λΉλμμ΅λλ€! μλμμ λ€μ΄λ‘λνμΈμ."
final_status += f"\n\nπ‘ **λ°νμ λ
ΈνΈκ° κ° μ¬λΌμ΄λμ ν¬ν¨λμ΄ μμ΅λλ€!**"
yield preview_html, final_status, pptx_path
def create_custom_slides_ui():
"""μ¬μ©μ μ μ μ¬λΌμ΄λ κ΅¬μ± UI (3-20μ₯)"""
slides = []
for i in range(20): # μ΅λ 20μ₯
with gr.Row(visible=(i < 3)): # κΈ°λ³Έ 3μ₯λ§ νμ
with gr.Column(scale=2):
title = gr.Textbox(
label=f"μ¬λΌμ΄λ {i+1} μ λͺ©",
placeholder="μ: νν© λΆμ, μ루μ
, λ‘λλ§΅...",
)
with gr.Column(scale=3):
style = gr.Dropdown(
choices=list(STYLE_TEMPLATES.keys()),
label=f"μ€νμΌ μ ν",
value="Colorful Mind Map"
)
with gr.Column(scale=3):
hint = gr.Textbox(
label=f"ν둬ννΈ ννΈ",
placeholder="μ΄ μ¬λΌμ΄λμμ νννκ³ μΆμ λ΄μ©"
)
slides.append({"title": title, "style": style, "hint": hint, "row": gr.Row})
return slides
# Gradio μΈν°νμ΄μ€ μμ±
with gr.Blocks(title="PPT μ΄λ―Έμ§ μμ±κΈ°", theme=gr.themes.Soft(), css="""
.preview-container { max-width: 1400px; margin: 0 auto; }
""") as demo:
gr.Markdown("""
# π― AI κΈ°λ° PPT ν΅ν© μμ±κΈ° (μ
κ·Έλ μ΄λ λ²μ )
### ν
μ€νΈμ μ΄λ―Έμ§κ° μλ²½νκ² μ‘°νλ νλ μ ν
μ΄μ
μ μλμΌλ‘ μμ±νκ³ λ€μ΄λ‘λνμΈμ!
#### π μλ‘μ΄ κΈ°λ₯:
- π **νμ§μ Thank You μ¬λΌμ΄λ** μλ μΆκ°
- π **λ°νμ λ
ΈνΈ** μλ μμ± (ꡬμ΄μ²΄)
- π **νμΌ μ
λ‘λ** μ§μ (PDF/CSV/TXT)
- π **μΉ κ²μ** κΈ°λ₯ (Brave Search)
- ποΈ **μ¬λΌμ΄λ μ μ‘°μ ** (6-20μ₯)
""")
# API ν ν° μν νμΈ
token_status = []
if not REPLICATE_API_TOKEN:
token_status.append("β οΈ RAPI_TOKEN νκ²½ λ³μκ° μ€μ λμ§ μμμ΅λλ€.")
if not FRIENDLI_TOKEN:
token_status.append("β οΈ FRIENDLI_TOKEN νκ²½ λ³μκ° μ€μ λμ§ μμμ΅λλ€.")
if not BRAVE_API_TOKEN:
token_status.append("βΉοΈ BAPI_TOKENμ΄ μμ΄ μΉ κ²μ κΈ°λ₯μ΄ λΉνμ±νλ©λλ€.")
if token_status:
gr.Markdown("\n".join(token_status))
with gr.Row():
with gr.Column(scale=1):
# κΈ°λ³Έ μ
λ ₯
topic_input = gr.Textbox(
label="νλ μ ν
μ΄μ
μ£Όμ ",
placeholder="μ: AI μ€ννΈμ
ν¬μ μ μΉ, μ μ ν λ°μΉ, λμ§νΈ μ ν μ λ΅",
lines=2
)
# PPT ν
νλ¦Ώ μ ν
template_select = gr.Dropdown(
choices=list(PPT_TEMPLATES.keys()),
label="PPT ν
νλ¦Ώ μ ν",
value="λΉμ¦λμ€ μ μμ",
info="λͺ©μ μ λ§λ ν
νλ¦Ώμ μ ννμΈμ"
)
# μ¬λΌμ΄λ μ μ ν
slide_count = gr.Slider(
minimum=6,
maximum=20,
value=8,
step=1,
label="λ³Έλ¬Έ μ¬λΌμ΄λ μ (νμ§μ Thank You μ μΈ)",
info="μμ±ν λ³Έλ¬Έ μ¬λΌμ΄λ μλ₯Ό μ ννμΈμ"
)
# νμΌ μ
λ‘λ
file_upload = gr.File(
label="μ°Έκ³ μλ£ μ
λ‘λ (μ ν)",
file_types=[".pdf", ".csv", ".txt"],
type="filepath"
)
# μΉ κ²μ μ΅μ
use_web_search = gr.Checkbox(
label="μΉ κ²μ μ¬μ©",
value=False,
info="Brave Searchλ₯Ό μ¬μ©νμ¬ μ΅μ μ 보 λ°μ"
)
# ν
νλ¦Ώ μ€λͺ
template_info = gr.Markdown()
# μλ κ°
seed_input = gr.Slider(
minimum=1,
maximum=100,
value=10,
step=1,
label="μλ κ°"
)
generate_btn = gr.Button("π PPT μ 체 μμ± (ν
μ€νΈ + μ΄λ―Έμ§ + λ°νλ
ΈνΈ)", variant="primary", size="lg")
# PPTX λ€μ΄λ‘λ μμ
with gr.Row():
download_file = gr.File(
label="π₯ μμ±λ PPTX νμΌ λ€μ΄λ‘λ",
visible=True,
elem_id="download-file"
)
# μ¬μ©μ μ μ μΉμ
with gr.Accordion("π μ¬μ©μ μ μ μ¬λΌμ΄λ ꡬμ±", open=False) as custom_accordion:
gr.Markdown("ν
νλ¦Ώμ μ¬μ©νμ§ μκ³ μ§μ μ¬λΌμ΄λλ₯Ό ꡬμ±νμΈμ. (3-20μ₯)")
# μ¬μ©μ μ μ μ¬λΌμ΄λ μ μ ν
custom_slide_count = gr.Slider(
minimum=3,
maximum=20,
value=3,
step=1,
label="μ¬μ©μ μ μ μ¬λΌμ΄λ μ"
)
custom_slides_components = create_custom_slides_ui()
# μν νμ
status_output = gr.Markdown(
value="### π ν
νλ¦Ώμ μ ννκ³ μμ± λ²νΌμ ν΄λ¦νμΈμ!"
)
# ν리뷰 μμ
preview_output = gr.HTML(
label="PPT ν리뷰 (16:9)",
elem_classes="preview-container"
)
# μ΄λ²€νΈ νΈλ€λ¬
def update_template_info(template_name, slide_count):
if template_name in PPT_TEMPLATES:
template = PPT_TEMPLATES[template_name]
info = f"**{template['description']}**\n\n"
# λμ μΌλ‘ μμ±λ μ¬λΌμ΄λ κ΅¬μ± νμ
slides = generate_dynamic_slides("", template, slide_count)
info += f"μμ±λ μ¬λΌμ΄λ ({len(slides)}μ₯):\n"
for i, slide in enumerate(slides):
style_info = STYLE_TEMPLATES.get(slide['style'], {})
info += f"{i+1}. {slide['title']} - {style_info.get('use_case', '')}\n"
return info
return ""
def update_custom_slides_visibility(count):
"""μ¬μ©μ μ μ μ¬λΌμ΄λ μμ λ°λΌ UI νμ/μ¨κΉ"""
updates = []
for i in range(20):
updates.extend([
gr.update(visible=(i < count)), # title
gr.update(visible=(i < count)), # style
gr.update(visible=(i < count)) # hint
])
return updates
def generate_ppt_handler(topic, template_name, slide_count, seed, file_upload,
use_web_search, custom_slide_count, progress=gr.Progress(),
*custom_inputs):
if not topic.strip():
yield "", "β μ£Όμ λ₯Ό μ
λ ₯ν΄μ£ΌμΈμ.", None
return
# μ¬μ©μ μ μ μ¬λΌμ΄λ μ²λ¦¬
custom_slides = []
if template_name == "μ¬μ©μ μ μ":
for i in range(0, custom_slide_count * 3, 3):
if i < len(custom_inputs):
title = custom_inputs[i]
style = custom_inputs[i+1] if i+1 < len(custom_inputs) else None
hint = custom_inputs[i+2] if i+2 < len(custom_inputs) else ""
if title and style:
custom_slides.append({
"title": title,
"style": style,
"prompt_hint": hint
})
# PPT μμ±
for preview, status, pptx_file in generate_ppt_with_content(
topic, template_name, custom_slides, slide_count, seed,
file_upload, use_web_search, progress
):
yield preview, status, pptx_file
# μ΄λ²€νΈ μ°κ²°
template_select.change(
fn=update_template_info,
inputs=[template_select, slide_count],
outputs=[template_info]
)
slide_count.change(
fn=update_template_info,
inputs=[template_select, slide_count],
outputs=[template_info]
)
custom_slide_count.change(
fn=update_custom_slides_visibility,
inputs=[custom_slide_count],
outputs=[comp for slide in custom_slides_components for comp in [slide["title"], slide["style"], slide["hint"]]]
)
# μ¬μ©μ μ μ μ
λ ₯ μμ§
all_custom_inputs = []
for slide_components in custom_slides_components:
all_custom_inputs.extend([
slide_components["title"],
slide_components["style"],
slide_components["hint"]
])
generate_btn.click(
fn=generate_ppt_handler,
inputs=[topic_input, template_select, slide_count, seed_input,
file_upload, use_web_search, custom_slide_count] + all_custom_inputs,
outputs=[preview_output, status_output, download_file]
)
# μ΄κΈ° ν
νλ¦Ώ μ 보 νμ
demo.load(
fn=update_template_info,
inputs=[template_select, slide_count],
outputs=[template_info]
)
# μ± μ€ν
if __name__ == "__main__":
print("\n" + "="*50)
print("π PPT ν΅ν© μμ±κΈ° (μ
κ·Έλ μ΄λ λ²μ ) μμ!")
print("="*50)
# νκ²½ λ³μ νμΈ
if not REPLICATE_API_TOKEN:
print("β οΈ κ²½κ³ : RAPI_TOKEN νκ²½ λ³μκ° μ€μ λμ§ μμμ΅λλ€.")
else:
print("β
RAPI_TOKEN νμΈλ¨")
if not FRIENDLI_TOKEN:
print("β οΈ κ²½κ³ : FRIENDLI_TOKEN νκ²½ λ³μκ° μ€μ λμ§ μμμ΅λλ€.")
else:
print("β
FRIENDLI_TOKEN νμΈλ¨")
if not BRAVE_API_TOKEN:
print("βΉοΈ BAPI_TOKENμ΄ μμ΄ μΉ κ²μ κΈ°λ₯μ΄ λΉνμ±νλ©λλ€.")
else:
print("β
BAPI_TOKEN νμΈλ¨")
print("="*50 + "\n")
demo.launch() |