Spaces:
Sleeping
Sleeping
File size: 25,548 Bytes
8c1649a |
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 |
import streamlit as st
import json
from datetime import datetime
import uuid
import os
import time
# Import your agent function (assuming it's in the same directory or properly imported)
# from your_agent_file import call_agent
# Mock function for demonstration - replace with your actual call_agent function
def call_agent(query):
"""
Mock function - replace this with your actual call_agent function
"""
# This is a mock response for demonstration
mock_response = [
{"id": 1, "task": "Fetch DEM data for the specified region", "tool": "DEMFetcher"},
{"id": 2, "task": "Extract drainage networks from available data", "tool": "DrainageExtractor"},
{"id": 3, "task": "Analyze hydrological flow patterns", "tool": "HydrologyAnalyzer"},
{"id": 4, "task": "Generate flood risk assessment maps", "tool": "LLM Reasoning"}
]
# Mock state object
class MockState:
def __init__(self):
self.query = query
self.response = mock_response
self.output_files_path = [f"outputs/geospatial_plan_{datetime.now().strftime('%Y%m%d_%H%M%S')}_{uuid.uuid4().hex[:6]}.json"]
return MockState()
# Sample analysis data - Replace with your actual image URLs and captions
SAMPLE_ANALYSES = [
{
"image_url": "output.png",
"caption": "Flood vulnerability analysis of Chennai during monsoon season",
"query": "Create a flood risk assessment map for Chennai during monsoon season"
},
{
"image_url": "https://via.placeholder.com/800x600/2196F3/FFFFFF?text=Urban+Heat+Island+Mumbai",
"caption": "Urban heat island analysis of Mumbai metropolitan area",
"query": "Analyze urban heat island effect in Mumbai using satellite imagery"
},
{
"image_url": "https://via.placeholder.com/800x600/FF9800/FFFFFF?text=Deforestation+Amazon",
"caption": "Deforestation monitoring in Amazon rainforest",
"query": "Monitor deforestation patterns in Amazon rainforest using multi-temporal satellite data"
},
{
"image_url": "https://via.placeholder.com/800x600/9C27B0/FFFFFF?text=Crop+Yield+Punjab",
"caption": "Crop yield prediction analysis for Punjab agricultural regions",
"query": "Predict crop yield for wheat cultivation in Punjab using satellite data"
},
{
"image_url": "https://via.placeholder.com/800x600/F44336/FFFFFF?text=Wildfire+California",
"caption": "Wildfire risk assessment and spread modeling",
"query": "Create wildfire risk maps and predict fire spread patterns for California"
}
]
# Page configuration
st.set_page_config(
page_title="Geospatial AI Task Planner",
page_icon="π",
layout="wide",
initial_sidebar_state="collapsed"
)
# Custom CSS for modern design
st.markdown("""
<style>
/* Hide default streamlit elements */
.stAppHeader {display: none;}
.stDeployButton {display: none;}
#MainMenu {visibility: hidden;}
.stAppDeployButton {display: none;}
/* Main container styling */
.main {
padding: 0 !important;
}
/* Header styling */
.header-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 20px;
color: white;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
margin-bottom: 20px;
border-radius: 0 0 15px 15px;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.logo {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 3px solid white;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.header-title {
text-align: center;
margin: 0;
font-size: 2.5rem;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
background: linear-gradient(45deg, #fff, #f0f0f0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.header-subtitle {
text-align: center;
margin: 5px 0 0 0;
font-size: 1.2rem;
opacity: 0.9;
font-weight: 300;
}
/* Column styling */
.image-column {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
padding: 20px;
border-radius: 15px;
margin-right: 10px;
min-height: 70vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
.chat-column {
background: white;
padding: 30px;
border-radius: 15px;
margin-left: 10px;
min-height: 70vh;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
border: 1px solid #e9ecef;
}
.sample-analysis-header {
text-align: center;
margin-bottom: 15px;
width: 100%;
}
.sample-analysis-title {
font-size: 1.8rem;
font-weight: 700;
color: #2c3e50;
margin: 0;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.sample-analysis-subtitle {
font-size: 1.1rem;
color: #6c757d;
margin: 5px 0 0 0;
font-weight: 400;
font-style: italic;
}
.query-display {
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
padding: 15px;
border-radius: 10px;
margin-bottom: 20px;
border-left: 4px solid #2196f3;
width: 100%;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.query-label {
font-weight: 600;
color: #1976d2;
margin-bottom: 5px;
font-size: 0.9rem;
}
.query-text {
color: #333;
font-size: 0.95rem;
line-height: 1.4;
margin: 0;
}
.slideshow-container {
position: relative;
width: 100%;
max-width: 100%;
margin: 0 auto;
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
}
.slide {
display: none;
width: 100%;
text-align: center;
animation: fadeIn 0.5s ease-in-out;
}
.slide.active {
display: block;
}
.slide-image {
width: 100%;
max-width: 600px;
height: 400px;
object-fit: cover;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
}
.slide-image:hover {
transform: scale(1.02);
}
.slide-caption {
background: rgba(0,0,0,0.8);
color: white;
padding: 15px;
border-radius: 0 0 15px 15px;
margin-top: -4px;
font-size: 1.1rem;
font-weight: 500;
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.slide-indicators {
text-align: center;
margin-top: 20px;
}
.indicator {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(0,0,0,0.3);
margin: 0 5px;
cursor: pointer;
transition: background 0.3s ease;
}
.indicator.active {
background: #667eea;
}
.slide-navigation {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: white;
border: none;
padding: 10px 15px;
border-radius: 50%;
cursor: pointer;
font-size: 18px;
transition: background 0.3s ease;
}
.slide-navigation:hover {
background: rgba(0,0,0,0.8);
}
.slide-navigation.prev {
left: 10px;
}
.slide-navigation.next {
right: 10px;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.chat-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 20px;
border-radius: 15px;
margin-bottom: 20px;
text-align: center;
font-size: 1.3rem;
font-weight: 600;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.chat-messages {
max-height: 400px;
overflow-y: auto;
padding: 20px;
background: #f8f9fa;
border-radius: 15px;
margin-bottom: 20px;
border: 1px solid #e9ecef;
}
.user-message {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
color: white;
padding: 15px 20px;
border-radius: 25px 25px 5px 25px;
margin: 15px 0;
margin-left: 15%;
text-align: right;
box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
animation: slideInRight 0.3s ease;
}
.ai-message {
background: white;
color: #333;
padding: 20px;
border-radius: 25px 25px 25px 5px;
margin: 15px 0;
margin-right: 15%;
border: 1px solid #e9ecef;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
animation: slideInLeft 0.3s ease;
}
.task-plan-container {
border: 1px solid #e9ecef;
border-radius: 15px;
padding: 15px;
margin-top: 15px;
background-color: #f0f4f8;
}
.task-item {
background: linear-gradient(135deg, #e6f7ff 0%, #cceeff 100%);
padding: 15px;
border-radius: 12px;
margin: 10px 0;
border-left: 4px solid #28a745;
transition: transform 0.2s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.task-item:hover {
transform: translateX(5px);
}
.tool-badge {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
display: inline-block;
margin-top: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.input-section {
background: white;
padding: 20px;
border-radius: 15px;
border: 1px solid #e9ecef;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
margin-top: 20px;
}
.json-container {
background: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 10px;
padding: 15px;
margin: 10px 0;
font-family: 'Courier New', monospace;
font-size: 12px;
max-height: 300px;
overflow-y: auto;
}
.download-section {
background: #e8f5e8;
border: 1px solid #28a745;
border-radius: 10px;
padding: 15px;
margin: 10px 0;
text-align: center;
}
.stTextArea textarea {
border-radius: 12px !important;
border: 2px solid #e9ecef !important;
transition: border-color 0.3s ease !important;
}
.stTextArea textarea:focus {
border-color: #667eea !important;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}
.stButton button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
color: white !important;
border: none !important;
border-radius: 25px !important;
padding: 12px 30px !important;
font-weight: 600 !important;
font-size: 16px !important;
transition: all 0.3s ease !important;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}
.stButton button:hover {
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}
.stDownloadButton button {
background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
color: white !important;
border: none !important;
border-radius: 20px !important;
padding: 10px 25px !important;
font-weight: 600 !important;
font-size: 14px !important;
transition: all 0.3s ease !important;
box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3) !important;
}
.stDownloadButton button:hover {
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
}
@keyframes slideInRight {
from { transform: translateX(100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInLeft {
from { transform: translateX(-100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
/* Scrollbar styling */
.chat-messages::-webkit-scrollbar,
.json-container::-webkit-scrollbar {
width: 8px;
}
.chat-messages::-webkit-scrollbar-track,
.json-container::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
.chat-messages::-webkit-scrollbar-thumb,
.json-container::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
}
.chat-messages::-webkit-scrollbar-thumb:hover,
.json-container::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.header-title {
font-size: 1.8rem;
}
.header-subtitle {
font-size: 1rem;
}
.logo {
width: 60px;
height: 60px;
}
.image-column, .chat-column {
margin: 0;
padding: 20px;
}
.slide-image {
height: 300px;
}
}
</style>
""", unsafe_allow_html=True)
# Initialize session state
if 'messages' not in st.session_state:
st.session_state.messages = []
if 'generated_json' not in st.session_state:
st.session_state.generated_json = None
if 'processing' not in st.session_state:
st.session_state.processing = False
if 'current_slide' not in st.session_state:
st.session_state.current_slide = 0
if 'last_slide_change' not in st.session_state:
st.session_state.last_slide_change = time.time()
# Header with logos and title
st.markdown("""
<div class="header-container">
<div class="header-content">
<div>
<img src="https://www.isro.gov.in/sites/default/files/flipping_book/ISRO%20Annual%20Report%202022-23/assets/basic-html/page-1_1.jpg"
alt="ISRO Logo" class="logo" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iNDAiIGZpbGw9IiMwMDY2Q0MiLz4KPHRleHQgeD0iNDAiIHk9IjQ1IiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSIgZm9udC1zaXplPSIxNCIgZm9udC13ZWlnaHQ9ImJvbGQiPklTUk88L3RleHQ+Cjwvc3ZnPgo='">
</div>
<div>
<h1 class="header-title">Bharatvarsha Hackathon 2025-26</h1>
<p class="header-subtitle">Geospatial AI Task Planner</p>
</div>
<div>
<img src="https://via.placeholder.com/80x80/FF6B6B/FFFFFF?text=TECH"
alt="Tech Logo" class="logo" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iNDAiIGZpbGw9IiNGRjZCNkIiLz4KPHRleHQgeD0iNDAiIHk9IjQ1IiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSIgZm9udC1zaXplPSIxMiIgZm9udC13ZWlnaHQ9ImJvbGQiPlRFQ0g8L2h0ZXh0Pgo8L3N2Zz4K'>
</div>
</div>
</div>
""", unsafe_allow_html=True)
# Auto-advance slideshow
current_time = time.time()
if current_time - st.session_state.last_slide_change > 5: # 5 seconds
st.session_state.current_slide = (st.session_state.current_slide + 1) % len(SAMPLE_ANALYSES)
st.session_state.last_slide_change = current_time
# Create two columns using st.columns
col1, col2 = st.columns([1, 1], gap="medium")
# Left column - Sample Analysis Slideshow
with col1:
st.markdown("""
<h2 class="sample-analysis-title">Sample Analysis</h2>
""", unsafe_allow_html=True)
# Display current query
current_analysis = SAMPLE_ANALYSES[st.session_state.current_slide]
st.markdown(f"""
<div class="query-display">
<div class="query-label">Query:</div>
<p class="query-text">{current_analysis['query']}</p>
</div>
""", unsafe_allow_html=True)
# Slideshow container
st.markdown("""
<div class="slideshow-container">
""", unsafe_allow_html=True)
# Generate slides
for i, analysis in enumerate(SAMPLE_ANALYSES):
active_class = "active" if i == st.session_state.current_slide else ""
st.markdown(f"""
<div class="slide {active_class}">
<img src="{analysis['image_url']}" alt="Sample Analysis" class="slide-image">
<div class="slide-caption">{analysis['caption']}</div>
</div>
""", unsafe_allow_html=True)
# Navigation buttons
col_prev, col_next = st.columns([1, 1])
with col_prev:
if st.button("β", key="prev_slide"):
st.session_state.current_slide = (st.session_state.current_slide - 1) % len(SAMPLE_ANALYSES)
st.session_state.last_slide_change = time.time()
st.rerun()
with col_next:
if st.button("βΆ", key="next_slide"):
st.session_state.current_slide = (st.session_state.current_slide + 1) % len(SAMPLE_ANALYSES)
st.session_state.last_slide_change = time.time()
st.rerun()
# Slide indicators
st.markdown("""
<div class="slide-indicators">
""", unsafe_allow_html=True)
indicator_cols = st.columns(len(SAMPLE_ANALYSES))
for i, col in enumerate(indicator_cols):
with col:
active_class = "active" if i == st.session_state.current_slide else ""
if st.button("β", key=f"indicator_{i}"):
st.session_state.current_slide = i
st.session_state.last_slide_change = time.time()
st.rerun()
st.markdown("""
</div>
</div>
</div>
""", unsafe_allow_html=True)
# Right column - Chat section
with col2:
# Chat header
st.markdown("""
<div class="chat-header">
π¬ AI Task Planner Chat
</div>
""", unsafe_allow_html=True)
# Chat messages container
st.markdown('<div class="chat-messages">', unsafe_allow_html=True)
# Display chat messages
for message in st.session_state.messages:
if message["role"] == "user":
st.markdown(f"""
<div class="user-message">
<strong>You:</strong> {message["content"]}
</div>
""", unsafe_allow_html=True)
else: # AI message
if message["content"] == "task_plan":
# Render task plan using native Streamlit components
st.markdown("""
<div class="ai-message">
<strong>π€ AI Task Planner:</strong>
</div>
""", unsafe_allow_html=True)
# Use Streamlit's native components for better rendering
st.markdown("""
<div class="task-plan-container">
""", unsafe_allow_html=True)
for task in message["tasks"]:
st.markdown(f"""
<div class="task-item">
<strong>Task {task['id']}:</strong> {task['task']}
<br>
<span class="tool-badge">{task['tool']}</span>
</div>
""", unsafe_allow_html=True)
st.markdown("""
<div class="download-section">
<strong>π Task Plan JSON Generated Successfully!</strong>
<br><br>
View the complete JSON structure below and download it for your records.
</div>
</div>
""", unsafe_allow_html=True)
else:
# This is plain text content
st.markdown(f"""
<div class="ai-message">
<strong>π€ AI Task Planner:</strong>
<br><br>
{message["content"]}
</div>
""", unsafe_allow_html=True)
# If no messages, show welcome message
if not st.session_state.messages:
st.markdown("""
<div class="ai-message">
<strong>π€ Welcome to Geospatial AI Task Planner!</strong>
<br><br>
I'm here to help you break down complex geospatial analysis tasks into manageable steps.
<br><br>
Simply describe your geospatial analysis needs in the text area below, and I'll create a detailed task plan for you.
</div>
""", unsafe_allow_html=True)
st.markdown('</div>', unsafe_allow_html=True)
# Input section
st.markdown('<div class="input-section">', unsafe_allow_html=True)
# Text input for query
user_input = st.text_area(
"Enter your geospatial analysis query:",
height=120,
placeholder="e.g., Create a flood risk assessment map for Mumbai during monsoon season...",
key="user_input",
disabled=st.session_state.processing
)
# Submit button
if st.button("π Generate Task Plan", type="primary", use_container_width=True, disabled=st.session_state.processing):
if user_input.strip():
# Set processing state
st.session_state.processing = True
# Add user message
st.session_state.messages.append({"role": "user", "content": user_input})
# Show processing message with spinner
with st.spinner("π Generating your geospatial task plan..."):
try:
# Call your agent
result = call_agent(user_input)
# Create JSON structure
task_plan_json = {
"query": user_input,
"timestamp": datetime.now().isoformat(),
"task_id": str(uuid.uuid4()),
"tasks": result.response,
"output_files": result.output_files_path,
"status": "completed"
}
# Store the tasks in session state for rendering
st.session_state.generated_json = task_plan_json
# Instead of storing HTML, store the task data
st.session_state.messages.append({
"role": "assistant",
"content": "task_plan",
"tasks": result.response
})
# Show success message
st.success("β
Task plan generated successfully!")
except Exception as e:
error_msg = f"β Error processing request: {str(e)}"
st.session_state.messages.append({"role": "assistant", "content": error_msg})
st.error(error_msg)
st.session_state.generated_json = None
# Reset processing state
st.session_state.processing = False
# Rerun to update the interface
st.rerun()
else:
st.warning("Please enter a query before submitting.")
# Display JSON and download button if JSON is generated
if st.session_state.generated_json:
st.markdown("### π Generated Task Plan JSON")
# Display JSON in a formatted container
json_str = json.dumps(st.session_state.generated_json, indent=2)
st.markdown(f'<div class="json-container"><pre>{json_str}</pre></div>', unsafe_allow_html=True)
# Download button
filename = f"geospatial_task_plan_{datetime.now().strftime('%Y%m%d_%H%M%S')}.json"
st.download_button(
label="π₯ Download Task Plan JSON",
data=json_str,
file_name=filename,
mime="application/json",
use_container_width=True
)
st.markdown('</div>', unsafe_allow_html=True)
# Clear chat button (at the bottom)
if st.session_state.messages:
col_clear1, col_clear2 = st.columns([1, 1])
with col_clear1:
if st.button("ποΈ Clear Chat", key="clear_chat", use_container_width=True):
st.session_state.messages = []
st.session_state.generated_json = None
st.session_state.processing = False
st.rerun()
with col_clear2:
if st.session_state.generated_json and st.button("π Generate New Plan", key="new_plan", use_container_width=True):
st.session_state.generated_json = None
st.rerun() |