Spaces:
Sleeping
Sleeping
File size: 22,369 Bytes
f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 2aa1365 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 2aa1365 f0da249 fb2bb34 f0da249 fb2bb34 f0da249 2aa1365 f0da249 2aa1365 f0da249 |
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 |
import os
import streamlit as st
import random
from typing import Tuple, Dict
from langchain_core.messages import SystemMessage, HumanMessage, AIMessage
from langchain.chat_models import init_chat_model
from atla import Atla, AsyncAtla
from dotenv import load_dotenv
import asyncio
load_dotenv(dotenv_path="/.env")
# Set page config
st.set_page_config(page_title="Meta-GPT", layout="wide")
# Configuration parameters
QUALITY_THRESHOLD = 4.0 # Threshold for acceptable response quality
MAX_ITERATIONS = 3 # Maximum number of refinement iterations
# Split the evaluation prompt into separate dimensions
ACCURACY_PROMPT = """
Evaluate the response on Accuracy: Is the response factually correct and free from hallucination or misinformation?
Scoring Rubric:
Score 1: The response contains numerous factual errors or completely fabricated information.
Score 2: The response contains major factual errors or significant hallucinations.
Score 3: The response contains some factual inaccuracies, but they are not significant.
Score 4: The response is factually sound with only minor inaccuracies.
Score 5: The response is factually flawless and completely accurate.
Provide:
- A numeric score (1-5, where 5 is excellent)
- A brief explanation justifying the score
- Specific suggestions for improvement
"""
RELEVANCE_PROMPT = """
Evaluate the response on Relevance: Does the response directly answer the user's question effectively?
Scoring Rubric:
Score 1: The response completely misses the point of the question.
Score 2: The response addresses the general topic but fails to answer the specific question.
Score 3: The response partially answers the question but misses key aspects.
Score 4: The response answers the question well but could be more focused or complete.
Score 5: The response perfectly addresses all aspects of the question.
Provide:
- A numeric score (1-5, where 5 is excellent)
- A brief explanation justifying the score
- Specific suggestions for improvement
"""
CLARITY_PROMPT = """
Evaluate the response on Clarity: Is the response clearly structured and easily understandable?
Scoring Rubric:
Score 1: The response is extremely confusing and poorly structured.
Score 2: The response is difficult to follow with major organizational issues.
Score 3: The response is somewhat clear but has organizational or expression issues.
Score 4: The response is well-structured with only minor clarity issues.
Score 5: The response is exceptionally clear, well-organized, and easy to understand.
Provide:
- A numeric score (1-5, where 5 is excellent)
- A brief explanation justifying the score
- Specific suggestions for improvement
"""
DEPTH_PROMPT = """
Evaluate the response on Depth: Does the response provide sufficient detail, insight, or useful context?
Scoring Rubric:
Score 1: The response is extremely shallow with no meaningful detail or insight.
Score 2: The response lacks significant depth and provides minimal useful information.
Score 3: The response provides some depth but misses opportunities for insight or context.
Score 4: The response offers good depth with useful details and context.
Score 5: The response provides exceptional depth with comprehensive details, valuable insights, and rich context.
Provide:
- A numeric score (1-5, where 5 is excellent)
- A brief explanation justifying the score
- Specific suggestions for improvement
"""
# Initialize API keys from environment variables or Streamlit secrets
def initialize_api_keys():
# Load from .env file (already done via load_dotenv() at the top of your script)
# No need to check for Streamlit secrets if you're using .env exclusively
# Check if required keys are in environment variables
required_keys = ["OPENAI_API_KEY", "ANTHROPIC_API_KEY", "TOGETHER_API_KEY", "ATLA_API_KEY"]
missing_keys = [key for key in required_keys if not os.environ.get(key)]
if missing_keys:
st.sidebar.error(f"Missing API keys: {', '.join(missing_keys)}")
st.sidebar.info("Please add these keys to your .env file")
return False
return True
# Initialize models and session state
def initialize_app():
keys_loaded = initialize_api_keys()
# Initialize session state variables if they don't exist
if "chat_history" not in st.session_state:
st.session_state.chat_history = []
if "chat_messages" not in st.session_state:
st.session_state.chat_messages = [
SystemMessage(
content="You are a helpful assistant that can answer questions and help with tasks."
)
]
if "latest_result" not in st.session_state:
st.session_state.latest_result = None
if "initialized" not in st.session_state:
st.session_state.initialized = False
# Only initialize models if keys are loaded and not already initialized
if not st.session_state.initialized and keys_loaded:
try:
st.session_state.gpt4o = init_chat_model("gpt-4o", model_provider="openai")
st.session_state.claude = init_chat_model(
"claude-3-7-sonnet-20250219", model_provider="anthropic"
)
st.session_state.deepseek = init_chat_model(
"deepseek-ai/DeepSeek-V3", model_provider="together"
)
st.session_state.atla = Atla()
st.session_state.async_atla = AsyncAtla()
st.session_state.initialized = True
except Exception as e:
st.error(f"Error initializing models: {e}")
st.warning("Please check your API keys in the .env file.")
st.session_state.initialized = False
async def evaluate_dimension(question: str, response: str, dimension_prompt: str) -> Tuple[float, str]:
"""Evaluate a single dimension using Atla's Selene model asynchronously."""
eval_response = await st.session_state.async_atla.evaluation.create(
model_id="atla-selene",
model_input=question,
model_output=response,
evaluation_criteria=dimension_prompt,
)
evaluation = eval_response.result.evaluation
return float(evaluation.score), evaluation.critique
async def evaluate_with_atla_async(inputs: dict[str, str]) -> Tuple[float, Dict[str, Dict]]:
"""Evaluate response using Atla's Selene model across all dimensions asynchronously."""
# Create tasks for all dimensions
accuracy_task = evaluate_dimension(inputs["question"], inputs["response"], ACCURACY_PROMPT)
relevance_task = evaluate_dimension(inputs["question"], inputs["response"], RELEVANCE_PROMPT)
clarity_task = evaluate_dimension(inputs["question"], inputs["response"], CLARITY_PROMPT)
depth_task = evaluate_dimension(inputs["question"], inputs["response"], DEPTH_PROMPT)
# Run all evaluations concurrently
accuracy_score, accuracy_critique = await accuracy_task
relevance_score, relevance_critique = await relevance_task
clarity_score, clarity_critique = await clarity_task
depth_score, depth_critique = await depth_task
# Calculate average score
avg_score = (accuracy_score + relevance_score + clarity_score + depth_score) / 4
# Compile detailed results
detailed_results = {
"accuracy": {"score": accuracy_score, "critique": accuracy_critique},
"relevance": {"score": relevance_score, "critique": relevance_critique},
"clarity": {"score": clarity_score, "critique": clarity_critique},
"depth": {"score": depth_score, "critique": depth_critique}
}
# Compile overall critique
overall_critique = f"""
Accuracy ({accuracy_score}/5): {accuracy_critique}
Relevance ({relevance_score}/5): {relevance_critique}
Clarity ({clarity_score}/5): {clarity_critique}
Depth ({depth_score}/5): {depth_critique}
**Overall Score: {avg_score:.2f}/5**
"""
return avg_score, overall_critique, detailed_results
def evaluate_response(question: str, response: str) -> Dict:
"""Evaluate a single response using Selene."""
inputs = {"question": question, "response": response}
# Use asyncio to run the async function
score, critique, detailed_results = asyncio.run(evaluate_with_atla_async(inputs))
return {"score": score, "critique": critique, "detailed_results": detailed_results}
def get_responses(
question: str, feedback: str = "", with_status: bool = True
) -> Dict[str, str]:
"""Get responses from all LLMs for a given question."""
st.session_state.chat_messages.append(HumanMessage(content=question))
if feedback:
st.session_state.chat_messages.append(HumanMessage(content=feedback))
responses = {}
if with_status:
# Create progress trackers for each model
with st.status(
"Generating responses from all models...", expanded=True
) as status:
# Get response from GPT-4o
status.update(label="Getting response from GPT-4o...")
gpt_response = st.session_state.gpt4o.invoke(st.session_state.chat_messages)
responses["GPT-4o"] = gpt_response.content
# Get response from Claude
status.update(label="Getting response from Claude 3.7...")
claude_response = st.session_state.claude.invoke(
st.session_state.chat_messages
)
responses["Claude 3.7"] = claude_response.content
# Get response from DeepSeek
status.update(label="Getting response from DeepSeekV3.0...")
deepseek_response = st.session_state.deepseek.invoke(
st.session_state.chat_messages
)
responses["DeepSeekV3.0"] = deepseek_response.content
status.update(label="All responses generated successfully!", state="complete")
else:
# Get responses without status bar (for refinement)
st.write("Getting response from models...")
# Get response from GPT-4o
gpt_response = st.session_state.gpt4o.invoke(st.session_state.chat_messages)
responses["GPT-4o"] = gpt_response.content
# Get response from Claude
claude_response = st.session_state.claude.invoke(st.session_state.chat_messages)
responses["Claude 3.7"] = claude_response.content
# Get response from DeepSeek
deepseek_response = st.session_state.deepseek.invoke(
st.session_state.chat_messages
)
responses["DeepSeekV3.0"] = deepseek_response.content
return responses
def evaluate_all_responses(
question: str, responses: Dict[str, str], use_status: bool = True
) -> Dict[str, Dict]:
"""Evaluate all responses and return their evaluations."""
evaluations = {}
if (
use_status and len(st.session_state.chat_history) <= 1
): # Only use status on initial response
with st.status("Evaluating responses with Selene...", expanded=True) as status:
for model_name, response in responses.items():
status.update(label=f"Evaluating {model_name} response...")
evaluation = evaluate_response(question, response)
evaluations[model_name] = evaluation
status.update(label="All evaluations complete!", state="complete")
else:
# Simple version without status
st.write("Evaluating responses with Selene...")
for model_name, response in responses.items():
evaluation = evaluate_response(question, response)
evaluations[model_name] = evaluation
st.write("All evaluations complete!")
return evaluations
def select_best_response(evaluations: Dict[str, Dict]) -> Tuple[str, Dict]:
"""Select the best response based on overall score. Randomly choose if tied."""
best_score = -1
tied_models = []
for model_name, evaluation in evaluations.items():
overall_score = evaluation["score"]
if overall_score > best_score:
# New highest score - clear previous ties and start fresh
best_score = overall_score
tied_models = [(model_name, evaluation)]
elif overall_score == best_score:
# Tie detected - add to the list of tied models
tied_models.append((model_name, evaluation))
# If there are multiple models tied for the highest score, randomly select one
if tied_models:
best_model, best_evaluation = random.choice(tied_models)
return best_model, best_evaluation
def refine_responses(question: str, model: str, evaluation: Dict) -> Tuple[str, Dict]:
"""Refine a response based on Selene's critique."""
critique = evaluation["critique"]
feedback = f"Please improve your previous response based on this feedback: {critique}"
# Display refining message
st.write(f"Refining response with {model}...")
# Get improved responses without status bar (to avoid nesting)
improved_responses = get_responses(question, feedback, with_status=False)
improved_response = improved_responses[model]
# Re-evaluate the improved response
st.write("Re-evaluating refined response...")
new_evaluation = evaluate_response(question, improved_response)
st.write("Refinement complete!")
return improved_response, new_evaluation
def meta_chat(question: str) -> Dict:
"""Process user question through the Meta-GPT system."""
iteration = 0
refinement_history = []
# Step 1: Get initial responses from all models
responses = get_responses(question)
# Step 2: Evaluate all responses
# Use status only for the first message
evaluations = evaluate_all_responses(
question, responses, use_status=len(st.session_state.chat_history) <= 1
)
# Step 3: Select best response
best_model, best_evaluation = select_best_response(evaluations)
best_response = responses[best_model]
st.session_state.chat_messages.append(AIMessage(content=best_response))
best_score = best_evaluation["score"]
# Record initial state
refinement_history.append(
{
"iteration": iteration,
"model": best_model,
"response": best_response,
"evaluation": best_evaluation,
"score": best_score,
}
)
# Step 4: Iterative refinement if score is below threshold
while best_score < QUALITY_THRESHOLD and iteration < MAX_ITERATIONS:
iteration += 1
st.info(
f"Response quality ({best_score:.2f}/5) below threshold ({QUALITY_THRESHOLD}/5). Refining..."
)
# Refine the best response based on feedback
improved_response, new_evaluation = refine_responses(
question, best_model, best_evaluation
)
new_score = new_evaluation["score"]
# Update best response if improved
if new_score > best_score:
best_response = improved_response
best_evaluation = new_evaluation
best_score = new_score
# Update the AI message in chat_messages
st.session_state.chat_messages[-1] = AIMessage(content=best_response)
# Record refinement state
refinement_history.append(
{
"iteration": iteration,
"model": best_model,
"response": improved_response,
"evaluation": new_evaluation,
"score": new_score,
}
)
# Step 5: Return final result
result = {
"question": question,
"best_model": best_model,
"best_response": best_response,
"best_score": best_score,
"iterations_required": iteration,
"all_evaluations": evaluations,
"refinement_history": refinement_history,
"threshold_met": best_score >= QUALITY_THRESHOLD,
"all_initial_responses": responses,
}
return result
def display_chat():
"""Display the chat interface and history."""
# Display chat history
for entry in st.session_state.chat_history:
if entry["role"] == "user":
with st.chat_message("user"):
st.markdown(entry["content"])
else:
# Use just "assistant" for avatar to avoid errors
with st.chat_message("assistant"):
st.markdown(entry["content"])
# Add a footnote with model and score info
st.caption(f"{entry['model']} (Score: {entry['score']:.2f}/5)")
def display_evaluation_details():
"""Display detailed evaluation information."""
if st.session_state.latest_result:
result = st.session_state.latest_result
# Display best model and score
st.subheader(f"Best Model: {result['best_model']}")
st.metric("Overall Score", f"{result['best_score']:.2f}/5")
# Refinement information
if result["iterations_required"] > 0:
st.subheader("Refinement Process")
st.write(
f"Required {result['iterations_required']} refinements to reach quality threshold."
)
# Create tabs for each refinement iteration
tabs = st.tabs(
["Initial"]
+ [f"Refinement {i+1}" for i in range(result["iterations_required"])]
)
for i, tab in enumerate(tabs):
if i < len(result["refinement_history"]):
refinement = result["refinement_history"][i]
with tab:
st.metric("Score", f"{refinement['score']:.2f}/5")
st.write("**Response:**")
st.text_area(
"Response Text",
value=refinement["response"],
height=150,
key=f"refinement_response_{i}",
disabled=True,
)
st.write("**Atla Critique's across different dimensions:**")
st.write(refinement["evaluation"]["critique"])
# Model comparison
st.subheader("Model Comparison")
for model, eval_data in result["all_evaluations"].items():
with st.expander(f"{model}: {eval_data['score']:.2f}/5"):
st.write("**Initial Response:**")
st.text_area(
"Response",
value=result["all_initial_responses"][model],
height=150,
key=f"response_{model}",
disabled=True,
)
st.write("**Atla Critique's across different dimensions:**")
st.write(eval_data["critique"])
def main():
"""Main app function"""
# Initialize the app
initialize_app()
# Initialize session state for sidebar visibility if not exists
if "show_analysis" not in st.session_state:
st.session_state.show_analysis = False
# Main content takes full width when analysis is collapsed
if st.session_state.get("latest_result") and st.session_state.show_analysis:
col1, col2 = st.columns([2, 1])
else:
# Use full width for main content when analysis is collapsed
col1 = st.container()
col2 = None # We won't use col2 when analysis is collapsed
with col1:
# Display header
st.title("π€ Meta-GPT")
st.markdown(
"""
This app uses multiple LLMs (GPT-4o, Claude 3.7, and DeepSeekV3.0) to answer your questions.
The world's best LLM-as-a-Judge, [Selene](https://www.atla-ai.com/api), evaluates each response, and the best one is selected and refined if needed.
"""
)
# Add toggle for analysis panel if we have results
if st.session_state.get("latest_result"):
toggle_col1, toggle_col2 = st.columns([4, 1])
with toggle_col2:
if st.button(
"π "
+ (
"Hide Analysis"
if st.session_state.show_analysis
else "Show Analysis"
)
):
st.session_state.show_analysis = not st.session_state.show_analysis
st.rerun()
# Display chat interface
display_chat()
# Check if API keys are configured
if not st.session_state.get("initialized", False):
st.warning("Please configure your API keys in the sidebar to continue.")
return
# Chat input
user_input = st.chat_input("Ask a question...")
# Use a separate column for evaluation details
if (
st.session_state.get("latest_result")
and st.session_state.show_analysis
and col2 is not None
):
with col2:
st.title("Response Analysis")
display_evaluation_details()
if user_input:
# Display user message
with st.chat_message("user"):
st.markdown(user_input)
# Add to history
st.session_state.chat_history.append({"role": "user", "content": user_input})
# Get meta chat response
with st.spinner("Processing your question..."):
result = meta_chat(user_input)
# Store latest result for sidebar display
st.session_state.latest_result = result
# Auto-expand the analysis panel when a new response comes in
st.session_state.show_analysis = True
# Display assistant message
with st.chat_message("assistant"):
st.markdown(result["best_response"])
st.caption(f"{result['best_model']} (Score: {result['best_score']:.2f}/5)")
# Add to history
st.session_state.chat_history.append(
{
"role": "assistant",
"content": result["best_response"],
"model": result["best_model"],
"score": result["best_score"],
}
)
# Force a refresh to update the evaluation details
st.rerun()
if __name__ == "__main__":
main()
|