Spaces:
Sleeping
Sleeping
File size: 23,971 Bytes
6f9cc79 723e227 6f9cc79 723e227 b06e10c 723e227 b06e10c 723e227 b06e10c 723e227 42d01e1 723e227 2d997a7 723e227 b06e10c 723e227 |
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 |
# # import os
# # import json
# # import streamlit as st
# # import pandas as pd
# # import plotly.express as px
# # from together import Together
# # from dotenv import load_dotenv
# # import re
# # # -------------------#
# # # Secure API key load
# # # -------------------#
# # load_dotenv()
# # TOGETHER_API_KEY = os.getenv("TOGETHER_API_KEY", "987adcf573b9658c775b671270aef959b3d38793771932f372f9f2a9ed5b78bf")
# # client = Together(api_key=TOGETHER_API_KEY)
# # # -------------------#
# # # Streamlit UI setup
# # # -------------------#
# # st.set_page_config(page_title="FutureScope: Research Direction Explorer", layout="wide")
# # st.markdown("""
# # <style>
# # body {
# # background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
# # color: #FFFFFF;
# # }
# # h1, h2, h3 {
# # text-align: center;
# # color: #FFD700;
# # font-family: 'Poppins', sans-serif;
# # }
# # .footer {
# # position: fixed;
# # left: 0;
# # bottom: 0;
# # width: 100%;
# # color: white;
# # text-align: center;
# # padding: 10px;
# # background-color: rgba(0,0,0,0.4);
# # }
# # .stButton > button {
# # background-color: #FFD700 !important;
# # color: black !important;
# # font-weight: bold;
# # border-radius: 10px;
# # }
# # </style>
# # """, unsafe_allow_html=True)
# # # -------------------#
# # # App Title
# # # -------------------#
# # st.markdown("<h1>๐งญ FutureScope: Research Direction Explorer</h1>", unsafe_allow_html=True)
# # st.markdown("<p style='text-align:center;'>Discover how your research area evolved and where it's heading next ๐</p>", unsafe_allow_html=True)
# # # -------------------#
# # # User Input
# # # -------------------#
# # user_topic = st.text_input("๐ Enter your research topic", placeholder="e.g. Graph Neural Networks for Drug Discovery")
# # # -------------------#
# # # Main Logic
# # # -------------------#
# # if st.button("Generate Research Insights"):
# # if not user_topic.strip():
# # st.warning("โ ๏ธ Please enter a valid research topic.")
# # else:
# # with st.spinner("Analyzing topic evolution and forecasting future directions... โณ"):
# # # Prompt Design
# # prompt = f"""
# # You are a world-class AI research assistant specialized in analyzing research trends.
# # Given the topic: "{user_topic}", perform the following:
# # 1. Summarize how this research area has evolved in the past 10โ15 years.
# # 2. Identify key milestones and subfields in a timeline format.
# # 3. Predict 3โ5 future research directions and explain why each matters.
# # Return the output strictly in JSON format like this:
# # {{
# # "evolution_summary": "...",
# # "timeline": [{{"year": ..., "trend": "..."}}, ...],
# # "future_directions": [{{"title": "...", "reason": "..."}}, ...]
# # }}
# # """
# # # Call Together API
# # response = client.chat.completions.create(
# # model="meta-llama/Llama-3.3-70B-Instruct-Turbo-Free",
# # messages=[{"role": "user", "content": prompt}]
# # )
# # raw_content = response.choices[0].message.content
# # # -------------------#
# # # JSON Cleaning & Parsing
# # # -------------------#
# # def extract_json(text):
# # """Extract valid JSON portion from the model response."""
# # text = text.strip()
# # text = re.sub(r"^```json|```$", "", text).strip() # remove code fences
# # match = re.search(r'\{.*\}', text, re.DOTALL)
# # if match:
# # return match.group(0)
# # return text
# # cleaned = extract_json(raw_content)
# # try:
# # data = json.loads(cleaned)
# # except Exception as e:
# # st.error(f"โ ๏ธ Failed to parse JSON: {e}")
# # st.text_area("Raw Response", raw_content, height=300)
# # st.stop()
# # # -------------------#
# # # Display Results
# # # -------------------#
# # st.markdown("## ๐งฉ Evolution Summary")
# # st.markdown(f"<div style='background:#1e2a38;padding:15px;border-radius:10px;'>{data['evolution_summary']}</div>", unsafe_allow_html=True)
# # # Timeline Chart
# # if "timeline" in data and len(data["timeline"]) > 0:
# # df = pd.DataFrame(data["timeline"])
# # if "year" in df.columns and "trend" in df.columns:
# # fig = px.scatter(df, x="year", y="trend", title="๐ Topic Evolution Over Time",
# # size=[10]*len(df), text="trend", color_discrete_sequence=["gold"])
# # fig.update_traces(textposition='top center', marker=dict(symbol="circle"))
# # fig.update_layout(template="plotly_dark", height=500)
# # st.plotly_chart(fig, use_container_width=True)
# # else:
# # st.warning("Timeline data invalid โ showing raw table:")
# # st.dataframe(df)
# # # Future Directions
# # st.markdown("## ๐ฎ Predicted Future Directions")
# # for item in data.get("future_directions", []):
# # st.markdown(f"""
# # <div style='background:#142733;padding:15px;margin:10px;border-radius:10px;'>
# # <h4>๐ง {item['title']}</h4>
# # <p>{item['reason']}</p>
# # </div>
# # """, unsafe_allow_html=True)
# # # Tools: Copy / Download
# # col1, col2 = st.columns(2)
# # with col1:
# # if st.button("๐ Copy Insights"):
# # st.write("Copied to clipboard! (Use Ctrl+C manually to copy)")
# # with col2:
# # st.download_button(
# # label="๐พ Download JSON",
# # data=json.dumps(data, indent=2),
# # file_name=f"{user_topic.replace(' ','_')}_future_directions.json",
# # mime="application/json"
# # )
# # # -------------------#
# # # Footer
# # # -------------------#
# # st.markdown("<div class='footer'>ยฉ Group 6 ILP TCS Research ", unsafe_allow_html=True)
import os
import json
import streamlit as st
import pandas as pd
import plotly.express as px
from together import Together
from dotenv import load_dotenv
import re
# -------------------#
# Secure API key load
# -------------------#
load_dotenv()
TOGETHER_API_KEY = os.getenv("TOGETHER_API_KEY", "987adcf573b9658c775b671270aef959b3d38793771932f372f9f2a9ed5b78bf")
client = Together(api_key=TOGETHER_API_KEY)
# -------------------#
# Streamlit UI setup
# -------------------#
st.set_page_config(page_title="PreSearch : Research Direction Explorer", layout="wide")
# Detect Streamlit theme
try:
theme = st.get_option("theme.base")
except:
theme = "dark"
# Define theme colors
if theme == "light":
BACKGROUND_GRADIENT = "linear-gradient(135deg, #f9f9f9, #eaeaea, #dddddd)"
TEXT_COLOR = "#000000"
TITLE_COLOR = "#DAA520"
CARD_BG = "#ffffff"
FOOTER_BG = "rgba(0, 0, 0, 0.1)"
else:
BACKGROUND_GRADIENT = "linear-gradient(135deg, #0f2027, #203a43, #2c5364)"
TEXT_COLOR = "#FFFFFF"
TITLE_COLOR = "#FFD700"
CARD_BG = "#1e2a38"
FOOTER_BG = "rgba(0, 0, 0, 0.4)"
# -------------------#
# Dynamic CSS Styling
# -------------------#
st.markdown(f"""
<style>
body {{
background: {BACKGROUND_GRADIENT};
color: {TEXT_COLOR};
font-family: 'Poppins', sans-serif;
}}
h1, h2, h3 {{
text-align: center;
color: {TITLE_COLOR};
}}
.footer {{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: {TEXT_COLOR};
text-align: center;
padding: 10px;
background-color: {FOOTER_BG};
}}
.stButton > button {{
background-color: {TITLE_COLOR} !important;
color: black !important;
font-weight: bold;
border-radius: 10px;
}}
div[data-testid="stMarkdownContainer"] p {{
color: {TEXT_COLOR};
}}
</style>
""", unsafe_allow_html=True)
# -------------------#
# App Title
# -------------------#
st.markdown("<h1>๐งญ PreSearch: Research Direction Explorer</h1>", unsafe_allow_html=True)
st.markdown("<p style='text-align:center;'>Discover how your research area evolved and where it's heading next ๐</p>", unsafe_allow_html=True)
# -------------------#
# User Input
# -------------------#
user_topic = st.text_input("๐ Enter your research topic", placeholder="e.g. Graph Neural Networks for Drug Discovery")
# -------------------#
# Main Logic
# -------------------#
if st.button("Generate Research Insights"):
if not user_topic.strip():
st.warning("โ ๏ธ Please enter a valid research topic.")
else:
with st.spinner("Analyzing topic evolution and forecasting future directions... โณ"):
# Prompt Design
prompt = f"""
You are a world-class AI research assistant specialized in analyzing research trends.
Given the topic: "{user_topic}", perform the following:
1. Summarize how this research area has evolved in the past 10โ15 years.
2. Identify key milestones and subfields in a timeline format.
3. Predict 3โ5 future research directions and explain why each matters.
Return the output strictly in JSON format like this:
{{
"evolution_summary": "...",
"timeline": [{{"year": ..., "trend": "..."}}, ...],
"future_directions": [{{"title": "...", "reason": "..."}}, ...]
}}
"""
# Call Together API
response = client.chat.completions.create(
model="meta-llama/Llama-3.3-70B-Instruct-Turbo-Free",
messages=[{"role": "user", "content": prompt}]
)
raw_content = response.choices[0].message.content
# -------------------#
# JSON Cleaning & Parsing
# -------------------#
def extract_json(text):
text = text.strip()
text = re.sub(r"^```json|```$", "", text).strip()
match = re.search(r'\{.*\}', text, re.DOTALL)
return match.group(0) if match else text
cleaned = extract_json(raw_content)
try:
data = json.loads(cleaned)
except Exception as e:
st.error(f"โ ๏ธ Failed to parse JSON: {e}")
st.text_area("Raw Response", raw_content, height=300)
st.stop()
# -------------------#
# Display Results
# -------------------#
st.markdown("## ๐งฉ Evolution Summary")
st.markdown(f"<div style='background:{CARD_BG};padding:15px;border-radius:10px;color:{TEXT_COLOR};'>{data['evolution_summary']}</div>", unsafe_allow_html=True)
# Timeline Chart
if "timeline" in data and len(data["timeline"]) > 0:
df = pd.DataFrame(data["timeline"])
if "year" in df.columns and "trend" in df.columns:
fig = px.scatter(df, x="year", y="trend", title="๐ Topic Evolution Over Time",
size=[10]*len(df), text="trend", color_discrete_sequence=["gold"])
fig.update_traces(textposition='top center', marker=dict(symbol="circle"))
fig.update_layout(template="plotly_dark" if theme == "dark" else "plotly_white", height=500)
st.plotly_chart(fig, use_container_width=True)
else:
st.warning("Timeline data invalid โ showing raw table:")
st.dataframe(df)
# Future Directions
st.markdown("## ๐ฎ Predicted Future Directions")
for item in data.get("future_directions", []):
st.markdown(f"""
<div style='background:{CARD_BG};padding:15px;margin:10px;border-radius:10px;color:{TEXT_COLOR};'>
<h4>๐ง {item['title']}</h4>
<p>{item['reason']}</p>
</div>
""", unsafe_allow_html=True)
# Tools: Copy / Download
col1, col2 = st.columns(2)
with col1:
if st.button("๐ Copy Insights"):
st.write("Copied to clipboard! (Use Ctrl+C manually to copy)")
with col2:
st.download_button(
label="๐พ Download JSON",
data=json.dumps(data, indent=2),
file_name=f"{user_topic.replace(' ','_')}_future_directions.json",
mime="application/json"
)
# -------------------#
# Footer
# -------------------#
st.markdown(f"<div class='footer'>ยฉ Group 6 ILP TCS Research</div>", unsafe_allow_html=True)
# import os, json, time, re, requests, random
# import pandas as pd
# import streamlit as st
# from together import Together
# # =========================
# # 0๏ธโฃ Configuration & Setup
# # =========================
# st.set_page_config(page_title="๐ pResearch Retrieval", layout="wide", page_icon=":books:")
# st.title("๐ค **pResearch: Multi-Agent Research Retrieval System**")
# st.caption("Built with LLM-based reasoning, multi-agent intelligence, and human-in-loop control.")
# st.markdown("---")
# TOGETHER_API_KEY = os.getenv("TOGETHER_API_KEY", "987adcf573b9658c775b671270aef959b3d38793771932f372f9f2a9ed5b78bf")
# SEMANTIC_API_KEY = os.getenv("SEMANTIC_API_KEY", "b2EsaPVVN1890PXdCeum37K9zKq4AYY46n8QyLvp")
# client = Together(api_key=TOGETHER_API_KEY)
# # =========================
# # Unified LLM Call
# # =========================
# @st.cache_data(show_spinner=False)
# def llm_call(prompt: str, temperature=0.2, max_retries=3):
# for attempt in range(max_retries):
# try:
# resp = client.chat.completions.create(
# model="meta-llama/Llama-3.3-70B-Instruct-Turbo",
# messages=[{"role": "user", "content": prompt}],
# temperature=temperature
# )
# return resp.choices[0].message.content.strip()
# except Exception as e:
# time.sleep(1 + attempt)
# return "LLM error (see logs)"
# # ============================================================
# # 1๏ธโฃ Query Reformulator Agent
# # ============================================================
# def agent_query_reformulator(query: str):
# prompt = f"""
# You are an expert academic assistant.
# Reformulate the query below into 5 semantically diverse and rich alternatives
# that explore different perspectives (methods, datasets, applications, etc.)
# Query: "{query}"
# Respond in JSON format:
# {{
# "reformulated_queries": [
# {{ "id": 1, "query": "..." }},
# {{ "id": 2, "query": "..." }},
# {{ "id": 3, "query": "..." }},
# {{ "id": 4, "query": "..." }},
# {{ "id": 5, "query": "..." }}
# ]
# }}
# """
# output = llm_call(prompt)
# cleaned = re.sub(r"```json|```", "", output).strip()
# try:
# data = json.loads(cleaned)
# queries = [q["query"] for q in data.get("reformulated_queries", []) if "query" in q]
# except Exception:
# queries = []
# # fallback diversity
# while len(queries) < 5:
# alt = llm_call(f"Generate a diverse reformulation of: {query}")
# queries.append(alt[:300])
# queries = list(dict.fromkeys(queries))[:5]
# return {"original_query": query, "reformulated_queries": [{"id": i+1, "query": q} for i, q in enumerate(queries)]}
# # ============================================================
# # 2๏ธโฃ Retriever Agent (Semantic Scholar)
# # ============================================================
# def agent_retriever(query, top_k=20):
# url = "https://api.semanticscholar.org/graph/v1/paper/search"
# headers = {"x-api-key": SEMANTIC_API_KEY}
# params = {
# "query": query, "limit": top_k,
# "fields": "paperId,title,abstract,year,authors,url,venue,citationCount"
# }
# resp = requests.get(url, headers=headers, params=params)
# if resp.status_code != 200:
# return []
# return resp.json().get("data", [])
# # ============================================================
# # 3๏ธโฃ Reranker Agent
# # ============================================================
# def agent_reranker(query, papers):
# cleaned_papers = [p for p in papers if p.get("abstract")]
# random.shuffle(cleaned_papers)
# for batch_start in range(0, len(cleaned_papers), 5):
# batch = cleaned_papers[batch_start:batch_start+5]
# papers_str = "\n\n".join([
# f"[{i+1}] Title: {p.get('title','N/A')}\nAbstract: {p.get('abstract','')[:500]}"
# for i,p in enumerate(batch)
# ])
# prompt = f"""
# You are a relevance scoring agent.
# Given a research query and 5 papers, assign a score (0โ1) to each paper for its relevance.
# Query: {query}
# Papers:
# {papers_str}
# Respond strictly in JSON:
# {{ "results": [{{"id": 1, "score": 0.85}}, ...] }}
# """
# output = llm_call(prompt)
# cleaned = re.sub(r"```json|```", "", output).strip()
# try:
# results = json.loads(cleaned)["results"]
# for i,r in enumerate(results):
# cleaned_papers[batch_start+i]["semantic_score"] = r.get("score",0)
# except:
# for i in range(len(batch)):
# cleaned_papers[batch_start+i]["semantic_score"] = 0.0
# return sorted(cleaned_papers, key=lambda x: x.get("semantic_score",0), reverse=True)
# # ============================================================
# # 4๏ธโฃ Weighting Agent (Meta Scorer)
# # ============================================================
# def agent_weighting(papers):
# prompt = """
# You are an expert in bibliometrics.
# Assign importance weights (sum=1.0) for how papers should be ranked based on:
# - semantic_score (LLM relevance)
# - citationCount
# - recency
# - venue quality
# Return JSON:
# {"weights":{"semantic_score":0.55,"citations":0.25,"recency":0.15,"venue":0.05}}
# """
# output = llm_call(prompt)
# cleaned = re.sub(r"```json|```", "", output).strip()
# try:
# weights = json.loads(cleaned)["weights"]
# except:
# weights = {"semantic_score":0.55,"citations":0.25,"recency":0.15,"venue":0.05}
# total = sum(weights.values())
# return {k:v/total for k,v in weights.items()}
# # ============================================================
# # 5๏ธโฃ Meta-Scoring and Ranking
# # ============================================================
# def agent_meta_scorer(papers, weights):
# current_year = 2025
# prestige = {"CVPR":1.0,"ICCV":0.95,"ECCV":0.9,"NEURIPS":0.9,"ICML":0.85,"AAAI":0.8,"IJCAI":0.8,"ARXIV":0.4}
# for p in papers:
# sem = p.get("semantic_score",0)
# cit = min(p.get("citationCount",0)/1000,1.0)
# rec = max(0, 1 - (current_year - p.get("year",2000))/10)
# venue_name = (p.get("venue") or "").upper()
# ven = next((v for k,v in prestige.items() if k in venue_name), 0.3)
# p["final_score"] = (
# weights["semantic_score"]*sem +
# weights["citations"]*cit +
# weights["recency"]*rec +
# weights["venue"]*ven
# )
# return sorted(papers, key=lambda x: x["final_score"], reverse=True)
# # ============================================================
# # 6๏ธโฃ Critique Agent
# # ============================================================
# def agent_critique(papers, query):
# top_titles = [p["title"] for p in papers[:5]]
# prompt = f"""
# As a research critic, evaluate whether these top papers are relevant to:
# "{query}"
# Papers: {json.dumps(top_titles, indent=2)}
# Respond as JSON:
# {{ "critique": "...", "relevance_score": 0โ1 }}
# """
# output = llm_call(prompt)
# cleaned = re.sub(r"```json|```", "", output).strip()
# try:
# return json.loads(cleaned)
# except:
# return {"critique":"Automatic check fallback.","relevance_score":0.7}
# # ============================================================
# # 7๏ธโฃ Human-in-Loop Fallback
# # ============================================================
# def human_feedback_loop(papers):
# st.warning("โ ๏ธ Low relevance detected โ human feedback required.")
# for i,p in enumerate(papers[:3]):
# st.markdown(f"**{i+1}. {p['title']}** *(Score: {p['final_score']:.3f})*")
# st.caption(f"{p.get('abstract','')[:250]}...")
# choice = st.radio("Approve ranking?", ["Yes","No"], index=0)
# if choice == "No":
# st.info("๐ Re-ranking by citation count.")
# papers = sorted(papers, key=lambda x: x.get("citationCount",0), reverse=True)
# return papers
# # ============================================================
# # 8๏ธโฃ Streamlit Master Orchestrator
# # ============================================================
# def run_pipeline(query, top_k=10):
# st.markdown("## ๐งฉ Stage 1: Query Reformulation")
# with st.spinner("Generating diverse reformulations..."):
# q_data = agent_query_reformulator(query)
# queries = [query] + [q["query"] for q in q_data["reformulated_queries"]]
# for q in queries[1:]:
# st.markdown(f"๐น *{q}*")
# st.markdown("## ๐ Stage 2: Retrieval")
# all_papers = []
# progress = st.progress(0)
# for i, q in enumerate(queries):
# new_papers = agent_retriever(q, top_k)
# all_papers.extend(new_papers)
# progress.progress((i+1)/len(queries))
# time.sleep(0.3)
# progress.empty()
# st.success(f"โ
Retrieved {len(all_papers)} papers in total.")
# st.markdown("## ๐ง Stage 3: Semantic Reranking")
# with st.spinner("Reranking papers semantically..."):
# reranked = agent_reranker(query, all_papers)
# st.info(f"Top paper after rerank: **{reranked[0]['title']}**")
# st.markdown("## โ๏ธ Stage 4: Weighting Agent & Meta-Scoring")
# weights = agent_weighting(reranked)
# st.json(weights)
# meta_ranked = agent_meta_scorer(reranked, weights)
# st.markdown("## ๐ Stage 5: Critique Agent")
# critique = agent_critique(meta_ranked, query)
# st.info(f"**Critique:** {critique['critique']} | Relevance: {critique['relevance_score']:.2f}")
# if critique["relevance_score"] < 0.6:
# meta_ranked = human_feedback_loop(meta_ranked)
# df = pd.DataFrame(meta_ranked)
# st.download_button(
# label="๐พ Download Results as CSV",
# data=df.to_csv(index=False),
# file_name="final_ranked_papers.csv",
# mime="text/csv"
# )
# st.dataframe(df.head(20))
# st.success("๐ฏ Pipeline completed successfully!")
# # ============================================================
# # 9๏ธโฃ Streamlit UI
# # ============================================================
# with st.form("research_form"):
# query = st.text_input("Enter your research query:", "spatio-temporal action detection and localization")
# top_k = st.slider("Number of papers per reformulation", 5, 50, 10)
# run = st.form_submit_button("๐ Run Multi-Agent Retrieval")
# if run:
# run_pipeline(query, top_k)
|