Spaces:
Running
Running
File size: 50,238 Bytes
744e5e2 |
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 |
import nbformat
from nbconvert import HTMLExporter
from traitlets.config import Config
import json
import copy
from jinja2 import DictLoader
import datetime
import logging
# Configure logging for jupyter_handler module
logger = logging.getLogger(__name__)
system_template = """\
<details>
<summary style="display: flex; align-items: center; cursor: pointer; margin-bottom: 12px;">
<h3 style="color: #374151; margin: 0; margin-right: 8px; font-size: 14px; font-weight: 600;">System</h3>
<span class="arrow" style="margin-right: 12px; font-size: 12px;">▶</span>
<div style="flex: 1; height: 2px; background-color: #374151;"></div>
</summary>
<div style="margin-top: 8px; padding: 8px; background-color: #f9fafb; border-radius: 4px; border-left: 3px solid #374151; margin-bottom: 16px;">
{}
</div>
</details>
<style>
details > summary .arrow {{
display: inline-block;
transition: transform 0.2s;
}}
details[open] > summary .arrow {{
transform: rotate(90deg);
}}
details > summary {{
list-style: none;
}}
details > summary::-webkit-details-marker {{
display: none;
}}
</style>
"""
user_template = """\
<div style="display: flex; align-items: center; margin-bottom: 12px;">
<h3 style="color: #166534; margin: 0; margin-right: 12px; font-size: 14px; font-weight: 600;">User</h3>
<div style="flex: 1; height: 2px; background-color: #166534;"></div>
</div>
<div style="margin-bottom: 16px;">{}</div>"""
assistant_thinking_template = """\
<div style="display: flex; align-items: center; margin-bottom: 12px;">
<h3 style="color: #1d5b8e; margin: 0; margin-right: 12px; font-size: 14px; font-weight: 600;">Assistant</h3>
<div style="flex: 1; height: 2px; background-color: #1d5b8e;"></div>
</div>
<div style="margin-bottom: 16px;">{}</div>"""
assistant_final_answer_template = """<div class="alert alert-block alert-warning">
<b>Assistant:</b> Final answer: {}
</div>
"""
web_search_template = """
<details style="margin-bottom: 16px; border: 1px solid #e1e5e9; border-radius: 6px; background-color: #f8f9fa;">
<summary style="display: flex; align-items: center; cursor: pointer; padding: 12px; background-color: #e3f2fd; border-radius: 6px 6px 0 0; margin: 0;">
<h4 style="color: #1976d2; margin: 0; margin-right: 8px; font-size: 14px; font-weight: 600;">🔍 Web Search Results</h4>
<span class="search-arrow" style="margin-left: auto; font-size: 12px; transition: transform 0.2s;">▼</span>
</summary>
<div style="padding: 16px; background-color: #ffffff;">
<div style="margin-bottom: 12px; padding: 8px; background-color: #f0f7ff; border-radius: 4px; border-left: 3px solid #2196f3;">
<strong style="color: #1976d2;">Query:</strong> <em>{query}</em>
</div>
{quick_answer}
<div style="margin-top: 16px;">
<h5 style="color: #424242; font-size: 13px; margin-bottom: 12px; font-weight: 600;">📚 Sources:</h5>
{sources}
</div>
</div>
</details>
<style>
details[open] > summary .search-arrow {{
transform: rotate(180deg);
}}
details > summary {{
list-style: none;
}}
details > summary::-webkit-details-marker {{
display: none;
}}
.source-item {{
margin-bottom: 8px;
padding: 8px;
background-color: #f9f9f9;
border-radius: 4px;
border-left: 2px solid #4caf50;
}}
.source-title {{
font-weight: 600;
color: #2e7d32;
font-size: 13px;
margin-bottom: 4px;
}}
.source-url {{
color: #666;
font-size: 11px;
text-decoration: none;
word-break: break-all;
}}
.source-url:hover {{
color: #1976d2;
text-decoration: underline;
}}
.relevance-score {{
display: inline-block;
background-color: #e8f5e8;
color: #2e7d32;
padding: 2px 6px;
border-radius: 12px;
font-size: 10px;
font-weight: 600;
margin-left: 8px;
}}
.quick-answer {{
background-color: #fff8e1;
border-left: 3px solid #ffc107;
padding: 12px;
margin-bottom: 16px;
border-radius: 4px;
}}
.quick-answer-title {{
color: #f57c00;
font-weight: 600;
font-size: 13px;
margin-bottom: 6px;
}}
</style>
"""
header_message = """<div style="text-align: center; padding: 24px 16px; margin-bottom: 24px;">
<h1 style="color: #1e3a8a; font-size: 48px; font-weight: 700; margin: 0 0 8px 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
🔬 Eureka Agent
</h1>
<p style="color: #6b7280; font-size: 11px; margin: 0; display: flex; align-items: center; justify-content: center; gap: 6px;">
<span>
Built on top of
<a href="https://huggingface.co/spaces/lvwerra/jupyter-agent-2" target="_blank" style="color: #6b7280; text-decoration: underline;">
Jupyter Agent 2
</a>
</span>
</p>
</div>
"""
shell_command_template = """
<div style="background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 8px; margin: 16px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.3); border: 1px solid #334155;">
<!-- Terminal Header -->
<div style="background: linear-gradient(90deg, #374151 0%, #4b5563 100%); padding: 8px 12px; border-radius: 8px 8px 0 0; border-bottom: 1px solid #6b7280; display: flex; align-items: center; gap: 6px;">
<div style="width: 12px; height: 12px; background: #ef4444; border-radius: 50%;"></div>
<div style="width: 12px; height: 12px; background: #f59e0b; border-radius: 50%;"></div>
<div style="width: 12px; height: 12px; background: #10b981; border-radius: 50%;"></div>
<span style="color: #d1d5db; font-size: 12px; font-weight: 500; margin-left: 12px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Terminal</span>
</div>
<!-- Command Area -->
<div style="padding: 16px; background-color: #0f172a;">
<div style="display: flex; align-items: center; margin-bottom: 4px;">
<span style="color: #22d3ee; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace; font-size: 14px; font-weight: 600; margin-right: 8px;">$</span>
<span style="color: #e2e8f0; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace; font-size: 14px; line-height: 1.4;">{}</span>
</div>
</div>
</div>
"""
shell_output_template = """
<div style="background: linear-gradient(135deg, #111827 0%, #1f2937 100%) !important; border-radius: 8px; margin: 8px 0 16px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.2); border: 1px solid #374151;">
<div style="padding: 16px; background-color: #111827 !important; border-radius: 8px;">
<pre style="margin: 0 !important; color: #f1f5f9 !important; background-color: #111827 !important; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace; font-size: 13px; line-height: 1.5; overflow-x: auto; white-space: pre-wrap; text-shadow: 0 1px 2px rgba(0,0,0,0.1); border: none !important;">{}</pre>
</div>
</div>
<style>
/* Ensure shell output maintains dark theme */
.shell-output pre {{
background-color: #111827 !important;
color: #f1f5f9 !important;
border: none !important;
}}
.shell-output {{
background-color: #111827 !important;
}}
</style>
"""
bad_html_bad = """input[type="file"] {
display: block;
}"""
EXECUTING_WIDGET = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #e3f2fd; border-radius: 6px; border-left: 3px solid #2196f3;">
<div style="display: flex; gap: 4px;">
<div style="width: 6px; height: 6px; background-color: #2196f3; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;"></div>
<div style="width: 6px; height: 6px; background-color: #2196f3; border-radius: 50%; animation: pulse 1.5s ease-in-out 0.1s infinite;"></div>
<div style="width: 6px; height: 6px; background-color: #2196f3; border-radius: 50%; animation: pulse 1.5s ease-in-out 0.2s infinite;"></div>
</div>
<span style="color: #1976d2; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
Executing code...
</span>
</div>
<style>
@keyframes pulse {
0%, 80%, 100% {
opacity: 0.3;
transform: scale(0.8);
}
40% {
opacity: 1;
transform: scale(1);
}
}
</style>
"""
GENERATING_WIDGET = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #f3e5f5; border-radius: 6px; border-left: 3px solid #9c27b0;">
<div style="width: 80px; height: 4px; background-color: #e1bee7; border-radius: 2px; overflow: hidden;">
<div style="width: 30%; height: 100%; background-color: #9c27b0; border-radius: 2px; animation: progress 2s ease-in-out infinite;"></div>
</div>
<span style="color: #7b1fa2; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
Generating...
</span>
</div>
<style>
@keyframes progress {
0% { transform: translateX(-100%); }
100% { transform: translateX(250%); }
}
</style>
"""
DONE_WIDGET = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #e8f5e8; border-radius: 6px; border-left: 3px solid #4caf50;">
<div style="width: 16px; height: 16px; background-color: #4caf50; border-radius: 50%; display: flex; align-items: center; justify-content: center;">
<svg width="10" height="8" viewBox="0 0 10 8" fill="none">
<path d="M1 4L3.5 6.5L9 1" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<span style="color: #2e7d32; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
Generation complete
</span>
</div>
"""
DONE_WIDGET = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #e8f5e8; border-radius: 6px; border-left: 3px solid #4caf50; animation: fadeInOut 4s ease-in-out forwards;">
<div style="width: 16px; height: 16px; background-color: #4caf50; border-radius: 50%; display: flex; align-items: center; justify-content: center;">
<svg width="10" height="8" viewBox="0 0 10 8" fill="none">
<path d="M1 4L3.5 6.5L9 1" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<span style="color: #2e7d32; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
Generation complete
</span>
</div>
<style>
@keyframes fadeInOut {
0% { opacity: 0; transform: translateY(10px); }
15% { opacity: 1; transform: translateY(0); }
85% { opacity: 1; transform: translateY(0); }
100% { opacity: 0; transform: translateY(-10px); }
}
</style>
"""
STOPPED_WIDGET = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #fff3e0; border-radius: 6px; border-left: 3px solid #ff9800;">
<div style="width: 16px; height: 16px; background-color: #ff9800; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 10px;">
⏸
</div>
<span style="color: #f57c00; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
Execution stopped by user
</span>
</div>
"""
ERROR_WIDGET = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #ffebee; border-radius: 6px; border-left: 3px solid #f44336;">
<div style="width: 16px; height: 16px; background-color: #f44336; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 10px;">
⚠
</div>
<span style="color: #c62828; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
Execution failed - check error details above
</span>
</div>
"""
ERROR_HTML = """\
<div style="display: flex; align-items: center; gap: 8px; padding: 12px; background-color: #ffebee; border-radius: 6px; border-left: 3px solid #f44336; margin: 8px 0;">
<div style="width: 20px; height: 20px; background-color: #f44336; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 12px;">
!
</div>
<div style="color: #c62828; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
<strong>Error:</strong> {}
</div>
</div>"""
STOPPED_SANDBOX_HTML = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #f5f5f5; border-radius: 6px; border-left: 3px solid #9e9e9e; margin-bottom: 16px;">
<div style="width: 16px; height: 16px; background-color: #9e9e9e; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 10px;">
⏹
</div>
<div style="flex: 1;">
<div style="margin-bottom: 4px; font-size: 13px; color: #757575; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 500;">
Sandbox stopped
</div>
<div style="width: 100%; height: 8px; background-color: #e0e0e0; border-radius: 4px; overflow: hidden;">
<div style="height: 100%; background-color: #9e9e9e; border-radius: 4px; width: 100%;"></div>
</div>
<div style="display: flex; justify-content: space-between; margin-top: 4px; font-size: 11px; color: #757575; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
<span>Started: {start_time}</span>
<span>Expired: {end_time}</span>
</div>
</div>
</div>
"""
TIMEOUT_HTML = """
<div style="display: flex; align-items: center; gap: 8px; padding: 8px 12px; background-color: #fff3e0; border-radius: 6px; border-left: 3px solid #ff9800; margin-bottom: 16px;">
<div style="width: 16px; height: 16px; background-color: #ff9800; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 10px;">
⏱
</div>
<div style="flex: 1;">
<div style="margin-bottom: 4px; font-size: 13px; color: #f57c00; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 500;">
The E2B Sandbox for code execution has a timeout of {total_seconds} seconds.
</div>
<div style="width: 100%; height: 8px; background-color: #ffe0b3; border-radius: 4px; overflow: hidden;">
<div id="progress-bar-{unique_id}" style="height: 100%; background: linear-gradient(90deg, #ff9800 0%, #f57c00 50%, #f44336 100%); border-radius: 4px; width: {current_progress}%; animation: progress-fill-{unique_id} {remaining_seconds}s linear forwards;"></div>
</div>
<div style="display: flex; justify-content: space-between; margin-top: 4px; font-size: 11px; color: #f57c00; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
<span>Started: {start_time}</span>
<span>Expires: {end_time}</span>
</div>
</div>
</div>
<style>
@keyframes progress-fill-{unique_id} {{
from {{ width: {current_progress}%; }}
to {{ width: 100%; }}
}}
</style>
"""
TIMEOUT_HTML = """
<div style="display: flex; align-items: center; gap: 8px; padding: 6px 10px; background-color: #fafafa; border-radius: 4px; border-left: 2px solid #d1d5db; margin-bottom: 8px; font-size: 12px;">
<div style="width: 12px; height: 12px; background-color: #d1d5db; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 8px;">
⏱
</div>
<div style="flex: 1;">
<div style="margin-bottom: 2px; font-size: 11px; color: #6b7280; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 400;">
Sandbox timeout: {total_seconds}s
</div>
<div style="width: 100%; height: 6px; background-color: #e5e7eb; border-radius: 3px; overflow: hidden;">
<div id="progress-bar-{unique_id}" style="height: 100%; background-color: #6b7280; border-radius: 3px; width: {current_progress}%; animation: progress-fill-{unique_id} {remaining_seconds}s linear forwards;"></div>
</div>
<div style="display: flex; justify-content: space-between; margin-top: 2px; font-size: 10px; color: #9ca3af; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
<span>Started: {start_time}</span>
<span>Expires: {end_time}</span>
</div>
</div>
</div>
<style>
@keyframes progress-fill-{unique_id} {{
from {{ width: {current_progress}%; }}
to {{ width: 100%; }}
}}
</style>
"""
# Custom CSS for notebook styling including shell commands
custom_css = """
<style type="text/css">
/* Code font size */
.highlight pre, .highlight code,
div.input_area pre, div.output_area pre {
font-size: 12px !important;
line-height: 1.4 !important;
}
/* Fix prompt truncation */
.jp-InputPrompt, .jp-OutputPrompt {
text-overflow: clip !important;
}
/* Shell command styling - force dark theme */
.shell-output {
background-color: #111827 !important;
}
.shell-output div {
background: linear-gradient(135deg, #111827 0%, #1f2937 100%) !important;
}
.shell-output pre {
background-color: #111827 !important;
color: #f1f5f9 !important;
border: none !important;
margin: 0 !important;
}
/* Override any notebook styles that might interfere */
div[data-jp-cell-type="markdown"] .shell-output pre {
background-color: #111827 !important;
color: #f1f5f9 !important;
}
/* Additional terminal styling */
.terminal-header {
background: linear-gradient(90deg, #374151 0%, #4b5563 100%) !important;
}
</style>
"""
# Configure the exporter
config = Config()
html_exporter = HTMLExporter(config=config, template_name="classic")
class JupyterNotebook:
def __init__(self, messages=None, session_state_data=None):
self.exec_count = 0
self.countdown_info = None
# If session_state_data is provided, use it directly
if session_state_data and "notebook_data" in session_state_data:
logger.info("Initializing JupyterNotebook from session state")
self.data = session_state_data["notebook_data"]
# Count existing code cells to maintain execution count
self.exec_count = len([cell for cell in self.data.get("cells", [])
if cell.get("cell_type") == "code" and cell.get("execution_count")])
logger.info(f"JupyterNotebook initialized from session state with {len(self.data['cells'])} cells, exec_count={self.exec_count}")
return
# Legacy initialization path
if messages is None:
messages = []
logger.debug(f"Initializing JupyterNotebook with {len(messages)} messages")
self.data, self.code_cell_counter = self.create_base_notebook(messages)
logger.info(f"JupyterNotebook initialized with {len(self.data['cells'])} cells")
def create_base_notebook(self, messages):
logger.debug("Creating base notebook structure")
base_notebook = {
"metadata": {
"kernel_info": {"name": "python3"},
"language_info": {
"name": "python",
"version": "3.12",
},
},
"nbformat": 4,
"nbformat_minor": 0,
"cells": []
}
# Add header
base_notebook["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": header_message
})
logger.debug("Added header cell to notebook")
# Set initial data
self.data = base_notebook
# Add empty code cell if no messages
if len(messages) == 0:
self.data["cells"].append({
"cell_type": "code",
"execution_count": None,
"metadata": {},
"source": "",
"outputs": []
})
logger.debug("Added empty code cell for new notebook")
return self.data, 0
# Process messages using existing methods
logger.info(f"Processing {len(messages)} messages for notebook creation")
i = 0
while i < len(messages):
message = messages[i]
logger.debug(f"Processing message {i+1}/{len(messages)}: {message['role']}")
if message["role"] == "system":
logger.debug("Adding system message as markdown")
self.add_markdown(message["content"], "system")
elif message["role"] == "user":
logger.debug("Adding user message as markdown")
self.add_markdown(message["content"], "user")
elif message["role"] == "assistant":
if "tool_calls" in message:
logger.debug(f"Processing assistant message with {len(message['tool_calls'])} tool calls")
# Add assistant thinking if there's content
if message.get("content"):
logger.debug("Adding assistant thinking content")
self.add_markdown(message["content"], "assistant")
# Process tool calls - we know the next message(s) will be tool responses
for tool_call in message["tool_calls"]:
if tool_call["function"]["name"] == "add_and_execute_jupyter_code_cell":
logger.debug(f"Processing code execution tool call: {tool_call['id']}")
tool_args = json.loads(tool_call["function"]["arguments"])
code = tool_args["code"]
logger.debug(f"Code cell contains {len(code)} characters")
# Get the next tool response (guaranteed to exist)
tool_message = messages[i + 1]
if tool_message["role"] == "tool" and tool_message.get("tool_call_id") == tool_call["id"]:
logger.debug(f"Found matching tool response for {tool_call['id']}")
# Use the raw execution if available, otherwise fall back to empty list
execution = tool_message.get("raw_execution", [])
self.add_code_execution(code, execution, parsed=True)
logger.debug(f"Added code execution cell with {len(execution)} outputs")
i += 1 # Skip the tool message since we just processed it
else:
logger.warning(f"No matching tool response found for tool call {tool_call['id']}")
else:
# Regular assistant message
logger.debug("Adding regular assistant message")
self.add_markdown(message["content"], "assistant")
elif message["role"] == "tool":
# Skip - should have been handled with corresponding tool_calls
# This shouldn't happen given our assumptions, but just in case
logger.debug("Skipping tool message (should have been processed with tool_calls)")
pass
i += 1
return self.data, 0
def _update_countdown_cell(self):
if not self.countdown_info:
logger.debug("No countdown info available, skipping countdown update")
return
logger.debug("Updating countdown cell")
start_time = self.countdown_info['start_time']
end_time = self.countdown_info['end_time']
current_time = datetime.datetime.now(datetime.timezone.utc)
remaining_time = end_time - current_time
# Show stopped message if expired
if remaining_time.total_seconds() <= 0:
logger.info("Sandbox has expired, showing stopped message")
# Format display for stopped sandbox
start_display = start_time.strftime("%H:%M")
end_display = end_time.strftime("%H:%M")
stopped_html = STOPPED_SANDBOX_HTML.format(
start_time=start_display,
end_time=end_display
)
# Update countdown cell to show stopped message
stopped_cell = {
"cell_type": "markdown",
"metadata": {},
"source": stopped_html
}
# Find and update existing countdown cell
for i, cell in enumerate(self.data["cells"]):
if cell.get("cell_type") == "markdown" and ("⏱" in str(cell.get("source", "")) or "⏹" in str(cell.get("source", ""))):
self.data["cells"][i] = stopped_cell
logger.debug(f"Updated countdown cell at position {i} with stopped message")
break
return
# Calculate current progress
total_duration = end_time - start_time
elapsed_time = current_time - start_time
current_progress = (elapsed_time.total_seconds() / total_duration.total_seconds()) * 100
current_progress = max(0, min(100, current_progress))
logger.debug(f"Countdown progress: {current_progress:.1f}% ({remaining_time.total_seconds():.0f}s remaining)")
# Format display
start_display = start_time.strftime("%H:%M")
end_display = end_time.strftime("%H:%M")
remaining_seconds = int(remaining_time.total_seconds())
remaining_minutes = remaining_seconds // 60
remaining_secs = remaining_seconds % 60
remaining_display = f"{remaining_minutes}:{remaining_secs:02d}"
# Generate unique ID to avoid CSS conflicts when updating
unique_id = int(current_time.timestamp() * 1000) % 100000
# Calculate total timeout duration in seconds
total_seconds = int(total_duration.total_seconds())
countdown_html = TIMEOUT_HTML.format(
start_time=start_display,
end_time=end_display,
current_progress=current_progress,
remaining_seconds=remaining_seconds,
unique_id=unique_id,
total_seconds=total_seconds
)
# Update or insert the countdown cell
countdown_cell = {
"cell_type": "markdown",
"metadata": {},
"source": countdown_html
}
# Find existing countdown cell by looking for the timer emoji
found_countdown = False
for i, cell in enumerate(self.data["cells"]):
if cell.get("cell_type") == "markdown" and "⏱" in str(cell.get("source", "")):
# Update existing countdown cell
self.data["cells"][i] = countdown_cell
found_countdown = True
logger.debug(f"Updated existing countdown cell at position {i}")
break
if not found_countdown:
# Insert new countdown cell at position 1 (after header)
self.data["cells"].insert(1, countdown_cell)
logger.debug("Inserted new countdown cell at position 1")
def add_sandbox_countdown(self, start_time, end_time):
logger.info(f"Adding sandbox countdown: {start_time} to {end_time}")
# Store the countdown info for later updates
self.countdown_info = {
'start_time': start_time,
'end_time': end_time,
'cell_index': 1 # Remember where we put it
}
def add_code_execution(self, code, execution, parsed=False):
self.exec_count += 1
logger.debug(f"Adding code execution cell #{self.exec_count} with {len(code)} chars of code")
outputs = execution if parsed else self.parse_exec_result_nb(execution)
logger.debug(f"Code execution has {len(outputs)} outputs")
self.data["cells"].append({
"cell_type": "code",
"execution_count": self.exec_count,
"metadata": {},
"source": code,
"outputs": outputs
})
def add_code(self, code):
"""Add a code cell without execution results"""
self.exec_count += 1
logger.debug(f"Adding code cell #{self.exec_count} with {len(code)} chars (no execution)")
self.data["cells"].append({
"cell_type": "code",
"execution_count": self.exec_count,
"metadata": {},
"source": code,
"outputs": []
})
def append_execution(self, execution):
"""Append execution results to the immediate previous cell if it's a code cell"""
if (len(self.data["cells"]) > 0 and
self.data["cells"][-1]["cell_type"] == "code"):
outputs = self.parse_exec_result_nb(execution)
self.data["cells"][-1]["outputs"] = outputs
logger.debug(f"Appended {len(outputs)} outputs to last code cell")
else:
logger.error("Cannot append execution: previous cell is not a code cell")
raise ValueError("Cannot append execution: previous cell is not a code cell")
def has_execution_error(self, execution):
"""Check if an execution result contains an error"""
has_error = execution.error is not None
logger.debug(f"Execution error check: {has_error}")
return has_error
def has_execution_warnings(self, execution):
"""Check if an execution result contains warnings (stderr output but no error)"""
has_warnings = (execution.error is None and
execution.logs.stderr and
len(execution.logs.stderr) > 0)
logger.debug(f"Execution warning check: {has_warnings}")
return has_warnings
def update_last_code_cell(self, code):
"""Update the source code of the last code cell"""
if (len(self.data["cells"]) > 0 and
self.data["cells"][-1]["cell_type"] == "code"):
logger.debug(f"Updating last code cell with {len(code)} chars")
self.data["cells"][-1]["source"] = code
# Clear previous outputs when updating code
self.data["cells"][-1]["outputs"] = []
logger.debug("Cleared previous outputs from updated code cell")
else:
logger.error("Cannot update: last cell is not a code cell")
raise ValueError("Cannot update: last cell is not a code cell")
def get_last_cell_type(self):
"""Get the type of the last cell, or None if no cells exist"""
if len(self.data["cells"]) > 0:
cell_type = self.data["cells"][-1]["cell_type"]
logger.debug(f"Last cell type: {cell_type}")
return cell_type
logger.debug("No cells exist, returning None")
return None
def add_markdown(self, markdown, role="markdown"):
logger.debug(f"Adding markdown cell with role '{role}' ({len(markdown)} chars)")
if role == "system":
system_message = markdown if markdown else "default"
clean_message = self._clean_markdown_formatting(system_message)
markdown_formatted = system_template.format(clean_message)
elif role == "user":
clean_message = self._clean_markdown_formatting(markdown)
markdown_formatted = user_template.format(clean_message)
elif role == "assistant":
clean_message = self._clean_markdown_formatting(markdown)
markdown_formatted = assistant_thinking_template.format(clean_message)
markdown_formatted = markdown_formatted.replace('<think>', '<think>')
markdown_formatted = markdown_formatted.replace('</think>', '</think>')
else:
# Default case for raw markdown
markdown_formatted = self._clean_markdown_formatting(markdown)
self.data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": markdown_formatted
})
def add_shell_command(self, command):
"""Add a shell command cell with terminal-style formatting"""
logger.debug(f"Adding shell command cell: '{command}'")
# Format command with terminal-style template
shell_formatted = shell_command_template.format(self._clean_shell_command(command))
self.data["cells"].append({
"cell_type": "markdown",
"metadata": {"shell_command": True, "command": command},
"source": shell_formatted
})
def append_shell_execution(self, execution):
"""Append shell execution results to the notebook with terminal styling"""
logger.debug("Appending shell execution results")
# Format the shell output using terminal styling
output_content = self._format_shell_output(execution)
shell_output_formatted = shell_output_template.format(output_content)
# Wrap in a div with shell-output class for styling
shell_output_with_class = f'<div class="shell-output">{shell_output_formatted}</div>'
# Add the output as a new markdown cell
self.data["cells"].append({
"cell_type": "markdown",
"metadata": {"shell_output": True},
"source": shell_output_with_class
})
logger.debug("Added shell output cell to notebook")
def _clean_shell_command(self, command):
"""Clean and escape shell command for display"""
if not command:
return ""
# Basic HTML escaping for shell commands
command = command.replace('&', '&')
command = command.replace('<', '<')
command = command.replace('>', '>')
command = command.replace('"', '"')
command = command.replace("'", ''')
return command
def _format_shell_output(self, execution):
"""Format shell execution output for terminal-style display"""
output_parts = []
# Add stdout if present
if execution.logs.stdout:
stdout_text = ''.join(execution.logs.stdout).strip()
if stdout_text:
output_parts.append(stdout_text)
# Add stderr if present (but filter out plot data)
if execution.logs.stderr:
stderr_text = ''.join(execution.logs.stderr).strip()
# Filter out plot data from stderr
plot_start = stderr_text.find("__PLOT_DATA__")
plot_end = stderr_text.find("__END_PLOT_DATA__")
if plot_start != -1 and plot_end != -1:
clean_stderr = stderr_text[:plot_start] + stderr_text[plot_end + len("__END_PLOT_DATA__"):]
stderr_text = clean_stderr.strip()
if stderr_text:
output_parts.append(f"STDERR:\n{stderr_text}")
# Add error information if present
if execution.error:
error_text = f"ERROR: {execution.error.name}: {execution.error.value}"
if execution.error.traceback:
error_text += f"\n{execution.error.traceback}"
output_parts.append(error_text)
# Add execution results if present (for shell commands that produce results)
if execution.results:
for result in execution.results:
if result.text:
output_parts.append(result.text.strip())
# Join all output parts
final_output = '\n\n'.join(output_parts) if output_parts else "No output"
# Basic HTML escaping for output
final_output = final_output.replace('&', '&')
final_output = final_output.replace('<', '<')
final_output = final_output.replace('>', '>')
logger.debug(f"Formatted shell output: {len(final_output)} chars")
return final_output
def add_error(self, error_message):
"""Add an error message cell to the notebook"""
logger.warning(f"Adding error cell: {error_message}")
error_html = ERROR_HTML.format(error_message)
self.data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": error_html
})
def add_final_answer(self, answer):
logger.info(f"Adding final answer cell ({len(answer)} chars)")
self.data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": assistant_final_answer_template.format(answer)
})
def add_web_search_result(self, query, quick_answer=None, sources=None):
"""Add a web search result cell with dropdown UI"""
logger.info(f"Adding web search result for query: {query}")
# Format quick answer section
quick_answer_html = ""
if quick_answer:
# Clean up markdown formatting in quick answer
clean_answer = self._clean_markdown_formatting(quick_answer)
quick_answer_html = f"""
<div class="quick-answer">
<div class="quick-answer-title">💡 Quick Answer:</div>
<div>{clean_answer}</div>
</div>
"""
# Format sources section
sources_html = ""
if sources:
source_items = []
for i, source in enumerate(sources, 1):
title = self._clean_markdown_formatting(source.get('title', f'Source {i}'))
url = source.get('url', '#')
relevance = source.get('relevance', 0.0)
source_item = f"""
<div class="source-item">
<div class="source-title">{i}. {title}
<span class="relevance-score">Relevance: {relevance:.2f}</span>
</div>
<a href="{url}" target="_blank" class="source-url">{url}</a>
</div>
"""
source_items.append(source_item)
sources_html = "".join(source_items)
# Format the complete web search result
web_search_html = web_search_template.format(
query=self._clean_markdown_formatting(query),
quick_answer=quick_answer_html,
sources=sources_html
)
self.data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": web_search_html
})
def _clean_markdown_formatting(self, text):
"""Clean up markdown formatting issues like excessive ** characters"""
if not text:
return ""
# Replace multiple consecutive asterisks with proper formatting
import re
# Handle bold text: **text** -> <strong>text</strong>
text = re.sub(r'\*\*([^*]+)\*\*', r'<strong>\1</strong>', text)
# Handle italic text: *text* -> <em>text</em>
text = re.sub(r'(?<!\*)\*(?!\*)([^*]+)\*(?!\*)', r'<em>\1</em>', text)
# Clean up any remaining multiple asterisks
text = re.sub(r'\*{3,}', '**', text)
# Handle line breaks
text = text.replace('\n', '<br>')
# Handle links [text](url) -> <a href="url">text</a>
text = re.sub(r'\[([^\]]+)\]\(([^)]+)\)', r'<a href="\2" target="_blank">\1</a>', text)
return text
def parse_exec_result_nb(self, execution):
"""Convert an E2B Execution object to Jupyter notebook cell output format"""
logger.debug("Parsing execution result for notebook format")
outputs = []
if execution.logs.stdout:
stdout_text = ''.join(execution.logs.stdout)
logger.debug(f"Adding stdout output ({len(stdout_text)} chars)")
outputs.append({
'output_type': 'stream',
'name': 'stdout',
'text': stdout_text
})
if execution.logs.stderr:
stderr_text = ''.join(execution.logs.stderr)
# Filter out plot data from stderr before displaying
plot_start = stderr_text.find("__PLOT_DATA__")
plot_end = stderr_text.find("__END_PLOT_DATA__")
if plot_start != -1 and plot_end != -1:
# Remove plot data from stderr text
clean_stderr = stderr_text[:plot_start] + stderr_text[plot_end + len("__END_PLOT_DATA__"):]
stderr_text = clean_stderr.strip()
# Only add stderr output if there's content after filtering
if stderr_text:
logger.debug(f"Adding stderr output ({len(stderr_text)} chars)")
outputs.append({
'output_type': 'stream',
'name': 'stderr',
'text': stderr_text
})
if execution.error:
logger.debug(f"Adding error output: {execution.error.name}: {execution.error.value}")
outputs.append({
'output_type': 'error',
'ename': execution.error.name,
'evalue': execution.error.value,
'traceback': [line for line in execution.error.traceback.split('\n')]
})
for i, result in enumerate(execution.results):
logger.debug(f"Processing execution result {i+1}/{len(execution.results)}")
output = {
'output_type': 'execute_result' if result.is_main_result else 'display_data',
'metadata': {},
'data': {}
}
if result.text:
output['data']['text/plain'] = result.text
if result.html:
output['data']['text/html'] = result.html
if result.png:
output['data']['image/png'] = result.png
if result.svg:
output['data']['image/svg+xml'] = result.svg
if result.jpeg:
output['data']['image/jpeg'] = result.jpeg
if result.pdf:
output['data']['application/pdf'] = result.pdf
if result.latex:
output['data']['text/latex'] = result.latex
if result.json:
output['data']['application/json'] = result.json
if result.javascript:
output['data']['application/javascript'] = result.javascript
if result.is_main_result and execution.execution_count is not None:
output['execution_count'] = execution.execution_count
if output['data']:
logger.debug(f"Added result output with data types: {list(output['data'].keys())}")
outputs.append(output)
else:
logger.debug("Skipping result with no data")
logger.debug(f"Parsed execution result into {len(outputs)} outputs")
return outputs
def filter_base64_images(self, message):
"""Filter out base64 encoded images from message content"""
if isinstance(message, dict) and 'nbformat' in message:
for output in message['nbformat']:
if 'data' in output:
for key in list(output['data'].keys()):
if key.startswith('image/') or key == 'application/pdf':
output['data'][key] = '<placeholder_image>'
return message
def render(self, mode="default"):
logger.debug(f"Rendering notebook in '{mode}' mode with {len(self.data['cells'])} cells")
if self.countdown_info is not None:
self._update_countdown_cell()
render_data = copy.deepcopy(self.data)
if mode == "generating":
render_data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": GENERATING_WIDGET
})
elif mode == "executing":
logger.debug("Adding executing widget to render")
render_data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": EXECUTING_WIDGET
})
elif mode == "done":
logger.debug("Adding done widget to render")
render_data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": DONE_WIDGET
})
elif mode == "stopped":
logger.debug("Adding stopped widget to render")
render_data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": STOPPED_WIDGET
})
elif mode == "error":
logger.debug("Adding error widget to render")
render_data["cells"].append({
"cell_type": "markdown",
"metadata": {},
"source": ERROR_WIDGET
})
elif mode != "default":
logger.error(f"Invalid render mode: {mode}")
raise ValueError(f"Render mode should be generating, executing, done, stopped, or error. Given: {mode}.")
notebook = nbformat.from_dict(render_data)
notebook_body, _ = html_exporter.from_notebook_node(notebook)
notebook_body = notebook_body.replace(bad_html_bad, "")
logger.debug(f"Rendered notebook HTML ({len(notebook_body)} chars)")
# make code font a bit smaller with custom css
if "<head>" in notebook_body:
notebook_body = notebook_body.replace("</head>", f"{custom_css}</head>")
logger.debug("Applied custom CSS to notebook")
return notebook_body
@classmethod
def from_session_state(cls, session_state_data):
"""Create JupyterNotebook instance from session state data"""
return cls(session_state_data=session_state_data)
def get_session_notebook_data(self):
"""Get notebook data in format suitable for session state"""
return self.data.copy()
def update_from_session_state(self, session_state_data):
"""Update notebook data from session state"""
if "notebook_data" in session_state_data:
self.data = session_state_data["notebook_data"].copy()
# Update execution count based on existing cells
self.exec_count = len([cell for cell in self.data.get("cells", [])
if cell.get("cell_type") == "code" and cell.get("execution_count")])
logger.debug(f"Updated notebook from session state: {len(self.data['cells'])} cells, exec_count={self.exec_count}")
def main():
"""Create a mock notebook to test styling"""
# Create mock messages
mock_messages = [
{"role": "system", "content": "You are a helpful AI assistant that can write and execute Python code."},
{"role": "user", "content": "Can you help me create a simple plot of a sine wave?"},
{"role": "assistant", "content": "I'll help you create a sine wave plot using matplotlib. **Let me search** for the *best practices* first."},
{"role": "assistant", "tool_calls": [{"id": "call_1", "function": {"name": "add_and_execute_jupyter_code_cell", "arguments": '{"code": "import numpy as np\\nimport matplotlib.pyplot as plt\\n\\n# Create x values\\nx = np.linspace(0, 4*np.pi, 100)\\ny = np.sin(x)\\n\\n# Create the plot\\nplt.figure(figsize=(10, 6))\\nplt.plot(x, y, \'b-\', linewidth=2)\\nplt.title(\'Sine Wave\')\\nplt.xlabel(\'x\')\\nplt.ylabel(\'sin(x)\')\\nplt.grid(True)\\nplt.show()"}'}}]},
{"role": "tool", "tool_call_id": "call_1", "raw_execution": [{"output_type": "stream", "name": "stdout", "text": "Plot created successfully!"}]}
]
# Create notebook
notebook = JupyterNotebook(mock_messages)
# Add a web search result example to test the new UI
mock_sources = [
{
"title": "**Matplotlib** Tutorial - Creating **Beautiful** Plots",
"url": "https://matplotlib.org/stable/tutorials/introductory/pyplot.html",
"relevance": 0.85
},
{
"title": "NumPy *Sine Wave* Generation **Best Practices**",
"url": "https://numpy.org/doc/stable/reference/generated/numpy.sin.html",
"relevance": 0.72
}
]
notebook.add_web_search_result(
query="**matplotlib** *sine wave* tutorial **best practices**",
quick_answer="To create a **sine wave plot** with *matplotlib*, use `numpy.linspace()` to generate **x values** and `numpy.sin()` for *y values*. **Configure** the plot with *appropriate* labels and **styling** for better visualization.",
sources=mock_sources
)
# Add a timeout countdown (simulating a sandbox that started 2 minutes ago with 5 minute timeout)
start_time = datetime.datetime.now(datetime.timezone.utc) - datetime.timedelta(minutes=2)
end_time = start_time + datetime.timedelta(minutes=5)
notebook.add_sandbox_countdown(start_time, end_time)
# Render and save
html_output = notebook.render()
with open("mock_notebook.html", "w", encoding="utf-8") as f:
f.write(html_output)
print("Mock notebook saved as 'mock_notebook.html'")
print("Open it in your browser to see the improved web search UI and markdown formatting.")
def create_notebook_from_session_state(session_state):
"""Helper function to create JupyterNotebook from session state"""
return JupyterNotebook.from_session_state(session_state)
if __name__ == "__main__":
main() |