Spaces:
Sleeping
Sleeping
File size: 11,868 Bytes
6543833 | 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 | """Run a skill-routed LLM agent against the ESC environment.
This script shares the same deterministic skill router as `benchmark_agentic.py`
but lets an LLM realize each selected skill turn by turn. It writes Markdown and
JSON artifacts so the submission can show an agentic baseline with explicit
routing traces.
Required environment variables:
API_BASE_URL
MODEL_NAME
HF_TOKEN or API_KEY
ESC_ENV_URL
Example:
$env:API_BASE_URL="http://localhost:11434/v1"
$env:MODEL_NAME="qwen2.5:7b-instruct"
$env:API_KEY="ollama"
$env:ESC_ENV_URL="http://localhost:7860"
py -3 benchmark_agentic_llm.py
"""
from __future__ import annotations
import argparse
import asyncio
import json
import os
import textwrap
from dataclasses import asdict, dataclass, field
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.agentic import AgentMemory, SkillRouter, build_default_skills
from src.client import ESCHttpClient
from src.models import Action, Observation
TASK_IDS = ["work_stress_venting", "guarded_relationship", "crisis_fragile_trust"]
TEMPERATURE = 0.5
MAX_TOKENS = 220
SYSTEM_PROMPT = textwrap.dedent(
"""
You are the response generator inside a skill-routed emotional-support agent.
A controller will choose one conversational skill for each turn. Follow that
selected skill closely while still sounding natural and human.
Global rules:
- Keep replies warm, brief, and conversational (1-3 sentences).
- Ask at most one question.
- Do not mention the router, skill names, or any internal policy logic.
- Do not give advice before trust is built.
- In crisis scenarios, keep the tone calm and supportive rather than alarmist.
Reply with ONLY the next message to the seeker.
"""
).strip()
@dataclass
class AgenticLLMEpisodeSummary:
task_id: str
model: str
endpoint_type: 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
had_safety_reference: bool
skill_counts: Dict[str, int] = field(default_factory=dict)
skill_trace: List[str] = field(default_factory=list)
transcript: List[str] = field(default_factory=list)
def classify_endpoint(api_base_url: str) -> str:
lowered = api_base_url.lower()
if "localhost" in lowered or "127.0.0.1" in lowered:
return "local"
if "huggingface" in lowered:
return "huggingface"
return "remote"
def build_user_prompt(
observation: Observation,
history: List[str],
skill_name: str,
skill_instruction: str,
rationale: str,
) -> str:
history_block = "\n".join(history[-8:]) if history else "(first turn)"
return textwrap.dedent(
f"""
Selected skill: {skill_name}
Why this skill was selected: {rationale}
Skill directive: {skill_instruction}
Scenario: {observation.scenario_brief}
Public stage hint: {observation.stage_hint}
Turn: {observation.turn}
Remaining turns: {observation.remaining_turns}
Recent exchange:
{history_block}
Seeker just said:
"{observation.seeker_utterance}"
Write the next reply now.
"""
).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 heavy, and I'm here with you. What feels most important to say right now?"
return text
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_agentic_llm.py`."
)
return value
async def run_task(
openai_client: OpenAI,
env_client: ESCHttpClient,
model_name: str,
endpoint_type: str,
task_id: str,
) -> AgenticLLMEpisodeSummary:
router = SkillRouter()
skills = build_default_skills()
memory = AgentMemory()
memory.reset(task_id)
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}"]
skill_trace: List[str] = []
final: Dict[str, Any] = {}
last_result = None
while True:
memory.observe(obs)
decision = router.choose(obs, memory)
skill = skills[decision.skill_name]
prompt = build_user_prompt(
observation=obs,
history=history,
skill_name=decision.skill_name,
skill_instruction=skill.llm_instruction(obs, memory, decision),
rationale=decision.rationale,
)
message = call_llm(openai_client, model_name, prompt)
memory.remember(decision.skill_name, message)
skill_trace.append(
f"Turn {obs.turn + 1} [{obs.stage_hint}] -> {decision.skill_name}: {decision.rationale}"
)
result = await env_client.step(Action(message=message))
last_result = result
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
assert last_result is not None
return AgenticLLMEpisodeSummary(
task_id=task_id,
model=model_name,
endpoint_type=endpoint_type,
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)),
had_safety_reference=bool(last_result.info.get("had_safety_reference", False)),
skill_counts=dict(memory.skill_counts),
skill_trace=skill_trace,
transcript=transcript,
)
def render_markdown(
episodes: List[AgenticLLMEpisodeSummary],
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"
endpoint_type = episodes[0].endpoint_type if episodes else "unknown"
skill_totals: Dict[str, int] = {}
for episode in episodes:
for skill_name, count in episode.skill_counts.items():
skill_totals[skill_name] = skill_totals.get(skill_name, 0) + count
lines: List[str] = []
lines.append("# Agentic LLM Benchmark Results")
lines.append("")
lines.append(f"_Generated: {generated_at}_")
lines.append("")
lines.append(f"- Model: `{model_name}`")
lines.append(f"- Endpoint type: `{endpoint_type}`")
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("## Per-Task Results")
lines.append("")
lines.append("| Task | Score | Success | Completion | Steps | Avg reward | Final resolution | Safety ref |")
lines.append("| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |")
for episode in episodes:
lines.append(
"| "
f"{episode.task_id} | "
f"{episode.score:.3f} | "
f"{int(episode.success)} | "
f"{episode.completion:.1f} | "
f"{episode.steps} | "
f"{episode.avg_step_reward:.3f} | "
f"{episode.final_resolution:.3f} | "
f"{int(episode.had_safety_reference)} |"
)
lines.append("")
lines.append("## Skill Usage Totals")
lines.append("")
lines.append("| Skill | Total turns |")
lines.append("| --- | ---: |")
for skill_name, count in sorted(skill_totals.items(), key=lambda item: (-item[1], item[0])):
lines.append(f"| {skill_name} | {count} |")
lines.append("")
lines.append("## Skill Trace Excerpts")
lines.append("")
for episode in episodes:
lines.append(f"### {episode.task_id}")
lines.append("")
for line in episode.skill_trace[:8]:
lines.append(f"- {line}")
lines.append("")
lines.append("## Transcript Excerpts")
lines.append("")
for episode in episodes:
lines.append(f"### {episode.task_id}")
lines.append("")
for line in episode.transcript[:10]:
lines.append(f"- {line}")
lines.append("")
return "\n".join(lines).strip() + "\n"
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")
endpoint_type = classify_endpoint(api_base_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,
endpoint_type=endpoint_type,
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 skill-routed LLM benchmark.")
parser.add_argument(
"--output",
default="results/agentic_llm_benchmark.md",
help="Markdown output path.",
)
parser.add_argument(
"--json-output",
default="results/agentic_llm_benchmark.json",
help="JSON output path.",
)
args = parser.parse_args()
asyncio.run(async_main(args.output, args.json_output))
if __name__ == "__main__":
main()
|