File size: 24,748 Bytes
3738348 | 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 | """
Synthetic search agent trace generator.
Generates thousands of diverse, realistic search agent traces using
actual code chunks from the corpus. Each trace follows the gold-standard
format: reasoning β search β results β analysis β evidence β finish.
Trace types generated:
1. Simple lookup (1 search, 1 result)
2. Lookup with noise (1 search, 2-3 results, some irrelevant)
3. Multi-step search (2 searches, progressive refinement)
4. Query decomposition (complex query β subqueries)
5. Not found (search returns nothing)
6. Type/struct inspection (field enumeration)
7. Function behavior analysis (what does it do?)
8. Usage pattern (how is X used?)
Query templates are varied to prevent memorization:
- "What does {name} do?"
- "Where is {name} defined?"
- "How does {name} work?"
- "What parameters does {name} accept?"
- "What fields does {name} have?"
- "How is {name} used in the codebase?"
- etc.
Output: data/sft_traces.jsonl
"""
import json
import os
import random
import re
PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
CHUNKS_PATH = os.path.join(PROJECT_DIR, "data", "chunks.jsonl")
TRACES_PATH = os.path.join(PROJECT_DIR, "data", "sft_traces.jsonl")
SYSTEM_PROMPT = (
"You are a code search agent. Given a query from a reasoning model, "
"decompose it into subqueries, search the codebase, inspect results, "
"and return curated evidence. Use <|search|> to issue searches, "
"<|reasoning|> to analyze, and <|evidence|> to return findings. "
"Be concise. Extract only the relevant facts. End with <|finish|>."
)
random.seed(42)
# βββ Query templates βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
QUERY_TEMPLATES = {
"function": [
"What does {name} do?",
"Where is {name} defined?",
"How does {name} work?",
"What parameters does {name} accept?",
"What does {name} return?",
"Find the implementation of {name}.",
"Explain what {name} does step by step.",
"What is the signature of {name}?",
],
"struct": [
"What fields does {name} have?",
"What is the structure of {name}?",
"Where is {name} defined?",
"What data does {name} contain?",
"Describe the {name} type.",
],
"class": [
"What does the {name} class do?",
"What methods does {name} have?",
"Where is the {name} class defined?",
"How is {name} structured?",
"What is the inheritance of {name}?",
],
"macro": [
"What does {name} do?",
"Where is {name} defined?",
"What is {name}?",
],
"enum": [
"What variants does {name} have?",
"Where is {name} defined?",
"What values can {name} take?",
],
"block": [
"What does {name} do?",
"Where is {name} defined?",
"Find code related to {name}.",
"How is {name} used?",
],
}
# βββ Reasoning templates βββββββββββββββββββββββββββββββββββββββββββββββββββββ
INITIAL_REASONING = [
"I need to find {desc}. Let me search for {search_term}.",
"Looking for {desc}. I'll search using the term '{search_term}'.",
"The query asks about {desc}. Let me search the codebase.",
"I should find {desc}. Searching for '{search_term}'.",
"This requires finding {desc}. Let me issue a search.",
]
ANALYSIS_REASONING_FOUND = [
"Found the relevant code. {analysis}",
"This result contains what I need. {analysis}",
"I found {desc}. {analysis}",
"This is the right code. {analysis}",
]
ANALYSIS_REASONING_NOISE = [
"The first result is relevant. {analysis} The other results are not directly related.",
"Result 1 matches the query. {analysis} The remaining results appear to be unrelated code.",
"I found the target in the first result. {analysis} The other results don't match.",
"The relevant code is in the first result. {analysis} Ignoring the noise results.",
]
ANALYSIS_REASONING_REFINE = [
"Found the definition, but I need to see how it's used. Let me search for usages.",
"I have the implementation. Now let me find where it's called.",
"Got the definition. Let me also search for related patterns.",
"Found it. Let me do one more search to get complete context.",
]
NOT_FOUND_REASONING = [
"No results found for '{search_term}'. Let me try a broader search.",
"The search returned nothing. Let me try different terms.",
"No matches. The codebase may not contain this. Let me verify with another search.",
]
# βββ Code analysis functions βββββββββββββββββββββββββββββββββββββββββββββββββ
def extract_function_info(code: str, name: str) -> dict:
"""Extract key information from a function."""
info = {"name": name, "params": [], "returns": "", "key_lines": []}
# Extract parameters from signature
sig_match = re.search(r"(?:def|fn|func|function)\s+" + re.escape(name) + r"\s*\(([^)]*)\)", code)
if sig_match:
params_raw = sig_match.group(1).strip()
if params_raw:
info["params"] = [p.strip() for p in params_raw.split(",") if p.strip()]
# Extract return type (Rust/TS)
ret_match = re.search(r"->\s*([^{]+)", code)
if ret_match:
info["returns"] = ret_match.group(1).strip()
# Extract key lines (non-trivial lines)
lines = code.split("\n")
key_lines = []
for line in lines:
stripped = line.strip()
if not stripped or stripped.startswith("//") or stripped.startswith("#"):
continue
if any(kw in stripped for kw in ["return ", "if ", "for ", "while ", "raise ", "throw ", "Err(", "Ok(", "assert"]):
key_lines.append(stripped)
info["key_lines"] = key_lines[:5]
return info
def extract_struct_info(code: str, name: str) -> dict:
"""Extract field information from a struct."""
info = {"name": name, "fields": []}
# Find field declarations (type name; or name: type)
field_patterns = [
re.compile(r"^\s+(\w+)\s+(\w+);", re.M), # C: type name;
re.compile(r"^\s+(\w+):\s+([^,;]+)", re.M), # Rust/TS: name: type
re.compile(r"^\s+(self\.)?(\w+)\s*[:=]", re.M), # Python: self.name =
]
for pat in field_patterns:
matches = pat.findall(code)
for m in matches:
if isinstance(m, tuple):
field_name = m[-1] if m[-1] else m[0]
else:
field_name = m
if field_name and field_name not in ("self", "pub", "fn", "def", "class"):
info["fields"].append(field_name)
return info
def generate_evidence(chunk: dict, analysis_type: str = "found") -> str:
"""Generate curated evidence from a code chunk."""
code = chunk["code"]
name = chunk["name"]
typ = chunk["type"]
lang = chunk["language"]
filepath = chunk["filepath"]
if typ in ("function",):
info = extract_function_info(code, name)
parts = [f"`{name}` is a {lang} function:"]
# Signature
if info["params"]:
params_str = ", ".join(info["params"][:6])
if len(info["params"]) > 6:
params_str += ", ..."
parts.append(f"- Parameters: {params_str}")
if info["returns"]:
parts.append(f"- Returns: {info['returns']}")
# Key behavior
if info["key_lines"]:
parts.append("- Key behavior:")
for line in info["key_lines"][:3]:
parts.append(f" - `{line}`")
parts.append(f"Source: {filepath}")
return "\n".join(parts)
elif typ in ("struct",):
info = extract_struct_info(code, name)
parts = [f"`{name}` is a {lang} structure with fields:"]
for field in info["fields"][:10]:
parts.append(f"- `{field}`")
if len(info["fields"]) > 10:
parts.append(f"- ... ({len(info['fields'])} total fields)")
parts.append(f"Source: {filepath}")
return "\n".join(parts)
elif typ in ("class",):
parts = [f"`{name}` is a {lang} class:"]
# Find methods
methods = re.findall(r"(?:def |fn |func |function )\s*(\w+)", code)
if methods:
parts.append(f"- Methods: {', '.join(methods[:8])}")
# Find inheritance
base_match = re.search(r"class\s+\w+\s*(?:\(|:\s*|extends\s+|<\s*)(\w+)", code)
if base_match:
parts.append(f"- Inherits from: {base_match.group(1)}")
parts.append(f"Source: {filepath}")
return "\n".join(parts)
elif typ in ("macro",):
parts = [f"`{name}` is a {lang} macro/preprocessor definition:"]
# First few lines of the macro
lines = code.strip().split("\n")[:5]
for line in lines:
parts.append(f" `{line}`")
parts.append(f"Source: {filepath}")
return "\n".join(parts)
elif typ in ("enum",):
parts = [f"`{name}` is a {lang} enum with variants:"]
variants = re.findall(r"^\s+(\w+)[,\s]*$", code, re.M)
for v in variants[:10]:
parts.append(f"- `{v}`")
parts.append(f"Source: {filepath}")
return "\n".join(parts)
else:
# Generic block
parts = [f"Found code related to `{name}` ({lang}):"]
lines = code.strip().split("\n")[:8]
for line in lines:
parts.append(f" `{line}`")
parts.append(f"Source: {filepath}")
return "\n".join(parts)
def generate_search_term(chunk: dict) -> str:
"""Generate a realistic search term for a chunk."""
name = chunk["name"]
if name != "unknown" and name != "block":
return name
# For unnamed blocks, extract a key identifier
code = chunk["code"]
identifiers = re.findall(r"\b(ngx_\w+|def\s+\w+|fn\s+\w+|struct\s+\w+|class\s+\w+)\b", code)
if identifiers:
return identifiers[0].replace("def ", "").replace("fn ", "").replace("struct ", "").replace("class ", "")
# Fallback: first meaningful word
words = re.findall(r"\b[a-z_]{4,}\b", code)
return words[0] if words else "code"
def generate_description(chunk: dict) -> str:
"""Generate a natural language description of what we're looking for."""
name = chunk["name"]
typ = chunk["type"]
lang = chunk["language"]
if typ == "function":
return f"the {name} function"
elif typ == "struct":
return f"the {name} structure"
elif typ == "class":
return f"the {name} class"
elif typ == "macro":
return f"the {name} macro"
elif typ == "enum":
return f"the {name} enum"
else:
return f"code related to {name}"
# βββ Trace generators ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def make_trace_simple(chunk: dict) -> dict:
"""Type 1: Simple lookup β 1 search, 1 result."""
name = chunk["name"]
typ = chunk["type"]
templates = QUERY_TEMPLATES.get(typ, QUERY_TEMPLATES["block"])
query = random.choice(templates).format(name=name)
search_term = generate_search_term(chunk)
desc = generate_description(chunk)
reasoning1 = random.choice(INITIAL_REASONING).format(desc=desc, search_term=search_term)
evidence = generate_evidence(chunk)
return {
"query": query,
"trace": [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": f"<|reasoning|>{reasoning1}<|end|>\n<|search|>{search_term}<|end|>"},
{"role": "result", "content": chunk["code"]},
{"role": "assistant", "content": f"<|reasoning|>Found the relevant code. This is {desc}.<|end|>\n<|evidence|>{evidence}<|end|>\n<|finish|>"},
],
}
def make_trace_with_noise(chunk: dict, noise_chunks: list) -> dict:
"""Type 2: Lookup with noise β 1 search, 2-3 results (some irrelevant)."""
name = chunk["name"]
typ = chunk["type"]
templates = QUERY_TEMPLATES.get(typ, QUERY_TEMPLATES["block"])
query = random.choice(templates).format(name=name)
search_term = generate_search_term(chunk)
desc = generate_description(chunk)
evidence = generate_evidence(chunk)
reasoning1 = random.choice(INITIAL_REASONING).format(desc=desc, search_term=search_term)
# Select 1-2 noise chunks
n_noise = random.choice([1, 2])
noise = random.sample(noise_chunks, min(n_noise, len(noise_chunks)))
analysis = f"This contains {desc}."
analysis_template = random.choice(ANALYSIS_REASONING_NOISE).format(analysis=analysis)
trace = [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": f"<|reasoning|>{reasoning1}<|end|>\n<|search|>{search_term}<|end|>"},
{"role": "result", "content": chunk["code"]},
]
for nc in noise:
trace.append({"role": "result", "content": nc["code"]})
trace.append({"role": "assistant", "content": f"<|reasoning|>{analysis_template}<|end|>\n<|evidence|>{evidence}<|end|>\n<|finish|>"})
return {"query": query, "trace": trace}
def make_trace_multi_step(chunk: dict, related_chunk: dict) -> dict:
"""Type 3: Multi-step search β 2 searches, progressive refinement."""
name = chunk["name"]
typ = chunk["type"]
query = f"What does {name} do and where is it used?"
search_term1 = generate_search_term(chunk)
search_term2 = generate_search_term(related_chunk)
desc = generate_description(chunk)
evidence1 = generate_evidence(chunk)
evidence2 = generate_evidence(related_chunk)
reasoning1 = random.choice(INITIAL_REASONING).format(desc=desc, search_term=search_term1)
reasoning2 = random.choice(ANALYSIS_REASONING_REFINE)
return {
"query": query,
"trace": [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": f"<|reasoning|>{reasoning1}<|end|>\n<|search|>{search_term1}<|end|>"},
{"role": "result", "content": chunk["code"]},
{"role": "assistant", "content": f"<|reasoning|>Found {desc}. {reasoning2}<|end|>\n<|search|>{search_term2}<|end|>"},
{"role": "result", "content": related_chunk["code"]},
{"role": "assistant", "content": f"<|reasoning|>Found both the definition and a usage. I now have complete context.<|end|>\n<|evidence|>{evidence1}\n\nRelated usage:\n{evidence2}<|end|>\n<|finish|>"},
],
}
def make_trace_not_found() -> dict:
"""Type 5: Not found β search returns nothing."""
fake_names = ["database_pool", "auth_middleware", "cache_manager", "session_store",
"websocket_handler", "graphql_resolver", "redis_client", "email_service"]
name = random.choice(fake_names)
query = f"Where is the {name} implemented?"
search1 = name
search2 = name.replace("_", " ")
reasoning1 = random.choice(INITIAL_REASONING).format(desc=f"the {name}", search_term=search1)
reasoning2 = random.choice(NOT_FOUND_REASONING).format(search_term=search1)
return {
"query": query,
"trace": [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": f"<|reasoning|>{reasoning1}<|end|>\n<|search|>{search1}<|end|>"},
{"role": "result", "content": ""},
{"role": "assistant", "content": f"<|reasoning|>{reasoning2}<|end|>\n<|search|>{search2}<|end|>"},
{"role": "result", "content": ""},
{"role": "assistant", "content": f"<|reasoning|>No results found. The codebase does not contain {name}.<|end|>\n<|evidence|>No implementation of `{name}` was found in the codebase. Searched for: '{search1}', '{search2}'.<|end|>\n<|finish|>"},
],
}
def make_trace_decomposition(chunk: dict, related_chunk: dict) -> dict:
"""Type 4: Query decomposition β complex query broken into subqueries."""
name = chunk["name"]
related_name = related_chunk["name"]
query = f"How does {name} work and how does it relate to {related_name}?"
search1 = generate_search_term(chunk)
search2 = generate_search_term(related_chunk)
evidence1 = generate_evidence(chunk)
evidence2 = generate_evidence(related_chunk)
return {
"query": query,
"trace": [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": f"<|reasoning|>This query has two parts: (1) how {name} works, (2) its relationship to {related_name}. Let me search for {name} first.<|end|>\n<|search|>{search1}<|end|>"},
{"role": "result", "content": chunk["code"]},
{"role": "assistant", "content": f"<|reasoning|>Found {name}. Now let me search for {related_name} to understand the relationship.<|end|>\n<|search|>{search2}<|end|>"},
{"role": "result", "content": related_chunk["code"]},
{"role": "assistant", "content": f"<|reasoning|>Found both components. I can now explain how they relate.<|end|>\n<|evidence|>{evidence1}\n\nRelated: {evidence2}<|end|>\n<|finish|>"},
],
}
def make_trace_struct_inspection(chunk: dict) -> dict:
"""Type 6: Struct inspection β enumerate fields."""
if chunk["type"] not in ("struct",):
return make_trace_simple(chunk)
name = chunk["name"]
query = f"What fields does {name} have?"
search_term = name
evidence = generate_evidence(chunk)
return {
"query": query,
"trace": [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": f"<|reasoning|>Looking for the {name} struct definition to enumerate its fields.<|end|>\n<|search|>{search_term}<|end|>"},
{"role": "result", "content": chunk["code"]},
{"role": "assistant", "content": f"<|reasoning|>Found the struct definition. I can extract all fields from it.<|end|>\n<|evidence|>{evidence}<|end|>\n<|finish|>"},
],
}
def make_trace_behavior_analysis(chunk: dict) -> dict:
"""Type 7: Function behavior analysis β what does it do?"""
if chunk["type"] not in ("function",):
return make_trace_simple(chunk)
name = chunk["name"]
query = f"What does {name} do? Explain its behavior."
search_term = name
evidence = generate_evidence(chunk)
info = extract_function_info(chunk["code"], name)
params = ", ".join(info["params"][:4]) if info["params"] else "no parameters"
return {
"query": query,
"trace": [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": f"<|reasoning|>I need to find and analyze the {name} function. Let me search for its definition.<|end|>\n<|search|>{search_term}<|end|>"},
{"role": "result", "content": chunk["code"]},
{"role": "assistant", "content": f"<|reasoning|>Found the function. It takes {params}. Let me analyze its behavior from the code.<|end|>\n<|evidence|>{evidence}<|end|>\n<|finish|>"},
],
}
# βββ Main generation βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
print(f"Loading chunks from {CHUNKS_PATH}...")
with open(CHUNKS_PATH, "r", encoding="utf-8") as f:
chunks = [json.loads(line) for line in f]
print(f" Loaded {len(chunks):,} chunks")
# Filter to chunks with real names and reasonable size
good_chunks = [c for c in chunks if c["name"] != "unknown" and c["name"] != "block" and 50 < len(c["code"]) < 3000]
block_chunks = [c for c in chunks if c["name"] == "block" or c["name"] == "unknown"]
print(f" Named chunks (good): {len(good_chunks):,}")
print(f" Block chunks: {len(block_chunks):,}")
# Group by language for related chunk pairing
by_lang = {}
for c in good_chunks:
by_lang.setdefault(c["language"], []).append(c)
traces = []
# βββ Generate traces βββββββββββββββββββββββββββββββββββββββββββββββββββββ
print("\nGenerating traces...")
# Type 1: Simple lookup (30% of traces)
n_simple = min(2000, len(good_chunks))
sampled = random.sample(good_chunks, n_simple)
for chunk in sampled:
traces.append(make_trace_simple(chunk))
print(f" Simple lookup: {n_simple}")
# Type 2: With noise (20%)
n_noise = min(1500, len(good_chunks))
sampled = random.sample(good_chunks, n_noise)
for chunk in sampled:
# Pick noise chunks from same language
lang_chunks = by_lang.get(chunk["language"], good_chunks)
noise_pool = [c for c in lang_chunks if c["id"] != chunk["id"]]
if len(noise_pool) >= 2:
traces.append(make_trace_with_noise(chunk, noise_pool))
print(f" With noise: {n_noise}")
# Type 3: Multi-step (15%)
n_multi = min(1000, len(good_chunks) // 2)
sampled = random.sample(good_chunks, n_multi)
for chunk in sampled:
lang_chunks = by_lang.get(chunk["language"], good_chunks)
related_pool = [c for c in lang_chunks if c["id"] != chunk["id"]]
if related_pool:
related = random.choice(related_pool)
traces.append(make_trace_multi_step(chunk, related))
print(f" Multi-step: {n_multi}")
# Type 4: Query decomposition (10%)
n_decomp = min(700, len(good_chunks) // 3)
sampled = random.sample(good_chunks, n_decomp)
for chunk in sampled:
lang_chunks = by_lang.get(chunk["language"], good_chunks)
related_pool = [c for c in lang_chunks if c["id"] != chunk["id"]]
if related_pool:
related = random.choice(related_pool)
traces.append(make_trace_decomposition(chunk, related))
print(f" Query decomposition: {n_decomp}")
# Type 5: Not found (5%)
n_notfound = 300
for _ in range(n_notfound):
traces.append(make_trace_not_found())
print(f" Not found: {n_notfound}")
# Type 6: Struct inspection (10%)
struct_chunks = [c for c in good_chunks if c["type"] == "struct"]
for chunk in struct_chunks[:500]:
traces.append(make_trace_struct_inspection(chunk))
print(f" Struct inspection: {min(len(struct_chunks), 500)}")
# Type 7: Behavior analysis (10%)
func_chunks = [c for c in good_chunks if c["type"] == "function"]
for chunk in func_chunks[:500]:
traces.append(make_trace_behavior_analysis(chunk))
print(f" Behavior analysis: {min(len(func_chunks), 500)}")
# Shuffle
random.shuffle(traces)
# Write
print(f"\nTotal traces: {len(traces):,}")
with open(TRACES_PATH, "w", encoding="utf-8") as f:
for trace in traces:
f.write(json.dumps(trace) + "\n")
print(f"Traces written to {TRACES_PATH}")
# Stats
total_size = os.path.getsize(TRACES_PATH)
print(f" File size: {total_size / 1e6:.2f} MB")
# Show a sample
print("\n" + "=" * 60)
print("SAMPLE TRACE")
print("=" * 60)
sample = traces[0]
print(f"\nQuery: {sample['query']}")
for msg in sample["trace"]:
role = msg["role"]
content = msg["content"]
if len(content) > 200:
content = content[:200] + "..."
print(f"\n[{role}]")
print(content)
if __name__ == "__main__":
main()
|