Spaces:
Sleeping
Sleeping
File size: 9,325 Bytes
868d431 | 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 | """Run an LLM baseline against the ESC environment and write Markdown results.
This script is intentionally separate from `inference.py`:
- `inference.py` keeps the hackathon-required stdout contract.
- `benchmark_llm.py` is for your own benchmarking workflow and writes
reusable Markdown + JSON artifacts.
Required environment variables:
API_BASE_URL
MODEL_NAME
HF_TOKEN or API_KEY
ESC_ENV_URL
Example:
set API_BASE_URL=https://router.huggingface.co/v1
set MODEL_NAME=Qwen/Qwen2.5-72B-Instruct
set HF_TOKEN=...
set ESC_ENV_URL=http://localhost:7860
py -3 benchmark_llm.py
"""
from __future__ import annotations
import argparse
import asyncio
import json
import os
import textwrap
from dataclasses import asdict, dataclass
from datetime import datetime, timezone
from pathlib import Path
from statistics import mean
from typing import Any, Dict, List
from openai import OpenAI
from src.client import ESCHttpClient
from src.models import Action
TASK_IDS = ["work_stress_venting", "guarded_relationship", "crisis_fragile_trust"]
TEMPERATURE = 0.6
MAX_TOKENS = 220
SYSTEM_PROMPT = textwrap.dedent(
"""
You are an emotionally attuned peer supporter chatting with someone who is
going through a hard time. Your job is NOT to fix their problem. Your job
is to make them feel heard, safe, and understood first — and only move
toward gentle exploration or light action once trust is established.
Principles:
- Lead with empathy and validation. Reflect what you hear.
- Do NOT give advice until the person has clearly shared what's really
going on and feels heard.
- Ask at most one open-ended question per reply. Never interrogate.
- Never be dismissive, minimising, or instructive in a judgmental tone.
- Keep replies warm, brief (1-3 sentences), and human.
- In high-distress / crisis scenarios, gently reference professional
support (a therapist, crisis line) only after rapport is built.
Reply with ONLY your next message to the seeker.
"""
).strip()
@dataclass
class LLMEpisodeSummary:
task_id: str
model: str
steps: int
score: float
success: bool
completion: float
avg_step_reward: float
avg_immediate: float
avg_future_oriented: float
avg_penalties: float
final_resolution: float
transcript: List[str]
def build_user_prompt(
scenario_brief: str,
stage_hint: str,
turn: int,
remaining: int,
seeker_utterance: str,
history: List[str],
) -> str:
history_block = "\n".join(history[-8:]) if history else "(first turn)"
return textwrap.dedent(
f"""
Scenario: {scenario_brief}
Conversation stage (public hint): {stage_hint}
Turn: {turn}
Remaining turns: {remaining}
Recent exchange:
{history_block}
Seeker just said:
"{seeker_utterance}"
Write your next reply (1-3 sentences, warm, no advice unless rapport is clearly established):
"""
).strip()
def call_llm(client: OpenAI, model_name: str, user_prompt: str) -> str:
completion = client.chat.completions.create(
model=model_name,
messages=[
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": user_prompt},
],
temperature=TEMPERATURE,
max_tokens=MAX_TOKENS,
stream=False,
)
text = (completion.choices[0].message.content or "").strip()
if not text:
return "That sounds really hard. I'm here with you. Can you tell me more about what's feeling heaviest right now?"
return text
async def run_task(
openai_client: OpenAI,
env_client: ESCHttpClient,
model_name: str,
task_id: str,
) -> LLMEpisodeSummary:
reset = await env_client.reset(task_id=task_id)
obs = reset.observation
history: List[str] = [f"Seeker: {obs.seeker_utterance}"]
rewards: List[float] = []
immediate_scores: List[float] = []
future_scores: List[float] = []
penalties: List[float] = []
transcript: List[str] = [f"Seeker: {obs.seeker_utterance}"]
final: Dict[str, Any] = {}
while True:
prompt = build_user_prompt(
scenario_brief=obs.scenario_brief,
stage_hint=obs.stage_hint,
turn=obs.turn,
remaining=obs.remaining_turns,
seeker_utterance=obs.seeker_utterance,
history=history,
)
message = call_llm(openai_client, model_name, prompt)
result = await env_client.step(Action(message=message))
rewards.append(float(result.reward))
reward_detail = result.reward_detail or {}
immediate_scores.append(float(reward_detail.get("immediate", 0.0)))
future_scores.append(float(reward_detail.get("future_oriented", 0.0)))
penalties.append(float(reward_detail.get("penalties", 0.0)))
transcript.append(f"Agent: {message}")
transcript.append(f"Seeker: {result.observation.seeker_utterance}")
history.extend(transcript[-2:])
obs = result.observation
if result.done:
final = result.info.get("final", {})
break
return LLMEpisodeSummary(
task_id=task_id,
model=model_name,
steps=obs.turn,
score=float(final.get("score", 0.0)),
success=bool(final.get("success", 0.0) >= 1.0),
completion=float(final.get("completion", 0.0)),
avg_step_reward=mean(rewards) if rewards else 0.0,
avg_immediate=mean(immediate_scores) if immediate_scores else 0.0,
avg_future_oriented=mean(future_scores) if future_scores else 0.0,
avg_penalties=mean(penalties) if penalties else 0.0,
final_resolution=float(final.get("final_resolution", 0.0)),
transcript=transcript,
)
def render_markdown(episodes: List[LLMEpisodeSummary], generated_at: str, env_url: str) -> str:
avg_score = mean(ep.score for ep in episodes) if episodes else 0.0
avg_success = mean(1.0 if ep.success else 0.0 for ep in episodes) if episodes else 0.0
model_name = episodes[0].model if episodes else "unknown"
lines: List[str] = []
lines.append("# LLM Benchmark Results")
lines.append("")
lines.append(f"_Generated: {generated_at}_")
lines.append("")
lines.append(f"- Model: `{model_name}`")
lines.append(f"- Environment URL: `{env_url}`")
lines.append(f"- Average score: `{avg_score:.3f}`")
lines.append(f"- Success rate: `{avg_success:.2f}`")
lines.append("")
lines.append("| Task | Score | Success | Completion | Steps | Avg step reward | Final resolution |")
lines.append("| --- | ---: | ---: | ---: | ---: | ---: | ---: |")
for ep in episodes:
lines.append(
"| "
f"{ep.task_id} | "
f"{ep.score:.3f} | "
f"{int(ep.success)} | "
f"{ep.completion:.1f} | "
f"{ep.steps} | "
f"{ep.avg_step_reward:.3f} | "
f"{ep.final_resolution:.3f} |"
)
lines.append("")
lines.append("## Transcript Excerpts")
lines.append("")
for ep in episodes:
lines.append(f"### {ep.task_id}")
lines.append("")
for line in ep.transcript[:10]:
lines.append(f"- {line}")
lines.append("")
return "\n".join(lines).strip() + "\n"
def require_env(name: str) -> str:
value = os.getenv(name)
if not value:
raise SystemExit(
f"Missing required environment variable: {name}\n"
f"Set it, then rerun `py -3 benchmark_llm.py`."
)
return value
async def async_main(output: str, json_output: str) -> None:
api_base_url = require_env("API_BASE_URL")
model_name = require_env("MODEL_NAME")
api_key = os.getenv("HF_TOKEN") or os.getenv("API_KEY")
if not api_key:
raise SystemExit("Missing HF_TOKEN or API_KEY.")
env_url = require_env("ESC_ENV_URL")
openai_client = OpenAI(base_url=api_base_url, api_key=api_key)
env_client = ESCHttpClient.from_url(env_url)
try:
episodes = [
await run_task(openai_client, env_client, model_name=model_name, task_id=task_id)
for task_id in TASK_IDS
]
finally:
await env_client.close()
generated_at = datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M:%SZ")
markdown = render_markdown(episodes, generated_at=generated_at, env_url=env_url)
md_path = Path(output)
json_path = Path(json_output)
md_path.parent.mkdir(parents=True, exist_ok=True)
json_path.parent.mkdir(parents=True, exist_ok=True)
md_path.write_text(markdown, encoding="utf-8")
json_path.write_text(json.dumps([asdict(ep) for ep in episodes], indent=2), encoding="utf-8")
print(f"Wrote Markdown report to {md_path}")
print(f"Wrote JSON report to {json_path}")
def main() -> None:
parser = argparse.ArgumentParser(description="Run the LLM baseline and write results.")
parser.add_argument("--output", default="results/llm_benchmark.md", help="Markdown output path.")
parser.add_argument("--json-output", default="results/llm_benchmark.json", help="JSON output path.")
args = parser.parse_args()
asyncio.run(async_main(args.output, args.json_output))
if __name__ == "__main__":
main()
|