Spaces:
Running
Running
File size: 21,558 Bytes
27b66c3 2bad489 27b66c3 37cfdf9 27b66c3 2bad489 27b66c3 | 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 | #ui_main.py
import streamlit as st
import os
import importlib
import logging
from io import StringIO
import pandas as pd
import json
# ------------------------------------------------------------------
# Set Page Config first! (This must be the very first Streamlit command)
st.set_page_config(
page_title="PANGAEA GPT",
page_icon="img/pangaea-logo.png",
layout="wide"
)
# ------------------------------------------------------------------
# === Step 1: Force OpenAI API Key ===
if not st.session_state.get("openai_api_key"):
st.sidebar.warning("⚠️ Please enter your OpenAI API key below to enable full functionality.")
user_api_key = st.sidebar.text_input("OpenAI API Key", type="password")
if user_api_key:
st.session_state["openai_api_key"] = user_api_key
st.rerun() # Force a rerun once the key is entered
st.stop() # Halt execution until a key is provided.
else:
API_KEY = st.session_state["openai_api_key"]
# Set the OpenAI API key into the environment so that later imports pick it up.
os.environ["OPENAI_API_KEY"] = API_KEY
# === Step 2: Display LangSmith Fields in the Sidebar ===
with st.sidebar:
st.markdown(
"""
<style>
[data-testid="stImage"] {
padding: 0 !important;
margin: 0 !important;
width: 100% !important;
display: block !important;
}
[data-testid="stImage"] > img {
margin: 0 auto !important;
display: block !important;
max-width: 60px !important;
}
.element-container {
padding: 0 !important;
margin: 0 !important;
}
</style>
""",
unsafe_allow_html=True
)
st.image("img/pangaea-logo.png", width=100)
st.title("Configuration")
model_name = st.selectbox(
"Select Model",
["gpt-4o", "gpt-4o-mini", "o1-mini", "o3-mini"],
index=0,
key="model_name"
)
langsmith_api_key = st.text_input("LangSmith API Key (optional)", type="password", key="langsmith_api_key")
langsmith_project_name = st.text_input("LangSmith Project Name (optional)", key="langsmith_project_name")
# === Step 3: Update Environment Variables for LangSmith Keys ===
langchain_api_key = st.session_state.get("langsmith_api_key") or ""
langchain_project_name = st.session_state.get("langsmith_project_name") or ""
if langchain_api_key and langchain_project_name:
os.environ["LANGCHAIN_TRACING_V2"] = "true"
os.environ["LANGCHAIN_API_KEY"] = langchain_api_key
os.environ["LANGCHAIN_PROJECT_NAME"] = langchain_project_name
# === Step 4: Reload the Config Module so It Picks Up the Updated Environment Variables ===
import src.config as config
importlib.reload(config)
# === Step 5: Import Configuration Values, Styles, Utilities, and Agent Functions ===
from src.config import API_KEY, LANGCHAIN_API_KEY, LANGCHAIN_PROJECT_NAME, DEPLOYMENT_MODE
from src.ui.styles import CUSTOM_UI, SYSTEM_ICON, USER_ICON
from src.utils import log_history_event
from langchain_core.messages import HumanMessage, AIMessage
from src.memory import CustomMemorySaver
# Import logic functions from main.py
from main import (
initialize_session_state,
get_search_agent,
process_search_query,
add_user_message_to_search,
add_assistant_message_to_search,
load_selected_datasets_into_cache,
set_active_datasets_from_selection,
get_datasets_info_for_active_datasets,
add_user_message_to_data_agent,
add_assistant_message_to_data_agent,
create_and_invoke_supervisor_agent,
convert_dataset_to_csv,
has_new_plot,
reset_new_plot_flag,
get_dataset_csv_name,
set_current_page,
set_selected_text,
set_show_dataset,
set_dataset_for_data_agent,
ensure_memory,
ensure_thread_id,
)
from langchain_community.chat_message_histories import ChatMessageHistory
# === Step 6: Initialize Session State ===
initialize_session_state(st.session_state)
# === Step 7: Load Custom UI Styles (for example, CSS) ===
st.markdown(CUSTOM_UI, unsafe_allow_html=True)
# === Step 8: Create the Search Agent (which now uses the updated keys) ===
search_agent = get_search_agent(
datasets_info=st.session_state.datasets_info,
model_name=st.session_state["model_name"],
api_key=API_KEY
)
# -------------------------
# SEARCH PAGE (Dataset Explorer)
# -------------------------
if st.session_state.current_page == "search":
st.markdown("## Dataset Explorer")
chat_placeholder = st.container()
message_placeholder = st.empty()
chat_input_container = st.container()
predefined_queries = [
"Search for data on gelatinous zooplankton in the Fram Strait?",
"Continuous records of the atmospheric greenhouse gases",
"Find datasets about renewable energy sources.",
"Search for prokaryote abundance data on Hakon Mosby volcano"
]
selected_query = st.selectbox(
"Select an example or write down your query:",
[""] + predefined_queries,
index=0,
key="selected_query",
)
if selected_query != "":
set_selected_text(st.session_state, selected_query)
else:
set_selected_text(st.session_state, st.session_state.get("selected_text", ""))
# Display chat messages (including any table with initial search results)
with chat_placeholder:
for i, message in enumerate(st.session_state.messages_search):
if message["role"] == "system":
with st.chat_message(message["role"], avatar=SYSTEM_ICON):
st.markdown(message["content"])
elif message["role"] == "user":
with st.chat_message(message["role"], avatar=USER_ICON):
st.markdown(message["content"])
else: # assistant messages
with st.chat_message(message["role"], avatar=SYSTEM_ICON):
st.markdown(message["content"])
if "table" in message:
df = pd.read_json(StringIO(message["table"]), orient="split")
for index, row in df.iterrows():
cols = st.columns([1, 2, 2, 4, 2, 1])
cols[0].write(f"**#{row['Number']}**")
cols[1].write(f"**Name:** {row['Name']}")
cols[2].write(f"**DOI:** [{row['DOI']}]({row['DOI']})")
with cols[3].expander("See full description"):
st.write(row['Description'])
parameters_list = row['Parameters'].split(", ")
if len(parameters_list) > 7:
parameters_list = parameters_list[:7] + ["..."]
cols[4].write(f"**Parameters:** {', '.join(parameters_list)}")
checkbox_key = f"select-{i}-{index}"
with cols[5]:
selected = st.checkbox("Select", key=checkbox_key)
if selected:
st.session_state.selected_datasets.add(row['DOI'])
else:
st.session_state.selected_datasets.discard(row['DOI'])
# --- Single search input form ---
with chat_input_container:
st.markdown("<br>" * 2, unsafe_allow_html=True)
st.markdown("""
<style>
.stFormSubmitButton > button {
background-color: rgba(67, 163, 151, 0.6) !important;
color: white !important;
border: none !important;
border-radius: 6px !important;
padding: 8px 14px !important;
cursor: pointer !important;
font-size: 14px !important;
box-shadow: 0 0 15px rgba(67, 163, 151, 0.3) !important;
}
.stFormSubmitButton > button:hover {
background-color: white !important;
color: rgb(67, 163, 151) !important;
border: 1px solid rgb(67, 163, 151) !important;
box-shadow: 0 0 20px rgba(67, 163, 151, 0.5) !important;
}
.stFormSubmitButton > button:active {
transform: translateY(1px) !important;
}
</style>
""", unsafe_allow_html=True)
with st.form(key='chat_form', clear_on_submit=True):
user_input = st.text_input(
"Enter your query:",
value=st.session_state.get("selected_text", ""),
key="chat_input",
)
submit_button = st.form_submit_button(label='Send')
if submit_button and user_input:
st.session_state.selected_text = ""
st.session_state.messages_search.append({"role": "user", "content": user_input})
logging.debug("User input: %s", user_input)
log_history_event(
st.session_state,
"user_message",
{"page": "search", "content": user_input}
)
with message_placeholder:
st.info("Work in progress...")
ai_message = process_search_query(user_input, search_agent, st.session_state)
st.session_state.messages_search.append({"role": "assistant", "content": ai_message})
log_history_event(
st.session_state,
"assistant_message",
{"page": "search", "content": ai_message}
)
# Save search tracking info for "Load More"
st.session_state.search_query = user_input
st.session_state.search_offset = 10 # initial load of 10
if st.session_state.datasets_info is not None:
st.session_state.search_total = st.session_state.datasets_info.attrs.get('total', 0)
set_show_dataset(st.session_state, False)
st.rerun()
# --- Load More button ---
if st.session_state.datasets_info is not None:
total_hits = st.session_state.get("search_total", st.session_state.datasets_info.attrs.get('total', 0))
current_count = st.session_state.datasets_info.shape[0]
if current_count < total_hits:
if st.button("Load More Datasets", key="load_more_button"):
offset = st.session_state.get("search_offset", current_count)
query = st.session_state.get("search_query", st.session_state.get("selected_text", ""))
from src.search.search_pg_default import pg_search_default
new_df = pg_search_default(query, count=10, from_idx=offset)
if new_df.empty:
st.info("No more datasets available.")
else:
st.session_state.datasets_info = pd.concat(
[st.session_state.datasets_info, new_df], ignore_index=True
)
st.session_state.search_offset = offset + new_df.shape[0]
st.rerun()
# --- Send Selected Datasets button ---
button_placeholder = st.empty()
if len(st.session_state.selected_datasets) > 0:
with button_placeholder:
if st.button('Send Selected Datasets to Data Agent', key='send_datasets_button'):
load_selected_datasets_into_cache(st.session_state.selected_datasets, st.session_state)
set_active_datasets_from_selection(st.session_state)
set_current_page(st.session_state, "data_agent")
st.rerun()
st.markdown("""
<style>
div[data-testid="stButton"] > button {
position: fixed !important;
bottom: 80px !important;
right: 20px !important;
z-index: 9999 !important;
background-color: rgba(125, 209, 231, 0.8);
color: white;
border: none;
border-radius: 6px;
padding: 12px 24px;
cursor: pointer;
font-size: 14px;
transition: all 0.3s ease;
box-shadow: 0 0 15px rgba(125, 209, 231, 0.3);
animation: subtle-glow 2s infinite;
}
div[data-testid="stButton"] > button:hover {
transform: translateY(-2px);
background-color: rgba(125, 209, 231, 1);
box-shadow: 0 0 20px rgba(125, 209, 231, 0.5);
}
@keyframes subtle-glow {
0% { box-shadow: 0 0 15px rgba(125, 209, 231, 0.3); }
50% { box-shadow: 0 0 20px rgba(125, 209, 231, 0.5); }
100% { box-shadow: 0 0 15px rgba(125, 209, 231, 0.3); }
}
</style>
""", unsafe_allow_html=True)
else:
button_placeholder.empty()
# Display active datasets (if any) and allow downloads or sending one dataset to Data Agent
if st.session_state.active_datasets:
for doi in st.session_state.active_datasets:
dataset, name = st.session_state.datasets_cache.get(doi, (None, None))
if dataset is not None:
csv_data = convert_dataset_to_csv(dataset)
with st.expander(f"Current Dataset: {doi}", expanded=st.session_state.show_dataset):
st.dataframe(dataset)
col1, col2, col3 = st.columns([1, 3, 1])
with col1:
st.download_button(
label="Download data as CSV",
data=csv_data,
file_name=get_dataset_csv_name(doi),
mime='text/csv',
key=f"download-{doi.split('/')[-1]}",
use_container_width=True
)
with col3:
if st.button(f"Send {doi} to Data Agent", use_container_width=True):
set_dataset_for_data_agent(st.session_state, doi, csv_data, dataset, name)
message_placeholder = st.empty()
# -------------------------
# DATA AGENT PAGE
# -------------------------
elif st.session_state.current_page == "data_agent":
st.markdown("## Data Agent")
message_placeholder = st.empty()
# Save history button
if st.button("Export Session History to JSON"):
history_data = st.session_state.get("execution_history", [])
with open("pangaea_session_history.json", "w", encoding="utf-8") as f:
json.dump(history_data, f, indent=4, ensure_ascii=False)
st.success("Exported session history to pangaea_session_history.json")
# NEW: Clear History button added here on the Data Agent page
if st.button("Clear History", key="clear_history_data_agent"):
st.session_state.messages_data_agent = []
st.session_state.intermediate_steps = []
st.rerun()
st.markdown("<div style='height: 1rem;'></div>", unsafe_allow_html=True)
col1, col2, col3 = st.columns([1, 4, 1])
with col3:
if st.button("Back to Search", use_container_width=True, type="secondary"):
set_current_page(st.session_state, "search")
st.rerun()
st.markdown("<div style='height: 1.5rem;'></div>", unsafe_allow_html=True)
datasets_info = get_datasets_info_for_active_datasets(st.session_state)
ensure_memory(st.session_state)
ensure_thread_id(st.session_state)
user_input = st.chat_input("Enter your query:")
if user_input:
st.session_state.messages_data_agent.append({"role": "user", "content": f"{user_input}"})
logging.debug("User input: %s", user_input)
log_history_event(
st.session_state,
"user_message",
{"page": "data_agent", "content": user_input}
)
user_query = user_input
response = create_and_invoke_supervisor_agent(user_query, datasets_info, st.session_state["memory"],
st.session_state)
if response:
with message_placeholder:
st.info("Work in progress...")
try:
new_content = response['messages'][-1].content
plot_images = response.get("plot_images", [])
visualization_used = response.get("visualization_agent_used", False)
st.session_state.messages_data_agent.append({
"role": "assistant",
"content": new_content,
"plot_images": plot_images,
"visualization_agent_used": visualization_used
})
log_history_event(
st.session_state,
"assistant_message",
{"page": "data_agent", "content": new_content}
)
message_placeholder.empty()
st.rerun()
except Exception as e:
logging.error(f"Error invoking graph: {e}")
st.error(f"An error occurred: {e}")
message_placeholder.empty()
for message in st.session_state.messages_data_agent:
logging.info(f"Displaying message: {message['role']}")
if message["role"] == "system":
with st.chat_message(message["role"], avatar=SYSTEM_ICON):
st.markdown(message["content"])
elif message["role"] == "user":
with st.chat_message(message["role"], avatar=USER_ICON):
st.markdown(message["content"])
else:
with st.chat_message(message["role"], avatar=SYSTEM_ICON):
st.markdown(message["content"])
if "plot_images" in message:
for plot_info in message["plot_images"]:
if isinstance(plot_info, tuple):
plot_path, code_path = plot_info
if os.path.exists(plot_path):
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
st.image(plot_path, caption='Generated Plot', use_container_width=True)
if os.path.exists(code_path):
with open(code_path, 'r') as f:
code = f.read()
st.code(code, language='python')
else:
if os.path.exists(plot_info):
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
st.image(plot_info, caption='Generated Plot', use_container_width=True)
st.session_state.visualization_agent_used = False
for info in datasets_info:
with st.expander(f"Dataset: {info['doi']}", expanded=False):
st.write(f"**Name:** {info['name']}")
st.dataframe(info['dataset'])
if has_new_plot(st.session_state):
reset_new_plot_flag(st.session_state)
else:
for message in st.session_state.messages_data_agent:
logging.info(f"Displaying message: {message['role']}")
if message["role"] == "system":
with st.chat_message(message["role"], avatar=SYSTEM_ICON):
st.markdown(message["content"])
elif message["role"] == "user":
with st.chat_message(message["role"], avatar=USER_ICON):
st.markdown(message["content"])
else:
with st.chat_message(message["role"], avatar=SYSTEM_ICON):
st.markdown(message["content"])
if "plot_images" in message:
for plot_info in message["plot_images"]:
if isinstance(plot_info, tuple):
plot_path, code_path = plot_info
if os.path.exists(plot_path):
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
st.image(plot_path, caption='Generated Plot', use_container_width=True)
if os.path.exists(code_path):
with open(code_path, 'r') as f:
code = f.read()
st.code(code, language='python')
else:
if os.path.exists(plot_info):
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
st.image(plot_info, caption='Generated Plot', use_container_width=True)
st.session_state.visualization_agent_used = False
for info in datasets_info:
with st.expander(f"Dataset: {info['doi']}", expanded=False):
st.write(f"**Name:** {info['name']}")
st.dataframe(info['dataset'])
if has_new_plot(st.session_state):
reset_new_plot_flag(st.session_state)
else:
if len(st.session_state.active_datasets) == 0 and st.session_state.current_page == "data_agent":
st.warning("No datasets loaded. Please load a dataset first.")
|