From 74abe814a0bf6796f096a706c92e204b7745da45 Mon Sep 17 00:00:00 2001 From: Huynh Khanh Tuong Date: Sun, 12 Jul 2026 12:42:08 +0700 Subject: [PATCH] update --- Dockerfile | 19 +- README.md | 30 +- agent/classifier.py | 167 +- agent/router.py | 22 +- agent/supervised_model.pt | Bin 102711 -> 0 bytes engines/local_slm.py | 30 +- main.py | 13 +- requirements.txt | 7 +- scripts/setup.sh | 13 - scripts/test_local.py | 4 +- scripts/uv_python/setup_uv.sh | 13 - tests/fixtures/task.json | 18362 -------------------------------- tests/test_classifier.py | 10 +- tests/test_router.py | 4 + 14 files changed, 130 insertions(+), 18564 deletions(-) delete mode 100644 agent/supervised_model.pt delete mode 100644 tests/fixtures/task.json diff --git a/Dockerfile b/Dockerfile index 5a6f7e4..47552e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,19 +17,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ COPY requirements.txt /app/ -# Step 1: Install CPU-only torch first to avoid pulling 2.5 GB CUDA wheels -RUN uv pip install --no-cache torch \ - --index-url https://download.pytorch.org/whl/cpu - -# Step 2: Install remaining deps (sentence-transformers will reuse the torch above) +# Install remaining deps (llama-cpp-python installed separately via CPU wheel). +# torch + sentence-transformers were removed: classification now uses the local +# Qwen GGUF model directly, so no embedding model / PyTorch head is needed. RUN uv pip install --no-cache -r requirements.txt -# Step 3: Install llama-cpp-python via precompiled CPU wheel (avoids C++ compilation) +# Install llama-cpp-python via precompiled CPU wheel (avoids C++ compilation) RUN uv pip install --no-cache llama-cpp-python \ --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu -# Bundle GGUF model weights (~986 MB) -# Make sure to run scripts/download_model.sh before building +# Bundle GGUF model weights (~2 GB) COPY models/ /app/models/ # System prompt templates @@ -49,11 +46,9 @@ ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ INPUT_PATH=/input/tasks.json \ OUTPUT_PATH=/output/results.json \ - LOCAL_MODEL_PATH=/app/models/qwen2.5-1.5b-instruct-q4_k_m.gguf \ + LOCAL_MODEL_PATH=/app/models/qwen2.5-3b-instruct-q4_k_m.gguf \ LOCAL_N_GPU_LAYERS=0 \ LOCAL_N_THREADS=2 \ - LOCAL_N_CTX=2048 \ - HF_HUB_OFFLINE=1 \ - TRANSFORMERS_OFFLINE=1 + LOCAL_N_CTX=2048 ENTRYPOINT ["/app/entrypoint.sh"] diff --git a/README.md b/README.md index a27060d..57da94f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Input Task [L1b] AST Math Evaluator → pure expression → 0 tokens (deterministic) │ NOT PURE MATH ▼ -[L2] Supervised PyTorch Classifier → 0 tokens, ~9ms (all-MiniLM-L6-v2 + PyTorch MLP) +[L2] LLM Classifier (local Qwen) → 0 tokens, grammar-constrained label │ ├─► LOCAL_SENTIMENT / LOCAL_NER / LOCAL_GENERAL │ ▼ @@ -51,15 +51,13 @@ Input Task > **Local-first code strategy**: Code debugging and code generation tasks use a difficulty classifier (`code_utils.py`). Easy/medium tasks attempt Qwen2.5-3B locally first, validated with `ast.parse` + completeness checks — only falling back to the remote API if local output is invalid. Hard tasks go directly to the remote API to avoid wasting wall-clock time. -### Semantic Classifier (L2) +### LLM Classifier (L2) -Layer 2 uses **`all-MiniLM-L6-v2`** (sentence-transformers) combined with a **Supervised Neural Network Head (PyTorch MLP)** for highly robust semantic classification: -- **Embedding Generation**: Encodes the prompt into a dense 384-dimensional vector embedding (~8-10ms, CPU-only). -- **Neural Network Head**: Passes the embedding through a trained Multi-Layer Perceptron (MLP) head (`384 -> 64 -> ReLU -> Dropout -> 6 Classes`). -- **Consolidated Training**: Trained on a diverse combined dataset of **3,235 tasks** (covering standard, adversarial, and conversational phrasings). -- **Accuracy**: Achieves **100.00% classification accuracy** across all task categories, including tricky inputs with overlapping keywords (e.g., historical numbers or code snippets). -- **Efficiency**: Runs entirely local with **0 Fireworks API tokens** and extremely low memory footprint (weights are only ~100 KB). -- **Auto-training**: If pre-trained weights are missing, the classifier automatically trains from `tests/fixtures/task.json` at startup. +Layer 2 uses the **same local Qwen2.5-3B GGUF model** as the local handlers to pick the routing category — no separate embedding model or neural head: +- **Grammar-constrained output**: a GBNF grammar forces the model to emit exactly one of the valid route labels (e.g. `LOCAL_SENTIMENT`, `API_CODE`). There is no free-form prose to parse, so mislabels from a stray token are impossible. +- **Zero tokens**: runs entirely on the bundled model, 0 Fireworks API tokens. +- **Concurrency-safe**: the classifier and the local handlers share one llama.cpp context, serialized by a lock inside `LocalSLMEngine`; `router.py` offloads every local call (classify + handlers) to worker threads so the asyncio event loop stays responsive while remote API tasks run concurrently. +- **Long-context override**: prompts longer than 6,000 chars skip the model and route directly to `API_LONG_CONTEXT` to avoid CPU OOM. ### Remote Model Selection @@ -93,8 +91,7 @@ This reduces input + output tokens on every remote call. │ ├── schemas.py # Pydantic Task & Result models │ ├── cache.py # SHA-256 semantic dedup cache (thread-safe) │ ├── ast_eval.py # Safe deterministic math evaluator (AST whitelist) -│ ├── classifier.py # Supervised PyTorch classifier (all-MiniLM-L6-v2 + MLP) -│ ├── supervised_model.pt # Pre-trained classifier weights (~100 KB) +│ ├── classifier.py # LLM classifier (local Qwen, GBNF grammar-constrained) │ ├── router.py # AgentRouter — orchestrates all 4 layers │ └── watchdog.py # Daemon thread: fires at 570s, flushes partial output │ @@ -180,10 +177,8 @@ bash scripts/setup.sh Script này tự động: - Tạo virtual environment (`.venv`) -- Cài `torch` CPU-only (tránh CUDA wheels 2.5 GB) - Cài tất cả dependencies từ `requirements.txt` - Cài `llama-cpp-python` (CPU wheel, không cần C++ compiler) -- Pre-cache `all-MiniLM-L6-v2` (~90 MB) - Download `Qwen2.5-3B Q4_K_M` GGUF (~2 GB) - Tạo `.env` từ `.env.example` @@ -246,7 +241,7 @@ Benchmarks 5 strategies (baseline, zero-shot strict, few-shot, chain-of-thought, PYTHONPATH=. pytest tests/test_ast_eval.py tests/test_cache.py \ tests/test_remote_llm.py tests/test_router.py -v -# Classifier test (requires all-MiniLM-L6-v2 + task.json) +# Classifier test (loads local GGUF model) PYTHONPATH=. pytest tests/test_classifier.py -v # Local SLM test (requires GGUF model) @@ -282,9 +277,8 @@ docker push /develarper-agent:latest **Docker image features:** - Uses `entrypoint.sh` (loads `.env` if present, then runs `main.py`) -- Sets `HF_HUB_OFFLINE=1` and `TRANSFORMERS_OFFLINE=1` — all model weights are pre-cached at build time, no runtime downloads -- Pre-caches `all-MiniLM-L6-v2` sentence-transformer during build -- Bundles `Qwen2.5-3B Q4_K_M` GGUF (~986 MB) in `/app/models/` +- Bundles `Qwen2.5-3B Q4_K_M` GGUF (~2 GB) in `/app/models/` — the only model needed (used for both classification and local handlers) +- No torch / sentence-transformers / embedding model — smaller image, faster cold start --- @@ -355,7 +349,7 @@ See [`tests/evaluation_report.md`](tests/evaluation_report.md) for detailed anal - **Python version**: 3.12 (Docker) / 3.11+ (host dev) - **Package manager**: `uv` (in Docker), `pip` (host dev) -- **Classifier**: `all-MiniLM-L6-v2` (SentenceTransformer) + PyTorch MLP head — trained locally on 3,235 consolidated tasks (including test suite prompts) +- **Classifier**: local Qwen2.5-3B with a GBNF grammar constraining output to one of the route labels (0 tokens, no separate embedding model / PyTorch head) - **Local SLM**: `Qwen2.5-3B-Instruct Q4_K_M` via `llama-cpp-python` - **Remote API**: `aiohttp` + `tenacity` retry (3 attempts, exponential backoff) - **Math prompting**: CoT with few-shot examples, handles fractions/decimals, answer extraction via regex diff --git a/agent/classifier.py b/agent/classifier.py index d863f61..75dc308 100644 --- a/agent/classifier.py +++ b/agent/classifier.py @@ -1,22 +1,14 @@ """ -agent/classifier.py — Supervised Neural Network Classifier -========================================================= -Uses sentence-transformers (all-MiniLM-L6-v2) to encode prompts into dense -384-dimensional embeddings, then passes them through a PyTorch classification -head to predict the optimal routing category. - -Routes (constants unchanged): - LOCAL_SENTIMENT, LOCAL_NER, LOCAL_GENERAL - API_MATH, API_CODE, API_LOGIC, API_LONG_CONTEXT +agent/classifier.py — LLM-driven zero-token classifier +====================================================== +The local Qwen model chooses the routing category. Output is constrained by a +GBNF grammar so the model can ONLY emit a valid label. """ import logging import os -import threading -from typing import Any, Optional -import torch -import torch.nn as nn +from engines.local_slm import LocalSLMEngine logger = logging.getLogger(__name__) @@ -31,7 +23,7 @@ ROUTE_API_LOGIC = "API_LOGIC" ROUTE_API_LONG = "API_LONG_CONTEXT" -ROUTES_MAP = [ +_LABELS = [ ROUTE_LOCAL_SENTIMENT, ROUTE_LOCAL_NER, ROUTE_LOCAL_GENERAL, @@ -40,113 +32,64 @@ ROUTE_API_LOGIC, ] -_MODEL_NAME = os.path.join(os.path.dirname(os.path.dirname(__file__)), "models", "all-MiniLM-L6-v2") _LONG_CONTEXT_THRESHOLD = 6000 # chars; above this → API_LONG to avoid CPU OOM -WEIGHTS_PATH = os.path.join(os.path.dirname(__file__), "supervised_model.pt") +_SYSTEM_PROMPT = ( + "You are a task router. Read the user task and output EXACTLY ONE label " + "describing its type. Definitions:\n" + "LOCAL_SENTIMENT = classify sentiment or emotion of text.\n" + "LOCAL_NER = extract named entities (people, places, organizations, dates).\n" + "LOCAL_GENERAL = factual knowledge question, definition, or summarization request.\n" + "API_MATH = arithmetic calculation or math word problem that needs a numeric answer.\n" + "API_CODE = write, generate, fix, or debug programming code.\n" + "API_LOGIC = logical reasoning puzzle, deduction, or constraint problem.\n" + "Examples:\n" + "Q: What is the capital of France? → LOCAL_GENERAL\n" + "Q: What is the boiling point of water in degrees Celsius? → LOCAL_GENERAL\n" + "Q: Who wrote 'One Hundred Years of Solitude'? → LOCAL_GENERAL\n" + "Q: Classify the sentiment of this review → LOCAL_SENTIMENT\n" + "Q: Extract named entities from this text → LOCAL_NER\n" + "Q: Calculate 342 * 12 → API_MATH\n" + "Q: Write a Python function to sort a list → API_CODE\n" + "Q: If A is taller than B and B is taller than C, is A taller than C? → API_LOGIC\n" + "Output only the label, nothing else." +) + +# GBNF grammar forces output to be one of the valid route labels. +_GRAMMAR_STR = "root ::= " + " | ".join(f'"{label}"' for label in _LABELS) + +_grammar = None + + +def _get_grammar(): + global _grammar + if _grammar is None: + from llama_cpp import LlamaGrammar + + _grammar = LlamaGrammar.from_string(_GRAMMAR_STR) + return _grammar -class LinearClassifier(nn.Module): - def __init__(self, input_dim: int, num_classes: int): - super().__init__() - # Simple MLP head: 384 -> 64 -> 6 classes - self.net = nn.Sequential(nn.Linear(input_dim, 64), nn.ReLU(), nn.Dropout(0.1), nn.Linear(64, num_classes)) - def forward(self, x: Any) -> Any: - return self.net(x) - - -class SemanticClassifier: - """ - Loads all-MiniLM-L6-v2 and the trained PyTorch classification head. - Performs fast, offline inference by passing the prompt embedding through the MLP. - """ - - _instance: Optional["SemanticClassifier"] = None - _init_lock: threading.Lock = threading.Lock() # guards concurrent thread-pool callers - - @classmethod - def get_instance(cls) -> "SemanticClassifier": - if cls._instance is None: - with cls._init_lock: # only one thread enters at a time - if cls._instance is None: # re-check inside lock (double-checked locking) - logger.info("Initializing SemanticClassifier (loading model & PyTorch head)...") - cls._instance = cls() - return cls._instance - - def __init__(self) -> None: - try: - from sentence_transformers import SentenceTransformer - except ImportError as exc: - raise ImportError("sentence-transformers is required. " "Run: pip install sentence-transformers") from exc - - self.encoder = SentenceTransformer(_MODEL_NAME) - self.model = LinearClassifier(input_dim=384, num_classes=len(ROUTES_MAP)) - - if os.path.exists(WEIGHTS_PATH): - logger.info(f"Loading supervised weights from {WEIGHTS_PATH}") - self.model.load_state_dict(torch.load(WEIGHTS_PATH, map_location="cpu")) - else: - # Fallback if weights not found: check if task.json exists to auto-train - task_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "tests", "fixtures", "task.json") - if os.path.exists(task_path): - logger.warning(f"Supervised weights not found at {WEIGHTS_PATH}. Auto-training from {task_path}...") - self._train_from_data(task_path) - else: - logger.error(f"Supervised weights not found at {WEIGHTS_PATH} and no training data found. Using untrained weights.") - - self.model.eval() - - def _train_from_data(self, data_path: str) -> None: - import json - - import torch.optim as optim - - with open(data_path, encoding="utf-8") as f: - tasks = json.load(f) - - prompts = [t["prompt"] for t in tasks] - labels = [ROUTES_MAP.index(t["expected_route"]) for t in tasks] - - embeddings = self.encoder.encode(prompts, convert_to_tensor=True).cpu() - labels_tensor = torch.tensor(labels, dtype=torch.long) - - criterion = nn.CrossEntropyLoss() - optimizer = optim.AdamW(self.model.parameters(), lr=0.01, weight_decay=0.01) - - self.model.train() - for _ in range(150): - optimizer.zero_grad() - outputs = self.model(embeddings) - loss = criterion(outputs, labels_tensor) - loss.backward() - optimizer.step() - - torch.save(self.model.state_dict(), WEIGHTS_PATH) - logger.info(f"Successfully trained and saved new classifier weights to {WEIGHTS_PATH}!") - - def classify(self, prompt: str) -> str: - prompt_emb = self.encoder.encode(prompt, convert_to_tensor=True).cpu() - with torch.no_grad(): - logits = self.model(prompt_emb.unsqueeze(0)) - pred_idx = int(logits.argmax(dim=1).item()) - return ROUTES_MAP[pred_idx] - - -# --------------------------------------------------------------------------- -# Public API — drop-in replacement for the old classify() -# --------------------------------------------------------------------------- def classify(prompt: str) -> str: """ Classify a prompt into one of the routing destinations. """ - # --- Override: Long context --- if len(prompt) > _LONG_CONTEXT_THRESHOLD: logger.debug("Classifier: long context (%d chars) → %s", len(prompt), ROUTE_API_LONG) return ROUTE_API_LONG - classifier = SemanticClassifier.get_instance() - - # --- Execute Supervised PyTorch Classification --- - route = classifier.classify(prompt) - logger.debug("Classifier: supervised PyTorch → %s", route) - return route + engine = LocalSLMEngine.get_instance() + raw = engine.generate( + prompt=f"Task:\n{prompt}\n\nLabel:", + system_prompt=_SYSTEM_PROMPT, + max_tokens=8, + temperature=0.0, + grammar=_get_grammar(), + ).strip() + + if raw in _LABELS: + logger.debug("Classifier: LLM → %s", raw) + return raw + + logger.warning("Classifier: invalid LLM label '%s' → fallback LOCAL_GENERAL", raw) + return ROUTE_LOCAL_GENERAL diff --git a/agent/router.py b/agent/router.py index ca19ca8..828b9b4 100644 --- a/agent/router.py +++ b/agent/router.py @@ -3,8 +3,8 @@ 4-Layer AgentRouter Layer 1a: Semantic Cache (0 tokens) Layer 1b: AST Math Evaluator (0 tokens, deterministic) - Layer 2: Weighted Scoring Classifier (~0ms, no model) - Layer 3: Local SLM — Qwen2.5 via llama.cpp + Layer 2: LLM Classifier (local Qwen, grammar-constrained, 0 tokens) + Layer 3: Local SLM — Qwen2.5-3B via llama.cpp (serialized by engine lock) Layer 4: Remote Fireworks API (category-aware model + prompt compression) """ @@ -79,7 +79,9 @@ async def route(self, task_id: str, prompt: str) -> str: return math_result # ------------------------------------------------------------------- - # Layer 2: Weighted Classifier (offloaded to thread pool) + # Layer 2: LLM Classifier (offloaded to thread pool — local llama.cpp + # call is synchronous; offloading keeps the event loop responsive so + # concurrent API tasks can progress while classification runs). # ------------------------------------------------------------------- loop = asyncio.get_running_loop() route = await loop.run_in_executor(None, classify, prompt) @@ -94,16 +96,22 @@ async def route(self, task_id: str, prompt: str) -> str: async def _dispatch(self, task_id: str, prompt: str, route: str) -> str: try: + loop = asyncio.get_running_loop() # ---- Local routes ---- + # Local handlers are synchronous llama.cpp calls. They are serialized + # by the engine's internal lock, so we offload each to a worker thread + # via run_in_executor — this lets remote API tasks (and other local + # tasks waiting for the lock) keep the event loop alive instead of + # freezing it for the duration of one local generation. if route == ROUTE_LOCAL_SENTIMENT: - res = self._sentiment.handle(prompt) + res = await loop.run_in_executor(None, self._sentiment.handle, prompt) if res == "__ESCALATE__": logger.info("[%s] Sentiment escalated → remote", task_id) res = await self._remote_general.handle(prompt, category=ROUTE_LOCAL_SENTIMENT) return res if route == ROUTE_LOCAL_NER: - res = self._ner.handle(prompt) + res = await loop.run_in_executor(None, self._ner.handle, prompt) if res == "__ESCALATE__": logger.info("[%s] NER escalated → remote", task_id) res = await self._remote_general.handle(prompt, category=ROUTE_LOCAL_NER) @@ -112,9 +120,9 @@ async def _dispatch(self, task_id: str, prompt: str, route: str) -> str: if route == ROUTE_LOCAL_GENERAL: p = prompt.lower() if any(w in p for w in ["summarize", "summary", "tldr"]): - res = self._summarization.handle(prompt) + res = await loop.run_in_executor(None, self._summarization.handle, prompt) else: - res = self._factual.handle(prompt) + res = await loop.run_in_executor(None, self._factual.handle, prompt) if res == "__ESCALATE__": logger.info("[%s] Local general escalated → remote", task_id) res = await self._remote_general.handle(prompt, category=ROUTE_LOCAL_GENERAL) diff --git a/agent/supervised_model.pt b/agent/supervised_model.pt deleted file mode 100644 index b06ef72dd6a795cff47c9d82c49d12f467ac7c7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 102711 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¥kwuEcWytKPvP> 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 z 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 diff --git a/engines/local_slm.py b/engines/local_slm.py index 413d871..f4cfd0b 100644 --- a/engines/local_slm.py +++ b/engines/local_slm.py @@ -1,5 +1,6 @@ import logging import os +import threading from typing import Any, Optional from llama_cpp import Llama @@ -9,12 +10,15 @@ class LocalSLMEngine: _instance: Optional["LocalSLMEngine"] = None + _init_lock = threading.Lock() @classmethod def get_instance(cls) -> "LocalSLMEngine": if cls._instance is None: - model_path = os.environ.get("LOCAL_MODEL_PATH", "models/qwen2.5-1.5b-instruct-q4_k_m.gguf") - cls._instance = cls(model_path=model_path) + with cls._init_lock: + if cls._instance is None: + model_path = os.environ.get("LOCAL_MODEL_PATH", "models/qwen2.5-3b-instruct-q4_k_m.gguf") + cls._instance = cls(model_path=model_path) return cls._instance def __init__(self, model_path: str) -> None: @@ -31,6 +35,11 @@ def __init__(self, model_path: str) -> None: logger.info(f"Parameters: n_ctx={n_ctx}, n_threads={n_threads}, n_gpu_layers={n_gpu_layers}") self.model = Llama(model_path=model_path, n_ctx=n_ctx, n_threads=n_threads, n_gpu_layers=n_gpu_layers, verbose=False) + # A single llama.cpp context is NOT safe for concurrent callers (the + # classifier and the local handlers all share this one model). This lock + # serializes every generate() call. Callers offload to worker threads so + # waiting on this lock never freezes the asyncio event loop. + self._call_lock = threading.Lock() def generate(self, prompt: str, system_prompt: str = "", max_tokens: int = 250, temperature: float = 0.1, grammar: Any = None) -> str: # Format using Qwen2.5 Chat Template @@ -39,14 +48,15 @@ def generate(self, prompt: str, system_prompt: str = "", max_tokens: int = 250, formatted_prompt += f"<|im_start|>system\n{system_prompt}<|im_end|>\n" formatted_prompt += f"<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n" - response = self.model( - formatted_prompt, - max_tokens=max_tokens, - temperature=temperature, - stop=["<|im_end|>", "<|im_start|>", "assistant\n"], - echo=False, - grammar=grammar, - ) + with self._call_lock: + response = self.model( + formatted_prompt, + max_tokens=max_tokens, + temperature=temperature, + stop=["<|im_end|>", "<|im_start|>", "assistant\n"], + echo=False, + grammar=grammar, + ) if not isinstance(response, dict): raise ValueError("Expected dictionary response from Llama model") diff --git a/main.py b/main.py index 49e4c9b..e1fb43a 100644 --- a/main.py +++ b/main.py @@ -12,7 +12,7 @@ from dotenv import load_dotenv from agent.cache import SemanticCache -from agent.classifier import SemanticClassifier +from agent.classifier import classify from agent.router import AgentRouter from agent.schemas import Task from agent.watchdog import Watchdog @@ -58,9 +58,14 @@ async def main() -> None: logger.info("Initializing agent components (GGUF + classifier)...") _cache = SemanticCache() _router = AgentRouter(cache=_cache) - # Pre-warm SemanticClassifier in the main thread so run_in_executor - # workers never race to load multiple SentenceTransformer instances. - SemanticClassifier.get_instance() + # Pre-warm the LLM classifier with one trivial call. The local model is + # already loaded by AgentRouter's handlers; this just primes the + # grammar object and the llama.cpp sampler cache so the first real task + # does not pay a cold-start tax. Safe to fail — real tasks still route. + try: + classify("warmup") + except Exception as exc: + logger.warning("Classifier warmup failed: %s", exc) logger.info("Initialization complete — starting task processing.") if _lock is None: _lock = asyncio.Lock() diff --git a/requirements.txt b/requirements.txt index 11dbb7c..6bd07bb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,6 +14,7 @@ python-dotenv==1.0.1 # Retry logic tenacity==8.3.0 -# Semantic classifier — zero-shot, runs local, 0 Fireworks tokens -# torch (CPU-only) is installed separately in Dockerfile to avoid CUDA wheels (~2.5 GB) -sentence-transformers>=2.7.0 +# Local LLM runtime (CPU). The classifier uses this same GGUF model — no +# torch / sentence-transformers / embedding model required. +# llama-cpp-python is installed separately (Dockerfile CPU wheel) to avoid +# building from source. diff --git a/scripts/setup.sh b/scripts/setup.sh index 9979617..9464fa8 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -47,10 +47,6 @@ info "Virtual environment activated ✓" info "Upgrade pip..." pip install --quiet --upgrade pip -# --- Cài torch CPU-only trước (tránh pull CUDA wheels 2.5 GB) --- -info "Cài torch CPU-only (~700 MB, có thể mất vài phút)..." -pip install --quiet torch --extra-index-url https://download.pytorch.org/whl/cpu - # --- Cài requirements.txt --- info "Cài dependencies từ requirements.txt..." pip install --quiet -r requirements.txt @@ -60,15 +56,6 @@ info "Cài llama-cpp-python (CPU wheel)..." pip install --quiet llama-cpp-python \ --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu -# --- Pre-cache sentence-transformer model --- -info "Pre-cache sentence-transformer model (all-MiniLM-L6-v2 ~90 MB)..." -python3 -c " -from sentence_transformers import SentenceTransformer -print(' Downloading all-MiniLM-L6-v2...') -SentenceTransformer('all-MiniLM-L6-v2') -print(' Model cached ✓') -" 2>/dev/null - # --- Download Qwen2.5-3B GGUF model --- info "Kiểm tra model weights Qwen2.5-3B..." MODEL_PATH="models/qwen2.5-3b-instruct-q4_k_m.gguf" diff --git a/scripts/test_local.py b/scripts/test_local.py index c4424f4..1d03027 100644 --- a/scripts/test_local.py +++ b/scripts/test_local.py @@ -17,7 +17,7 @@ # Suppress noisy logs — chỉ show ERROR logging.basicConfig(level=logging.ERROR) -os.environ.setdefault("LOCAL_MODEL_PATH", "models/qwen2.5-1.5b-instruct-q4_k_m.gguf") +os.environ.setdefault("LOCAL_MODEL_PATH", "models/qwen2.5-3b-instruct-q4_k_m.gguf") os.environ.setdefault("LOCAL_N_CTX", "2048") os.environ.setdefault("LOCAL_N_THREADS", "2") os.environ.setdefault("LOCAL_N_GPU_LAYERS", "0") @@ -60,7 +60,7 @@ print(f" Input: {INPUT_FILE}") print("=" * 70) print() -print("⏳ Đang load Qwen2.5-3B + SemanticClassifier...") +print("⏳ Đang load Qwen2.5-3B (LLM classifier + local handlers)...") t0 = time.time() engine = LocalSLMEngine.get_instance() load_time = time.time() - t0 diff --git a/scripts/uv_python/setup_uv.sh b/scripts/uv_python/setup_uv.sh index b1ef68e..ec0017b 100644 --- a/scripts/uv_python/setup_uv.sh +++ b/scripts/uv_python/setup_uv.sh @@ -56,10 +56,6 @@ else fi info "Virtual environment activated ✓" -# --- Install torch CPU-only first (to avoid pulling CUDA wheels ~2.5 GB) --- -info "Installing torch CPU-only (~700 MB, this may take a few minutes)..." -uv pip install --quiet torch --extra-index-url https://download.pytorch.org/whl/cpu - # --- Install requirements.txt --- info "Installing dependencies from requirements.txt..." uv pip install --quiet -r requirements.txt @@ -69,15 +65,6 @@ info "Installing llama-cpp-python (CPU wheel)..." uv pip install --quiet llama-cpp-python \ --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu -# --- Pre-cache sentence-transformer model --- -info "Pre-caching sentence-transformer model (all-MiniLM-L6-v2 ~90 MB)..." -python3 -c " -from sentence_transformers import SentenceTransformer -print(' Downloading all-MiniLM-L6-v2...') -SentenceTransformer('all-MiniLM-L6-v2') -print(' Model cached ✓') -" 2>/dev/null || warn "Could not pre-cache model automatically. It will download on first run." - # --- Download Qwen2.5-3B GGUF model --- info "Checking Qwen2.5-3B model weights..." MODEL_PATH="models/qwen2.5-3b-instruct-q4_k_m.gguf" diff --git a/tests/fixtures/task.json b/tests/fixtures/task.json deleted file mode 100644 index 21d58af..0000000 --- a/tests/fixtures/task.json +++ /dev/null @@ -1,18362 +0,0 @@ -[ - { - "task_id": "task-0001", - "prompt": "Write code to implement: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0002", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0003", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0004", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0005", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0006", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0007", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0008", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0009", - "prompt": "List all the entities and their types from the text below.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0010", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0011", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0012", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0013", - "prompt": "Write code to implement: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0014", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0015", - "prompt": "What is the capital of India, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0016", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0017", - "prompt": "Calculate the exact value: 426 + 88.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0018", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0019", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0020", - "prompt": "Calculate the exact value: ((472 / 28) / 30) * 9.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0021", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0022", - "prompt": "What is the distance from the Earth to the Sun in astronomical units, and how long does light take to travel it? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0023", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0024", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0025", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0026", - "prompt": "Classify the sentiment of this text: 'Terrible service. Food took over an hour to arrive, and it was cold when it did.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0027", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0028", - "prompt": "Classify the sentiment of this text: 'The screen cracked on the first day after a minor drop, and customer support refused to replace it.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0029", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0030", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0031", - "prompt": "Which river is the longest in North America, and which countries does it flow through? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0032", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0033", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0034", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0035", - "prompt": "This code has an issue: Out of bounds error when high = len(arr). Should be len(arr) - 1.. Fix it:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0036", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0037", - "prompt": "Find and fix the bug in this Python function:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0038", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0039", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0040", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0041", - "prompt": "Classify the sentiment of this text: 'The battery life is absolutely incredible, lasting over two days of heavy use, and the display is gorgeous.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0042", - "prompt": "List all the entities and their types from the text below.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0043", - "prompt": "List all the entities and their types from the text below.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0044", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0045", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0046", - "prompt": "Classify the sentiment of this text: 'The delivery took a normal amount of time. The packaging was fine.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0047", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0048", - "prompt": "Calculate the exact value: 40 * (98 / 47).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0049", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0050", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0051", - "prompt": "Who was the first president of Brazil, and in what year did they take office? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0052", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0053", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0054", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0055", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0056", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0057", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0058", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0059", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0060", - "prompt": "A store sells shirts for $27 and pants for $38. If a customer buys 5 items in total and spends $454, how many shirts did they buy? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0061", - "prompt": "Identify the bug in this function and return the corrected code:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0062", - "prompt": "What is the highest mountain in the Himalayas, and what is its elevation? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0063", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0064", - "prompt": "Calculate the exact value: 367 * 49.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0065", - "prompt": "A store sells shirts for $27 and pants for $36. If a customer buys 11 items in total and spends $494, how many shirts did they buy? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0066", - "prompt": "A train leaves Station A traveling at 51 mph. 2 hours later, another train leaves Station A traveling in the same direction at 75 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0067", - "prompt": "What is the capital of Mexico, and what is its official currency? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0068", - "prompt": "In which year did the Battle of {battle} take place, and who were the primary combatants? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0069", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0070", - "prompt": "Who wrote the novel '1984', and in what year was it published? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0071", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0072", - "prompt": "Who was the first president of South Africa, and in what year did they take office? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0073", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0074", - "prompt": "Explain the process of fermentation in plants or animals. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0075", - "prompt": "Write code to implement: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0076", - "prompt": "A store sells shirts for $25 and pants for $45. If a customer buys 10 items in total and spends $324, how many shirts did they buy? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0077", - "prompt": "Write code to implement: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0078", - "prompt": "This code has an issue: Does not reverse the string, just copies it. Should prepend: reversed = char + reversed.. Fix it:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0079", - "prompt": "List all the entities and their types from the text below.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0080", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0081", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0082", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0083", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0084", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0085", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0086", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0087", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0088", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0089", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0090", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0091", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0092", - "prompt": "This code has an issue: Infinite recursion. Should call factorial(n - 1).. Fix it:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0093", - "prompt": "Classify the sentiment of this text: 'A masterpiece of cinema. The acting was superb and the soundtrack was breathtaking.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0094", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0095", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0096", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0097", - "prompt": "Who was the first president of Brazil, and in what year did they take office? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0098", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0099", - "prompt": "What is the capital of Argentina, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0100", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0101", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0102", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0103", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0104", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0105", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0106", - "prompt": "What is the chemical formula for ethanol, and what are its common uses? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0107", - "prompt": "This code has an issue: Out of bounds error when high = len(arr). Should be len(arr) - 1.. Fix it:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0108", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0109", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0110", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0111", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0112", - "prompt": "Calculate the exact value: (375 * 51) - 2.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0113", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0114", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0115", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0116", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0117", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0118", - "prompt": "Explain the significance of the Treaty of Versailles signed in 1919. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0119", - "prompt": "Find and fix the bug in this Python function:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0120", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0121", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0122", - "prompt": "What is the highest mountain in the Rocky Mountains, and what is its elevation? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0123", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0124", - "prompt": "What is the highest mountain in the Andes, and what is its elevation? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0125", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0126", - "prompt": "A train leaves Station A traveling at 52 mph. 3 hours later, another train leaves Station A traveling in the same direction at 80 mph. How long will it take the second train to overtake the first? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0127", - "prompt": "Who wrote the novel 'Moby Dick', and in what year was it published? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0128", - "prompt": "If the price of an item increases from $65 to $281, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0129", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0130", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0131", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0132", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0133", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0134", - "prompt": "A company has 640 employees. If 10% of them work remotely, and the rest work in-office, how many employees work in-office? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0135", - "prompt": "Who wrote the novel 'Moby Dick', and in what year was it published? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0136", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0137", - "prompt": "Classify the sentiment of this text: 'A masterpiece of cinema. The acting was superb and the soundtrack was breathtaking.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0138", - "prompt": "An investor deposits $8816 in a savings account with 6% annual interest compounded annually. What will the balance be after 6 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0139", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0140", - "prompt": "Write code to implement: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0141", - "prompt": "Find and fix the bug in this Python function:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0142", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0143", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0144", - "prompt": "List all the entities and their types from the text below.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0145", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0146", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0147", - "prompt": "Calculate the exact value: 339 - (37 - 49).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0148", - "prompt": "Find and fix the bug in this Python function:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0149", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0150", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0151", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0152", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0153", - "prompt": "This code has an issue: Does not reverse the string, just copies it. Should prepend: reversed = char + reversed.. Fix it:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0154", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0155", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0156", - "prompt": "What is the distance from the Earth to the Sun in astronomical units, and how long does light take to travel it? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0157", - "prompt": "Calculate the exact value: 101 - 19.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0158", - "prompt": "This code has an issue: Does not reverse the string, just copies it. Should prepend: reversed = char + reversed.. Fix it:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0159", - "prompt": "Classify the sentiment of this text: 'The screen cracked on the first day after a minor drop, and customer support refused to replace it.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0160", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0161", - "prompt": "Find and fix the bug in this Python function:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0162", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0163", - "prompt": "Calculate the exact value: 99 * 19 - 46 / 2.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0164", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0165", - "prompt": "What is the capital of Spain, and what is its official currency? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0166", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0167", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0168", - "prompt": "What is the distance from the Earth to the Sun in miles, and how long does light take to travel it? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0169", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0170", - "prompt": "Explain the process of mitosis in plants or animals. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0171", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0172", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0173", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0174", - "prompt": "Classify the sentiment of this text: 'This software is full of bugs and crashes constantly. Save your money and look elsewhere.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0175", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0176", - "prompt": "If a rectangle has a perimeter of 166 meters and its length is 3 times its width, what is the area of the rectangle? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0177", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0178", - "prompt": "In which year did the Battle of {battle} take place, and who were the primary combatants? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0179", - "prompt": "Find and fix the bug in this Python function:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0180", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0181", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0182", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0183", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0184", - "prompt": "If a rectangle has a perimeter of 45 meters and its length is 2 times its width, what is the area of the rectangle? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0185", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0186", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0187", - "prompt": "A train leaves Station A traveling at 53 mph. 4 hours later, another train leaves Station A traveling in the same direction at 89 mph. How long will it take the second train to overtake the first? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0188", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0189", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0190", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0191", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0192", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0193", - "prompt": "Classify the sentiment of this text: 'The battery life is absolutely incredible, lasting over two days of heavy use, and the display is gorgeous.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0194", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0195", - "prompt": "A store sells shirts for $29 and pants for $59. If a customer buys 10 items in total and spends $208, how many shirts did they buy? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0196", - "prompt": "Explain the process of mitosis in plants or animals. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0197", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0198", - "prompt": "An investor deposits $1096 in a savings account with 9% annual interest compounded annually. What will the balance be after 4 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0199", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0200", - "prompt": "Calculate the exact value: (233 * 72) + 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0201", - "prompt": "A company has 782 employees. If 75% of them work remotely, and the rest work in-office, how many employees work in-office? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0202", - "prompt": "Classify the sentiment of this text: 'Terrible service. Food took over an hour to arrive, and it was cold when it did.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0203", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0204", - "prompt": "Calculate the exact value: (258 / 38) / 50.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0205", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0206", - "prompt": "A train leaves Station A traveling at 41 mph. 2 hours later, another train leaves Station A traveling in the same direction at 75 mph. How long will it take the second train to overtake the first? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0207", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0208", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0209", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0210", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0211", - "prompt": "Classify the sentiment of this text: 'The customer service team went above and beyond to replace my lost item free of charge. Highly recommend!'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0212", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0213", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0214", - "prompt": "What is the distance from the Earth to the Sun in kilometers, and how long does light take to travel it? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0215", - "prompt": "Classify the sentiment of this text: 'This software is full of bugs and crashes constantly. Save your money and look elsewhere.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0216", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0217", - "prompt": "Write a Python function for: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0218", - "prompt": "A train leaves Station A traveling at 62 mph. 2 hours later, another train leaves Station A traveling in the same direction at 86 mph. How long will it take the second train to overtake the first? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0219", - "prompt": "A train leaves Station A traveling at 46 mph. 2 hours later, another train leaves Station A traveling in the same direction at 75 mph. How long will it take the second train to overtake the first? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0220", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0221", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0222", - "prompt": "Who was the first president of the United States, and in what year did they take office? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0223", - "prompt": "Explain the significance of the Treaty of Tordesillas signed in 1494. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0224", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0225", - "prompt": "Calculate the exact value: 144 + (85 - 30).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0226", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0227", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0228", - "prompt": "This code has an issue: Does not reverse the string, just copies it. Should prepend: reversed = char + reversed.. Fix it:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0229", - "prompt": "A train leaves Station A traveling at 40 mph. 3 hours later, another train leaves Station A traveling in the same direction at 86 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0230", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0231", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0232", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0233", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0234", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0235", - "prompt": "Classify the sentiment of this text: 'Outstanding performance! The device is lightning fast and handles heavy multitasking easily.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0236", - "prompt": "Identify the bug in this function and return the corrected code:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0237", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0238", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0239", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0240", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0241", - "prompt": "What is the chemical formula for sodium bicarbonate, and what are its common uses? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0242", - "prompt": "Calculate the exact value: 262 + (84 / 6).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0243", - "prompt": "List all the entities and their types from the text below.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0244", - "prompt": "List all the entities and their types from the text below.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0245", - "prompt": "A train leaves Station A traveling at 44 mph. 4 hours later, another train leaves Station A traveling in the same direction at 85 mph. How long will it take the second train to overtake the first? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0246", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0247", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0248", - "prompt": "Identify the bug in this function and return the corrected code:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0249", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0250", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0251", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0252", - "prompt": "Write a Python function for: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0253", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0254", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0255", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0256", - "prompt": "Calculate the exact value: 276 + (48 / 17).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0257", - "prompt": "Calculate the exact value: 366 / (99 - 35).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0258", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0259", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0260", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0261", - "prompt": "Calculate the exact value: 435 * 90 - 19 / 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0262", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0263", - "prompt": "Which river is the longest in Africa, and which countries does it flow through? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0264", - "prompt": "Who wrote the novel 'The Great Gatsby', and in what year was it published? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0265", - "prompt": "Identify the bug in this function and return the corrected code:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0266", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0267", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0268", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0269", - "prompt": "Identify the bug in this function and return the corrected code:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0270", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0271", - "prompt": "A train leaves Station A traveling at 58 mph. 2 hours later, another train leaves Station A traveling in the same direction at 81 mph. How long will it take the second train to overtake the first? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0272", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0273", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0274", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0275", - "prompt": "Calculate the exact value: 363 + 66.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0276", - "prompt": "This code has an issue: Out of bounds error when high = len(arr). Should be len(arr) - 1.. Fix it:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0277", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0278", - "prompt": "Identify the bug in this function and return the corrected code:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0279", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0280", - "prompt": "Find and fix the bug in this Python function:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0281", - "prompt": "Classify the sentiment of this text: 'Outstanding performance! The device is lightning fast and handles heavy multitasking easily.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0282", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0283", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0284", - "prompt": "Calculate the exact value: 73 / (99 + 33).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0285", - "prompt": "List all the entities and their types from the text below.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0286", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0287", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0288", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0289", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0290", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0291", - "prompt": "Explain the process of transpiration in plants or animals. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0292", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0293", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0294", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0295", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0296", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0297", - "prompt": "Identify the bug in this function and return the corrected code:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0298", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0299", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0300", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0301", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0302", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0303", - "prompt": "An investor deposits $8090 in a savings account with 10% annual interest compounded annually. What will the balance be after 6 years? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0304", - "prompt": "What is the chemical formula for sodium bicarbonate, and what are its common uses? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0305", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0306", - "prompt": "Calculate the exact value: 203 / (65 - 16).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0307", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0308", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0309", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0310", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0311", - "prompt": "A train leaves Station A traveling at 70 mph. 2 hours later, another train leaves Station A traveling in the same direction at 82 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0312", - "prompt": "Identify the bug in this function and return the corrected code:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0313", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0314", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0315", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0316", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0317", - "prompt": "Classify the sentiment of this text: 'Outstanding performance! The device is lightning fast and handles heavy multitasking easily.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0318", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0319", - "prompt": "Find and fix the bug in this Python function:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0320", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0321", - "prompt": "Who wrote the novel '1984', and in what year was it published? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0322", - "prompt": "Write a Python function for: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0323", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0324", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0325", - "prompt": "This code has an issue: Infinite recursion. Should call factorial(n - 1).. Fix it:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0326", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0327", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0328", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0329", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0330", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0331", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0332", - "prompt": "What is the distance from the Earth to the Sun in miles, and how long does light take to travel it? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0333", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0334", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0335", - "prompt": "A water tank can be filled by Pipe A in 4 hours and by Pipe B in 8 hours. How long will it take to fill the tank if both pipes are open simultaneously? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0336", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0337", - "prompt": "Calculate the exact value: 291 * 71 - 45 / 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0338", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0339", - "prompt": "A store sells shirts for $29 and pants for $35. If a customer buys 12 items in total and spends $204, how many shirts did they buy? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0340", - "prompt": "Calculate the exact value: (89 + 6) + 38.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0341", - "prompt": "Classify the sentiment of this text: 'This software is full of bugs and crashes constantly. Save your money and look elsewhere.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0342", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0343", - "prompt": "Calculate the exact value: 376 * 47 - 17 / 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0344", - "prompt": "This code has an issue: Out of bounds error when high = len(arr). Should be len(arr) - 1.. Fix it:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0345", - "prompt": "Write a Python function for: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0346", - "prompt": "A water tank can be filled by Pipe A in 5 hours and by Pipe B in 4 hours. How long will it take to fill the tank if both pipes are open simultaneously? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0347", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0348", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0349", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0350", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0351", - "prompt": "Explain the significance of the Treaty of Versailles signed in 1919. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0352", - "prompt": "What is the distance from the Earth to the Sun in kilometers, and how long does light take to travel it? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0353", - "prompt": "Classify the sentiment of this text: 'Terrible service. Food took over an hour to arrive, and it was cold when it did.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0354", - "prompt": "Who wrote the novel 'The Great Gatsby', and in what year was it published? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0355", - "prompt": "What is the chemical formula for acetone, and what are its common uses? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0356", - "prompt": "Calculate the exact value: 257 + 93.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0357", - "prompt": "List all the entities and their types from the text below.\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0358", - "prompt": "Find and fix the bug in this Python function:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0359", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0360", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0361", - "prompt": "Calculate the exact value: ((499 / 46) / 17) * 4.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0362", - "prompt": "What is the primary function of the gallbladder in the human body? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0363", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0364", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0365", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0366", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0367", - "prompt": "Calculate the exact value: 90 - 53.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0368", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0369", - "prompt": "An investor deposits $1997 in a savings account with 10% annual interest compounded annually. What will the balance be after 5 years? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0370", - "prompt": "Calculate the exact value: 82 - 49.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0371", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0372", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0373", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0374", - "prompt": "What is the chemical formula for sodium bicarbonate, and what are its common uses? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0375", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0376", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0377", - "prompt": "List all the entities and their types from the text below.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0378", - "prompt": "What is the chemical formula for glucose, and what are its common uses? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0379", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0380", - "prompt": "Who wrote the novel 'Crime and Punishment', and in what year was it published? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0381", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0382", - "prompt": "Explain the process of photosynthesis in plants or animals. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0383", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0384", - "prompt": "List all the entities and their types from the text below.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0385", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0386", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0387", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0388", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0389", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0390", - "prompt": "Write a Python function for: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0391", - "prompt": "Explain the significance of the Treaty of Ghent signed in 1814. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0392", - "prompt": "A store sells shirts for $17 and pants for $51. If a customer buys 8 items in total and spends $388, how many shirts did they buy? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0393", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0394", - "prompt": "Who wrote the novel 'Pride and Prejudice', and in what year was it published? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0395", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0396", - "prompt": "Explain the significance of the Treaty of Ghent signed in 1814. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0397", - "prompt": "What is the distance from the Earth to the Sun in kilometers, and how long does light take to travel it? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0398", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0399", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0400", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0401", - "prompt": "What is the primary function of the liver in the human body? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0402", - "prompt": "What is the distance from the Earth to the Sun in miles, and how long does light take to travel it? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0403", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0404", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0405", - "prompt": "Classify the sentiment of this text: 'It works as advertised, nothing special but gets the basic job done.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0406", - "prompt": "This code has an issue: Infinite recursion. Should call factorial(n - 1).. Fix it:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0407", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0408", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0409", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0410", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0411", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0412", - "prompt": "Calculate the exact value: ((297 - 47) / 22) + 6.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0413", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0414", - "prompt": "An investor deposits $9788 in a savings account with 8% annual interest compounded annually. What will the balance be after 7 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0415", - "prompt": "Calculate the exact value: 377 + (82 - 26).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0416", - "prompt": "What is the chemical formula for glucose, and what are its common uses? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0417", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0418", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0419", - "prompt": "Explain the significance of the Treaty of Versailles signed in 1919. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0420", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0421", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0422", - "prompt": "What is the primary function of the spleen in the human body? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0423", - "prompt": "What is the primary function of the kidneys in the human body? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0424", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0425", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0426", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0427", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0428", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0429", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0430", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0431", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0432", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0433", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0434", - "prompt": "If a rectangle has a perimeter of 97 meters and its length is 4 times its width, what is the area of the rectangle? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0435", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0436", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0437", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0438", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0439", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0440", - "prompt": "Calculate the exact value: ((292 * 69) * 32) / 8.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0441", - "prompt": "Calculate the exact value: ((30 * 82) + 15) / 1.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0442", - "prompt": "Calculate the exact value: 77 * 50 - 15 / 7.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0443", - "prompt": "List all the entities and their types from the text below.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0444", - "prompt": "If a rectangle has a perimeter of 83 meters and its length is 2 times its width, what is the area of the rectangle? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0445", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0446", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0447", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0448", - "prompt": "Calculate the exact value: ((442 * 36) * 50) - 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0449", - "prompt": "Classify the sentiment of this text: 'The battery life is absolutely incredible, lasting over two days of heavy use, and the display is gorgeous.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0450", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0451", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0452", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0453", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0454", - "prompt": "List all the entities and their types from the text below.\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0455", - "prompt": "Who was the first president of Brazil, and in what year did they take office? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0456", - "prompt": "Which river is the longest in Europe, and which countries does it flow through? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0457", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0458", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0459", - "prompt": "Find and fix the bug in this Python function:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0460", - "prompt": "Calculate the exact value: 406 - 26.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0461", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0462", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0463", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0464", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0465", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0466", - "prompt": "An investor deposits $3598 in a savings account with 5% annual interest compounded annually. What will the balance be after 9 years? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0467", - "prompt": "Identify the bug in this function and return the corrected code:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0468", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0469", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0470", - "prompt": "Write a Python function for: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0471", - "prompt": "Calculate the exact value: ((99 / 44) * 28) + 1.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0472", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0473", - "prompt": "Classify the sentiment of this text: 'The customer service team went above and beyond to replace my lost item free of charge. Highly recommend!'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0474", - "prompt": "Classify the sentiment of this text: 'The customer service team went above and beyond to replace my lost item free of charge. Highly recommend!'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0475", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0476", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0477", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0478", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0479", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0480", - "prompt": "What is the primary function of the gallbladder in the human body? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0481", - "prompt": "Identify the bug in this function and return the corrected code:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0482", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0483", - "prompt": "A train leaves Station A traveling at 54 mph. 2 hours later, another train leaves Station A traveling in the same direction at 89 mph. How long will it take the second train to overtake the first? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0484", - "prompt": "Classify the sentiment of this text: 'Terrible service. Food took over an hour to arrive, and it was cold when it did.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0485", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0486", - "prompt": "List all the entities and their types from the text below.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0487", - "prompt": "Who was the first president of South Africa, and in what year did they take office? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0488", - "prompt": "Classify the sentiment of this text: 'The battery life is absolutely incredible, lasting over two days of heavy use, and the display is gorgeous.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0489", - "prompt": "A water tank can be filled by Pipe A in 3 hours and by Pipe B in 4 hours. How long will it take to fill the tank if both pipes are open simultaneously? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0490", - "prompt": "This code has an issue: Infinite recursion. Should call factorial(n - 1).. Fix it:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0491", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0492", - "prompt": "Who wrote the novel 'Pride and Prejudice', and in what year was it published? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0493", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0494", - "prompt": "What is the capital of Spain, and what is its official currency? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0495", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0496", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0497", - "prompt": "Which river is the longest in South America, and which countries does it flow through? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0498", - "prompt": "Classify the sentiment of this text: 'The customer service team went above and beyond to replace my lost item free of charge. Highly recommend!'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0499", - "prompt": "List all the entities and their types from the text below.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0500", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0501", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0502", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0503", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0504", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0505", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0506", - "prompt": "Classify the sentiment of this text: 'The screen cracked on the first day after a minor drop, and customer support refused to replace it.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0507", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0508", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0509", - "prompt": "What is the chemical formula for glucose, and what are its common uses? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0510", - "prompt": "An investor deposits $4307 in a savings account with 4% annual interest compounded annually. What will the balance be after 10 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0511", - "prompt": "Identify the bug in this function and return the corrected code:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0512", - "prompt": "This code has an issue: Infinite recursion. Should call factorial(n - 1).. Fix it:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0513", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0514", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0515", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0516", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0517", - "prompt": "If a rectangle has a perimeter of 47 meters and its length is 3 times its width, what is the area of the rectangle? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0518", - "prompt": "List all the entities and their types from the text below.\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0519", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0520", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0521", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0522", - "prompt": "Write code to implement: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0523", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0524", - "prompt": "What is the distance from the Earth to the Sun in miles, and how long does light take to travel it? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0525", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0526", - "prompt": "If a rectangle has a perimeter of 133 meters and its length is 4 times its width, what is the area of the rectangle? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0527", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0528", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0529", - "prompt": "Classify the sentiment of this text: 'The delivery took a normal amount of time. The packaging was fine.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0530", - "prompt": "List all the entities and their types from the text below.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0531", - "prompt": "Find and fix the bug in this Python function:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0532", - "prompt": "This code has an issue: Out of bounds error when high = len(arr). Should be len(arr) - 1.. Fix it:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0533", - "prompt": "A train leaves Station A traveling at 70 mph. 1 hours later, another train leaves Station A traveling in the same direction at 87 mph. How long will it take the second train to overtake the first? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0534", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0535", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0536", - "prompt": "What is the primary function of the gallbladder in the human body? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0537", - "prompt": "In which year did the Battle of {battle} take place, and who were the primary combatants? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0538", - "prompt": "This code has an issue: Fails for numbers <= 1, which are not prime. Should handle n <= 1.. Fix it:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0539", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0540", - "prompt": "In which year did the Battle of {battle} take place, and who were the primary combatants? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0541", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0542", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0543", - "prompt": "Find and fix the bug in this Python function:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0544", - "prompt": "Calculate the exact value: ((485 - 16) - 50) + 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0545", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0546", - "prompt": "Calculate the exact value: (315 - 25) * 2.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0547", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0548", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0549", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0550", - "prompt": "Classify the sentiment of this text: 'This software is full of bugs and crashes constantly. Save your money and look elsewhere.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0551", - "prompt": "Calculate the exact value: 207 - (46 / 43).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0552", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0553", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0554", - "prompt": "What is the primary function of the kidneys in the human body? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0555", - "prompt": "A train leaves Station A traveling at 70 mph. 1 hours later, another train leaves Station A traveling in the same direction at 82 mph. How long will it take the second train to overtake the first? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0556", - "prompt": "Who wrote the novel '1984', and in what year was it published? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0557", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0558", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0559", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0560", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0561", - "prompt": "List all the entities and their types from the text below.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0562", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0563", - "prompt": "Explain the process of photosynthesis in plants or animals. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0564", - "prompt": "A store sells shirts for $22 and pants for $54. If a customer buys 10 items in total and spends $350, how many shirts did they buy? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0565", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0566", - "prompt": "Find and fix the bug in this Python function:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0567", - "prompt": "Classify the sentiment of this text: 'It works as advertised, nothing special but gets the basic job done.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0568", - "prompt": "List all the entities and their types from the text below.\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0569", - "prompt": "Calculate the exact value: (198 + 24) - 41.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0570", - "prompt": "This code has an issue: Fails for numbers <= 1, which are not prime. Should handle n <= 1.. Fix it:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0571", - "prompt": "Classify the sentiment of this text: 'It works as advertised, nothing special but gets the basic job done.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0572", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0573", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0574", - "prompt": "Classify the sentiment of this text: 'It works as advertised, nothing special but gets the basic job done.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0575", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0576", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0577", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0578", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0579", - "prompt": "What is the highest mountain in Africa, and what is its elevation? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0580", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0581", - "prompt": "Explain the significance of the Treaty of Westphalia signed in 1648. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0582", - "prompt": "In which year did the Battle of {battle} take place, and who were the primary combatants? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0583", - "prompt": "What is the capital of Mexico, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0584", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0585", - "prompt": "Classify the sentiment of this text: 'The screen cracked on the first day after a minor drop, and customer support refused to replace it.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0586", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0587", - "prompt": "Who was the first president of Brazil, and in what year did they take office? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0588", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0589", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0590", - "prompt": "Classify the sentiment of this text: 'The customer service team went above and beyond to replace my lost item free of charge. Highly recommend!'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0591", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0592", - "prompt": "Calculate the exact value: (149 - 63) * 47.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0593", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0594", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0595", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0596", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0597", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0598", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0599", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0600", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0601", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0602", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0603", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0604", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0605", - "prompt": "Calculate the exact value: 201 + 29.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0606", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0607", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0608", - "prompt": "Calculate the exact value: (274 / 26) / 19.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0609", - "prompt": "A store sells shirts for $15 and pants for $49. If a customer buys 15 items in total and spends $374, how many shirts did they buy? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0610", - "prompt": "Identify the bug in this function and return the corrected code:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0611", - "prompt": "In which year did the Battle of {battle} take place, and who were the primary combatants? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0612", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0613", - "prompt": "What is the highest mountain in the Himalayas, and what is its elevation? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0614", - "prompt": "Write a Python function for: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0615", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0616", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0617", - "prompt": "Which river is the longest in North America, and which countries does it flow through? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0618", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0619", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0620", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0621", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0622", - "prompt": "Explain the process of cellular respiration in plants or animals. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0623", - "prompt": "This code has an issue: Infinite recursion. Should call factorial(n - 1).. Fix it:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0624", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0625", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0626", - "prompt": "Who was the first president of South Africa, and in what year did they take office? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0627", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0628", - "prompt": "This code has an issue: Does not reverse the string, just copies it. Should prepend: reversed = char + reversed.. Fix it:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0629", - "prompt": "Calculate the exact value: (182 + 52) * 23.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0630", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0631", - "prompt": "Write a Python function for: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0632", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0633", - "prompt": "Write a Python function for: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0634", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0635", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0636", - "prompt": "A water tank can be filled by Pipe A in 3 hours and by Pipe B in 6 hours. How long will it take to fill the tank if both pipes are open simultaneously? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0637", - "prompt": "This code has an issue: Infinite recursion. Should call factorial(n - 1).. Fix it:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0638", - "prompt": "A train leaves Station A traveling at 51 mph. 3 hours later, another train leaves Station A traveling in the same direction at 81 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0639", - "prompt": "Find and fix the bug in this Python function:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0640", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0641", - "prompt": "What is the highest mountain in the Andes, and what is its elevation? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0642", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0643", - "prompt": "Calculate the exact value: 109 + 25.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0644", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0645", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0646", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0647", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0648", - "prompt": "Write a Python function for: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0649", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0650", - "prompt": "Calculate the exact value: (37 - 25) - 13.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0651", - "prompt": "Explain the significance of the Treaty of Versailles signed in 1919. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0652", - "prompt": "This code has an issue: ZeroDivisionError when list is empty. Should return 0 or handle empty list.. Fix it:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0653", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0654", - "prompt": "Identify the bug in this function and return the corrected code:\ndef average(numbers):\n total = 0\n for num in numbers:\n total += num\n return total / len(numbers)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0655", - "prompt": "List all the entities and their types from the text below.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0656", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0657", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0658", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0659", - "prompt": "What is the highest mountain in the Alps, and what is its elevation? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0660", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0661", - "prompt": "Write a Python function for: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0662", - "prompt": "Write code to implement: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0663", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0664", - "prompt": "An investor deposits $5206 in a savings account with 6% annual interest compounded annually. What will the balance be after 4 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0665", - "prompt": "A company has 264 employees. If 40% of them work remotely, and the rest work in-office, how many employees work in-office? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0666", - "prompt": "Explain the process of mitosis in plants or animals. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0667", - "prompt": "What is the highest mountain in the Rocky Mountains, and what is its elevation? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0668", - "prompt": "This code has an issue: Does not reverse the string, just copies it. Should prepend: reversed = char + reversed.. Fix it:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0669", - "prompt": "Find and fix the bug in this Python function:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0670", - "prompt": "Calculate the exact value: 289 * 41 - 47 / 9.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0671", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0672", - "prompt": "Write code to implement: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0673", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Alice Smith will give a lecture at Harvard University in Cambridge, Massachusetts on October 12, 2026.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0674", - "prompt": "Identify the bug in this function and return the corrected code:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0675", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Marie Curie was born in Warsaw, Poland, and later moved to Paris, France to study at the Sorbonne.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0676", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0677", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0678", - "prompt": "Identify the bug in this function and return the corrected code:\ndef factorial(n):\n if n == 0:\n return 1\n return n * factorial(n)\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0679", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0680", - "prompt": "Classify the sentiment of this text: 'A masterpiece of cinema. The acting was superb and the soundtrack was breathtaking.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0681", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0682", - "prompt": "Classify the sentiment of this text: 'The material feels cheap, the fit is completely wrong, and it shrunk after one wash.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0683", - "prompt": "If the price of an item increases from $135 to $294, what is the percentage increase? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0684", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0685", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0686", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0687", - "prompt": "Find and fix the bug in this Python function:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0688", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0689", - "prompt": "Classify the sentiment of this text: 'The screen cracked on the first day after a minor drop, and customer support refused to replace it.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0690", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0691", - "prompt": "Identify the bug in this function and return the corrected code:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0692", - "prompt": "Classify the sentiment of this text: 'The screen cracked on the first day after a minor drop, and customer support refused to replace it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0693", - "prompt": "Who was the first president of Brazil, and in what year did they take office? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0694", - "prompt": "Classify the sentiment of this text: 'The delivery took a normal amount of time. The packaging was fine.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0695", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Tesla Inc. was founded by Martin Eberhard and Marc Tarpenning, with Elon Musk joining later as a major investor.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0696", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0697", - "prompt": "Write code to implement: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0698", - "prompt": "Classify the sentiment of this text: 'The delivery took a normal amount of time. The packaging was fine.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0699", - "prompt": "What is the distance from the Earth to the Sun in miles, and how long does light take to travel it? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0700", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0701", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0702", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0703", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0704", - "prompt": "Classify the sentiment of this text: 'This software is full of bugs and crashes constantly. Save your money and look elsewhere.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0705", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0706", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: On June 15, the United Nations Security Council met in New York City to discuss the peace treaty.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0707", - "prompt": "Calculate the exact value: ((234 - 25) + 2) - 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0708", - "prompt": "Write code to implement: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0709", - "prompt": "This code has an issue: Fails for numbers <= 1, which are not prime. Should handle n <= 1.. Fix it:\ndef is_prime(n):\n for i in range(2, n):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0710", - "prompt": "Calculate the exact value: 112 * 74 - 43 / 7.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0711", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0712", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0713", - "prompt": "What is the capital of Italy, and what is its official currency? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0714", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0715", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0716", - "prompt": "Classify the sentiment of this text: 'The customer service team went above and beyond to replace my lost item free of charge. Highly recommend!'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0717", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0718", - "prompt": "Classify the sentiment of this text: 'Outstanding performance! The device is lightning fast and handles heavy multitasking easily.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0719", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0720", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... Renewable energy technologies like solar, wind, and hydro are expanding rapidly... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0721", - "prompt": "A water tank can be filled by Pipe A in 3 hours and by Pipe B in 7 hours. How long will it take to fill the tank if both pipes are open simultaneously? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0722", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0723", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0724", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0725", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0726", - "prompt": "Write a Python function for: Write a Python function that parses a raw log line in Apache format and extracts the IP address, timestamp, and request URL.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0727", - "prompt": "Calculate the exact value: 479 + (91 / 11).", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0728", - "prompt": "Write a Python function for: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0729", - "prompt": "Which river is the longest in Europe, and which countries does it flow through? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0730", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0731", - "prompt": "Classify the sentiment of this text: 'The customer service team went above and beyond to replace my lost item free of charge. Highly recommend!'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0732", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0733", - "prompt": "What is the chemical formula for acetone, and what are its common uses? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0734", - "prompt": "What is the chemical formula for ethanol, and what are its common uses? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0735", - "prompt": "Develop a clean, efficient Python solution: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0736", - "prompt": "If a rectangle has a perimeter of 185 meters and its length is 2 times its width, what is the area of the rectangle? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0737", - "prompt": "This code has an issue: Out of bounds error when high = len(arr). Should be len(arr) - 1.. Fix it:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0738", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0739", - "prompt": "A drawer contains 10 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0740", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0741", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0742", - "prompt": "Identify the bug in this function and return the corrected code:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0743", - "prompt": "Who was the first president of the Republic of China, and in what year did they take office? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0744", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0745", - "prompt": "Calculate the exact value: ((51 / 95) + 13) - 7.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0746", - "prompt": "This code has an issue: Does not reverse the string, just copies it. Should prepend: reversed = char + reversed.. Fix it:\ndef reverse_string(s):\n reversed = ''\n for char in s:\n reversed = reversed + char\n return reversed\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0747", - "prompt": "List all the entities and their types from the text below.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0748", - "prompt": "Who was the first president of the United States, and in what year did they take office? (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0749", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0750", - "prompt": "A farmer has chickens and rabbits. If there are 35 heads and 94 legs, how many chickens and how many rabbits does he have? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0751", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... The history of space exploration began in the mid-20th century... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0752", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... The global economy is facing unprecedented challenges due to shifting trade routes... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0753", - "prompt": "What is the highest mountain in the Rocky Mountains, and what is its elevation? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0754", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0755", - "prompt": "What is the capital of France, and what is its official currency? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0756", - "prompt": "Write a Python function for: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0757", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... Machine learning is a subset of artificial intelligence focused on building systems... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0758", - "prompt": "Classify the sentiment of this text: 'This software is full of bugs and crashes constantly. Save your money and look elsewhere.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0759", - "prompt": "Calculate the exact value: ((318 / 85) - 9) * 10.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0760", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0761", - "prompt": "Write a short, high-level summary of the following text.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... The development of mRNA vaccines has revolutionized preventative medicine... ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0762", - "prompt": "Write a Python function for: Write a Python class representing a BankAccount with deposit, withdraw, and get_balance methods, preventing overdrafts.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0763", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0764", - "prompt": "Calculate the exact value: 337 * 68 - 49 / 9.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0765", - "prompt": "What is the primary function of the spleen in the human body? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0766", - "prompt": "Classify the sentiment of this text: 'The hotel was average. The room was clean, but the breakfast options were limited.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0767", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0768", - "prompt": "List all the entities and their types from the text below.\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0769", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0770", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Google LLC recently acquired a new AI startup named DeepMind in London, United Kingdom.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0771", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0772", - "prompt": "Write a Python function for: Write a Python function that uses a generator to yield Fibonacci numbers up to a given limit N.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0773", - "prompt": "Five people (A, B, C, D, E) are in a race. A finished before B but after C. D finished before E but after B. Who finished last? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0774", - "prompt": "Write code to implement: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0775", - "prompt": "Classify the sentiment of this text: 'An okay movie. It has some funny moments but the plot is very predictable.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0776", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0777", - "prompt": "Explain the significance of the Treaty of Tordesillas signed in 1494. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0778", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0779", - "prompt": "Find and fix the bug in this Python function:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0780", - "prompt": "Classify the sentiment of this text: 'This is by far the best coffee maker I have ever owned. Simple, clean, and delicious brew.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0781", - "prompt": "Classify the sentiment of this text: 'The battery life is absolutely incredible, lasting over two days of heavy use, and the display is gorgeous.'.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0782", - "prompt": "What is the distance from the Earth to the Sun in miles, and how long does light take to travel it? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0783", - "prompt": "Who wrote the novel '1984', and in what year was it published? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0784", - "prompt": "What is the highest mountain in the Himalayas, and what is its elevation? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0785", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: John Doe visited the head office of Microsoft Corporation in Seattle, Washington last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0786", - "prompt": "If all A are B, and some B are C, are all A necessarily C? Explain your reasoning. What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0787", - "prompt": "What is the capital of Italy, and what is its official currency? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0788", - "prompt": "Identify the bug in this function and return the corrected code:\ndef binary_search(arr, target):\n low, high = 0, len(arr)\n while low <= high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0789", - "prompt": "Write code to implement: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0790", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0791", - "prompt": "A store sells shirts for $18 and pants for $54. If a customer buys 8 items in total and spends $426, how many shirts did they buy? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0792", - "prompt": "Write code to implement: Write a Python function to check if a string is a palindrome, ignoring capitalization and non-alphanumeric characters.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0793", - "prompt": "A train leaves Station A traveling at 61 mph. 4 hours later, another train leaves Station A traveling in the same direction at 77 mph. How long will it take the second train to overtake the first? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0794", - "prompt": "Classify the sentiment of this text: 'Performance is decent for the price, though it lacks some high-end features.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0795", - "prompt": "Classify the sentiment of this text: 'It works as advertised, nothing special but gets the basic job done.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0796", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The product looks nothing like the advertisements and stopped working in a week.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0797", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to merge two sorted lists into one single sorted list without using sorting library functions.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0798", - "prompt": "What is the highest mountain in Africa, and what is its elevation? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0799", - "prompt": "A company has 163 employees. If 25% of them work remotely, and the rest work in-office, how many employees work in-office? (Difficulty: easy)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0800", - "prompt": "Alice, Bob, and Charlie live in red, blue, and green houses. The person in the red house is a doctor. Bob is not a doctor. Alice lives in the green house. Who lives in the red house? Answer concisely.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0801", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0802", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1815. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0803", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0804", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0805", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0806", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Google LLC'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0807", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0808", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0809", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Google LLC'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0810", - "prompt": "Explain the chemical synthesis process of Caffeine using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0811", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0812", - "prompt": "What is the average life expectancy in Switzerland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0813", - "prompt": "Compare the locations of Rome, Beijing, and Madrid on the continent of the Middle East. Which body of water are they near? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0814", - "prompt": "If x = 512, y = 4, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0815", - "prompt": "Compute the value of the following mathematical expression: [(256 * 12) + 60] / 20 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0816", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0817", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Google LLC'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0818", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 2. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0819", - "prompt": "If x = 512, y = 8, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0820", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Henry must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0821", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0822", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0823", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0824", - "prompt": "Summarize the following financial results: In 2023, profits rose by 18%, reaching $90 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0825", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'OpenAI Inc.', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0826", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 4. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0827", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Tesla Motors', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0828", - "prompt": "The population of Rome in 1215 was 100,000, and by 1550 it grew to 2.1 million. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0829", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0830", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0831", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0832", - "prompt": "Scheduling puzzle: Charlie must speak before David. Henry must speak after David but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0833", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0834", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0835", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1215. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0836", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0837", - "prompt": "Calculate the age of Leonardo da Vinci when they wrote their masterpiece in 1492. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0838", - "prompt": "A warehouse in Rotterdam distributes products. If they store 4800 boxes, sell 30% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0839", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0840", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'OpenAI Inc.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0841", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Swift while working at Tesla Motors in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0842", - "prompt": "In the year 1492, the treaty of Versailles was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0843", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0844", - "prompt": "Three mathematicians, Euler (30 years old), Ramanujan (25 years old), and Gödel (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0845", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0846", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Amazon Headquarters in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0847", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Ivy must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0848", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0849", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0850", - "prompt": "How many active volcanoes are there in South America, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0851", - "prompt": "Compute the value of the following mathematical expression: [(1024 * 12) + 20] / 15 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0852", - "prompt": "Scheduling puzzle: Charlie must speak before Eva. Ivy must speak after Eva but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0853", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0854", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0855", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0856", - "prompt": "The population of Tokyo in 1914 was 2.5 million, and by 1930 it grew to 2.1 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0857", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'OpenAI Inc.'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0858", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0859", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0860", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0861", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0862", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0863", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0864", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0865", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0866", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0867", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0868", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0869", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0870", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0871", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Henry must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0872", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0873", - "prompt": "Scheduling puzzle: Alice must speak before David. Grace must speak after David but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0874", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0875", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0876", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0877", - "prompt": "In the year 1914, the treaty of Ghent was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0878", - "prompt": "Summarize the following financial results: In 2024, profits rose by 25%, reaching $150 million. However, debt increased by 10% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0879", - "prompt": "Compare the locations of New York, Beijing, and Cape Town on the continent of the Middle East. Which body of water are they near? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0880", - "prompt": "What is the average life expectancy in Singapore, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0881", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Go while working at Microsoft Corp. in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0882", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0883", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from World Health Organization, including Elena Rostova and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0884", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Apple Store in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0885", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Microsoft Corp.'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0886", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0887", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0888", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0889", - "prompt": "Summarize the following financial results: In 2024, profits rose by 18%, reaching $150 million. However, debt increased by 10% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0890", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0891", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Microsoft Corp.'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0892", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0893", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Tesla Motors', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0894", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at Apple Store in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0895", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Google LLC', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0896", - "prompt": "Three mathematicians, Gauss (50 years old), Euclid (25 years old), and Gödel (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0897", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0898", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0899", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0900", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0901", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0902", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0903", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0904", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0905", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0906", - "prompt": "Explain the chemical synthesis process of Caffeine using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0907", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Walmart Supercenter in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0908", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at BestBuy Store in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0909", - "prompt": "How many active volcanoes are there in the Middle East, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0910", - "prompt": "Scheduling puzzle: Charlie must speak before David. Henry must speak after David but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0911", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0912", - "prompt": "Three mathematicians, Fermat (45 years old), Pascal (25 years old), and Cantor (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0913", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Rust while working at OpenAI Inc. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0914", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Google LLC', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0915", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0916", - "prompt": "In the year 1945, the treaty of Westphalia was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0917", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Ruby while working at Tesla Motors in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0918", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0919", - "prompt": "What is the average life expectancy in Switzerland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0920", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0921", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0922", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0923", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0924", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0925", - "prompt": "Identify the historical role of Isaac Newton, Charles Darwin, and Ada Lovelace during the founding of NASA. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0926", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Google LLC'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0927", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'OpenAI Inc.'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0928", - "prompt": "Calculate the age of Galileo Galilei when they wrote their masterpiece in 1215. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0929", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0930", - "prompt": "If x = 128, y = 12, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0931", - "prompt": "If x = 128, y = 4, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0932", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0933", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0934", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 1000 workers built 150 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0935", - "prompt": "Three mathematicians, Gauss (30 years old), Euclid (35 years old), and Cantor (48 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0936", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0937", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0938", - "prompt": "Identify the historical role of Marie Curie, Charles Darwin, and Alan Turing during the founding of NASA. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0939", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0940", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0941", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0942", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from World Health Organization, including Elena Rostova and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0943", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'OpenAI Inc.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0944", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at BestBuy Store in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0945", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0946", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0947", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 2. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0948", - "prompt": "Compare the locations of Tokyo, Cairo, and Rio de Janeiro on the continent of East Africa. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0949", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1815. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0950", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0951", - "prompt": "The population of Tokyo in 1492 was 2.5 million, and by 1800 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0952", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0953", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0954", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0955", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from World Health Organization, including Chen Wei and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0956", - "prompt": "Three mathematicians, Newton (60 years old), Ramanujan (25 years old), and Gödel (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0957", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0958", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0959", - "prompt": "The population of New York in 1914 was 100,000, and by 1850 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0960", - "prompt": "Three mathematicians, Gauss (50 years old), Ramanujan (25 years old), and Lagrange (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0961", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Tesla Motors'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0962", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0963", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0964", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-0965", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'OpenAI Inc.', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0966", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from European Union, including Elena Rostova and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0967", - "prompt": "A warehouse in Singapore distributes products. If they store 1500 boxes, sell 25% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0968", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0969", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0970", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0971", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0972", - "prompt": "Compare the locations of London, Cairo, and Rio de Janeiro on the continent of Southeast Asia. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0973", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0974", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0975", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0976", - "prompt": "Three mathematicians, Euler (45 years old), Pascal (40 years old), and Gödel (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0977", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0978", - "prompt": "In the year 1789, the treaty of Westphalia was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0979", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Google LLC'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0980", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0981", - "prompt": "Three mathematicians, Newton (60 years old), Hilbert (55 years old), and Lagrange (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Hilbert.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-0982", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Amazon Headquarters in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0983", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Amazon Headquarters in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0984", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0985", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0986", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0987", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0988", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0989", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1789. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0990", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Ruby Jenkins'\n company = 'OpenAI Inc.'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-0991", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0992", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0993", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at Amazon Headquarters in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-0994", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0995", - "prompt": "Explain the chemical synthesis process of Caffeine using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-0996", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0997", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0998", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-0999", - "prompt": "How many active volcanoes are there in the Middle East, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1000", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1001", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1002", - "prompt": "Scheduling puzzle: Alice must speak before David. Henry must speak after David but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1003", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1004", - "prompt": "Explain the chemical synthesis process of Caffeine using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1005", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Swift while working at Tesla Motors in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1006", - "prompt": "Scheduling puzzle: Bob must speak before David. Ivy must speak after David but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1007", - "prompt": "If x = 1024, y = 4, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1008", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1009", - "prompt": "Summarize the following financial results: In 2025, profits rose by 25%, reaching $150 million. However, debt increased by 5% to $35 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1010", - "prompt": "Summarize the following financial results: In 2023, profits rose by 12%, reaching $150 million. However, debt increased by 8% to $55 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1011", - "prompt": "If x = 128, y = 16, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1012", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1789. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1013", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1014", - "prompt": "Three mathematicians, Newton (60 years old), Pascal (40 years old), and Leibniz (48 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1015", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1016", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1017", - "prompt": "The population of Tokyo in 1815 was 2.5 million, and by 1550 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1018", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1019", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Python while working at Google LLC in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1020", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from World Health Organization, including Elena Rostova and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1021", - "prompt": "Explain the chemical synthesis process of Sulfuric Acid using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1022", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at BestBuy Store in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1023", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1024", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1025", - "prompt": "Compute the value of the following mathematical expression: [(128 * 16) + 80] / 5 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1026", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1027", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1028", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 1000 workers built 300 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1029", - "prompt": "Three mathematicians, Fermat (30 years old), Pascal (35 years old), and Cantor (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1030", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Tesla Motors'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1031", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1032", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1033", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Grace must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1034", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1035", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1036", - "prompt": "Compare the locations of Rome, Berlin, and Toronto on the continent of Europe. Which body of water are they near? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1037", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1038", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Google LLC'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1039", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1040", - "prompt": "If x = 512, y = 4, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1041", - "prompt": "Compute the value of the following mathematical expression: [(512 * 8) + 80] / 20 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1042", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1043", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1044", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1045", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1046", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Ruby Jenkins'\n company = 'OpenAI Inc.'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1047", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1048", - "prompt": "A warehouse in Rotterdam distributes products. If they store 3500 boxes, sell 15% of them on Monday, and then receive 200 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1049", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Amazon Headquarters in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1050", - "prompt": "Three mathematicians, Fermat (45 years old), Ramanujan (40 years old), and Cantor (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1051", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1052", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1053", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1054", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1055", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1945. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1056", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Amazon Headquarters in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1057", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1058", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1059", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1060", - "prompt": "If x = 1024, y = 12, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1061", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1062", - "prompt": "If x = 256, y = 12, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1063", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1064", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Microsoft Corp.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1065", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1066", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Grace must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1067", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1068", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Go while working at Microsoft Corp. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1069", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1070", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Tesla Motors', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1071", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1072", - "prompt": "Summarize the following financial results: In 2025, profits rose by 12%, reaching $45 million. However, debt increased by 5% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1073", - "prompt": "The population of Rome in 1789 was 2.5 million, and by 1800 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1074", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1075", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1076", - "prompt": "Calculate the age of Galileo Galilei when they wrote their masterpiece in 1914. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1077", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1078", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1079", - "prompt": "Compute the value of the following mathematical expression: [(512 * 16) + 20] / 15 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1080", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at Apple Store in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1081", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1082", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at Amazon Headquarters in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1083", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1084", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Microsoft Corp.', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1085", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Microsoft Corp.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1086", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1087", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1088", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1089", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1945. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1090", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Microsoft Corp.'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1091", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1092", - "prompt": "Identify the historical role of Galileo Galilei, Alexander Graham Bell, and Ada Lovelace during the founding of NASA. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1093", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'OpenAI Inc.', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1094", - "prompt": "The population of Rome in 1492 was 2.5 million, and by 1550 it grew to 2.1 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1095", - "prompt": "Compare the locations of Tokyo, Sydney, and Madrid on the continent of the Middle East. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1096", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from European Union, including Elena Rostova and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1097", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Robert Vance and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1098", - "prompt": "Summarize the following financial results: In 2025, profits rose by 18%, reaching $150 million. However, debt increased by 8% to $35 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1099", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1100", - "prompt": "Compare the locations of New York, Beijing, and Madrid on the continent of Southeast Asia. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1101", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1102", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1103", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1104", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1105", - "prompt": "Calculate the age of Leonardo da Vinci when they wrote their masterpiece in 1789. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1106", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1107", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1108", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1109", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1110", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1111", - "prompt": "Compare the locations of New York, Cairo, and Rio de Janeiro on the continent of South America. Which body of water are they near? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1112", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Ivy must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1113", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1114", - "prompt": "Summarize the following financial results: In 2023, profits rose by 25%, reaching $150 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1115", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1116", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1117", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Google LLC'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1118", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 4. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1119", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1120", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Ruby Jenkins'\n company = 'Tesla Motors'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1121", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1122", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Microsoft Corp.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1123", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1124", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1125", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1126", - "prompt": "Compare the locations of New York, Berlin, and Toronto on the continent of East Africa. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1127", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1128", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1129", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Ruby while working at Microsoft Corp. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1130", - "prompt": "Three mathematicians, Euler (50 years old), Euclid (40 years old), and Leibniz (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1131", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1132", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Google LLC'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1133", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1134", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from International Monetary Fund, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1135", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1136", - "prompt": "If x = 512, y = 12, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1137", - "prompt": "Compare the locations of London, Berlin, and Rio de Janeiro on the continent of Southeast Asia. Which body of water are they near? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1138", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1139", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1140", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1141", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1142", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Python while working at Tesla Motors in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1143", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1144", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1145", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from World Health Organization, including Robert Vance and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1146", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'OpenAI Inc.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1147", - "prompt": "Three mathematicians, Gauss (45 years old), Ramanujan (40 years old), and Leibniz (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1148", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Tesla Motors', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1149", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'OpenAI Inc.'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1150", - "prompt": "Compute the value of the following mathematical expression: [(512 * 16) + 60] / 5 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1151", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1152", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1153", - "prompt": "Scheduling puzzle: Charlie must speak before Eva. Grace must speak after Eva but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1154", - "prompt": "Three mathematicians, Euler (45 years old), Pascal (55 years old), and Gödel (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1155", - "prompt": "A warehouse in Rotterdam distributes products. If they store 4800 boxes, sell 20% of them on Monday, and then receive 200 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1156", - "prompt": "Compute the value of the following mathematical expression: [(512 * 12) + 20] / 20 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1157", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 4. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1158", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 4. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1159", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1160", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1161", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1162", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1789. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1163", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1164", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1165", - "prompt": "Explain the chemical synthesis process of Sulfuric Acid using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1166", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at BestBuy Store in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1167", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from World Health Organization, including Robert Vance and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1168", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Microsoft Corp.'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1169", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Tesla Motors'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1170", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1171", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1172", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1173", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1174", - "prompt": "Three mathematicians, Fermat (30 years old), Pascal (25 years old), and Lagrange (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1175", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1176", - "prompt": "Summarize the following financial results: In 2023, profits rose by 18%, reaching $45 million. However, debt increased by 5% to $55 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1177", - "prompt": "Compare the locations of Rome, Beijing, and Madrid on the continent of Europe. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1178", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1179", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'OpenAI Inc.'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1180", - "prompt": "Compute the value of the following mathematical expression: [(512 * 16) + 80] / 5 - 6. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1181", - "prompt": "Summarize the following financial results: In 2024, profits rose by 12%, reaching $90 million. However, debt increased by 10% to $55 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1182", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1183", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1184", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Henry must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1185", - "prompt": "Compare the locations of Paris, Berlin, and Madrid on the continent of South America. Which body of water are they near? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1186", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1187", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1188", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1189", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1190", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1191", - "prompt": "A warehouse in Singapore distributes products. If they store 1500 boxes, sell 15% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1192", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1193", - "prompt": "In the year 1945, the treaty of Ghent was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1194", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1195", - "prompt": "If x = 128, y = 12, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1196", - "prompt": "Compute the value of the following mathematical expression: [(512 * 8) + 20] / 20 - 6. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1197", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Swift while working at Microsoft Corp. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1198", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1199", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Grace must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1200", - "prompt": "Three mathematicians, Fermat (45 years old), Hilbert (35 years old), and Lagrange (48 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Hilbert.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1201", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1202", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1203", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 4. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1204", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 500 workers built 450 blocks per day. If they increase their workforce by 30%, how many blocks will they build in 30 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1205", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 1000 workers built 150 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1206", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1207", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1208", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1209", - "prompt": "Identify the historical role of Leonardo da Vinci, Thomas Edison, and Alan Turing during the founding of the League of Nations. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1210", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1211", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1212", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1213", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1214", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1215", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1216", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1217", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1218", - "prompt": "Compare the locations of New York, Berlin, and Rio de Janeiro on the continent of East Africa. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1219", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1220", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1221", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1222", - "prompt": "Provide a concise summary of the diplomatic meeting in Geneva where representatives from European Union, including Robert Vance and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1223", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1224", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1225", - "prompt": "If x = 256, y = 8, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1226", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at BestBuy Store in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1227", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1228", - "prompt": "A warehouse in Shanghai distributes products. If they store 4800 boxes, sell 20% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1229", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1230", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1231", - "prompt": "Identify the historical role of Marie Curie, Nikola Tesla, and Bill Gates during the founding of the United Nations. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1232", - "prompt": "If x = 256, y = 12, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1233", - "prompt": "The population of Tokyo in 1945 was 1.2 million, and by 1800 it grew to 850,000. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1234", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1235", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from European Union, including Chen Wei and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1236", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Tesla Motors'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1237", - "prompt": "What is the average life expectancy in Switzerland, and what is the ratio of men to women in their population? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1238", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1239", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Swift while working at Tesla Motors in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1240", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Python while working at Google LLC in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1241", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1242", - "prompt": "The population of Rome in 1215 was 1.2 million, and by 1550 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1243", - "prompt": "If x = 256, y = 12, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1244", - "prompt": "Compare the locations of Paris, Beijing, and Mumbai on the continent of Southeast Asia. Which body of water are they near? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1245", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1246", - "prompt": "Three mathematicians, Fermat (45 years old), Pascal (55 years old), and Gödel (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1247", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1248", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1249", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1250", - "prompt": "If x = 512, y = 16, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1251", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1252", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1253", - "prompt": "Identify the historical role of Isaac Newton, Alexander Graham Bell, and Steve Jobs during the founding of the League of Nations. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1254", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1255", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 2000 workers built 300 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1256", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Google LLC'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1257", - "prompt": "Scheduling puzzle: Charlie must speak before David. Ivy must speak after David but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1258", - "prompt": "If x = 256, y = 8, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1259", - "prompt": "Summarize the following financial results: In 2025, profits rose by 18%, reaching $45 million. However, debt increased by 5% to $55 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1260", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Ivy must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1261", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1262", - "prompt": "Scheduling puzzle: Alice must speak before David. Grace must speak after David but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1263", - "prompt": "Identify the historical role of Leonardo da Vinci, Thomas Edison, and Steve Jobs during the founding of the League of Nations. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1264", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1265", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Tesla Motors'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1266", - "prompt": "Summarize the following financial results: In 2024, profits rose by 12%, reaching $150 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1267", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1268", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Google LLC'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1269", - "prompt": "A warehouse in Rotterdam distributes products. If they store 1500 boxes, sell 20% of them on Monday, and then receive 200 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1270", - "prompt": "Compare the locations of New York, Berlin, and Toronto on the continent of Southeast Asia. Which body of water are they near? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1271", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Tesla Motors'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1272", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1273", - "prompt": "Summarize the following financial results: In 2023, profits rose by 18%, reaching $45 million. However, debt increased by 10% to $35 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1274", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1275", - "prompt": "The population of London in 1945 was 2.5 million, and by 1980 it grew to 2.1 million. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1276", - "prompt": "In the year 1215, the treaty of Versailles was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1277", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1278", - "prompt": "In the year 1815, the treaty of Versailles was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1279", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1280", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1281", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Walmart Supercenter in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1282", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1283", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1284", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1285", - "prompt": "Explain the chemical synthesis process of Sodium Hydroxide using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1286", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1287", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1288", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1289", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1290", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1291", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1292", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Microsoft Corp.'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1293", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1294", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Ruby while working at OpenAI Inc. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1295", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1296", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1492. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1297", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Ruby Jenkins'\n company = 'Google LLC'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1298", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Google LLC', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1299", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1300", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at BestBuy Store in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1301", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1302", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1303", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1304", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1305", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1306", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Rust while working at Google LLC in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1307", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1308", - "prompt": "Scheduling puzzle: Charlie must speak before Eva. Grace must speak after Eva but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1309", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1310", - "prompt": "Summarize the following financial results: In 2025, profits rose by 12%, reaching $150 million. However, debt increased by 10% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1311", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1312", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1313", - "prompt": "If x = 1024, y = 8, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1314", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1315", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 25%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1316", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from World Health Organization, including Robert Vance and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1317", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1318", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1319", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1320", - "prompt": "Compute the value of the following mathematical expression: [(512 * 4) + 60] / 5 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1321", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Elena Rostova and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1322", - "prompt": "A warehouse in Rotterdam distributes products. If they store 1500 boxes, sell 20% of them on Monday, and then receive 750 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1323", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Grace must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1324", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1789. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1325", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1326", - "prompt": "Scheduling puzzle: Bob must speak before David. Grace must speak after David but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1327", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1328", - "prompt": "Compute the value of the following mathematical expression: [(256 * 4) + 20] / 10 - 6. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1329", - "prompt": "In the year 1492, the treaty of Utrecht was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1330", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Ruby Jenkins'\n company = 'Google LLC'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1331", - "prompt": "A warehouse in Shanghai distributes products. If they store 1500 boxes, sell 25% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1332", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1333", - "prompt": "What is the average life expectancy in Singapore, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1334", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1335", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1336", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at Apple Store in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1337", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Swift while working at OpenAI Inc. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1338", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1339", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1340", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1341", - "prompt": "Three mathematicians, Gauss (60 years old), Pascal (35 years old), and Leibniz (48 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1342", - "prompt": "Identify the historical role of Marie Curie, Charles Darwin, and Steve Jobs during the founding of the United Nations. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1343", - "prompt": "Three mathematicians, Fermat (45 years old), Ramanujan (35 years old), and Leibniz (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1344", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1345", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1346", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'OpenAI Inc.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1347", - "prompt": "How many active volcanoes are there in the Middle East, and what is the height in meters of the tallest one? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1348", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Ruby while working at OpenAI Inc. in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1349", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1350", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1351", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1352", - "prompt": "Compute the value of the following mathematical expression: [(512 * 16) + 60] / 10 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1353", - "prompt": "If x = 128, y = 12, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1354", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1355", - "prompt": "Summarize the following financial results: In 2024, profits rose by 18%, reaching $150 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1356", - "prompt": "Scheduling puzzle: Bob must speak before Eva. Henry must speak after Eva but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1357", - "prompt": "Explain the chemical synthesis process of Caffeine using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1358", - "prompt": "In the year 1789, the treaty of Tordesillas was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1359", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'OpenAI Inc.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1360", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 4. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1361", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1362", - "prompt": "If x = 256, y = 12, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1363", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Amazon Headquarters in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1364", - "prompt": "Summarize the following financial results: In 2024, profits rose by 25%, reaching $150 million. However, debt increased by 8% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1365", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1366", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1367", - "prompt": "How many active volcanoes are there in Southeast Asia, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1368", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 10%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1369", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Microsoft Corp.'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1370", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1371", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1372", - "prompt": "Compare the locations of New York, Berlin, and Toronto on the continent of the Middle East. Which body of water are they near? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1373", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Microsoft Corp.', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1374", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1375", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1376", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1377", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1378", - "prompt": "How many active volcanoes are there in South America, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1379", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1380", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1381", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at BestBuy Store in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1382", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Microsoft Corp.'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1383", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1384", - "prompt": "In the year 1914, the treaty of Versailles was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1385", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 2000 workers built 150 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1386", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Ruby Jenkins'\n company = 'Tesla Motors'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1387", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1388", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1389", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1390", - "prompt": "The population of New York in 1789 was 1.2 million, and by 1300 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1391", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1392", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1393", - "prompt": "Explain the chemical synthesis process of Sulfuric Acid using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1394", - "prompt": "How many active volcanoes are there in South America, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1395", - "prompt": "Summarize the following financial results: In 2024, profits rose by 18%, reaching $150 million. However, debt increased by 10% to $55 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1396", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1397", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1398", - "prompt": "If x = 512, y = 16, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1399", - "prompt": "A warehouse in Singapore distributes products. If they store 1500 boxes, sell 20% of them on Monday, and then receive 200 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1400", - "prompt": "Three mathematicians, Gauss (45 years old), Euclid (25 years old), and Lagrange (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1401", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 500 workers built 450 blocks per day. If they increase their workforce by 25%, how many blocks will they build in 30 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1402", - "prompt": "A warehouse in Los Angeles distributes products. If they store 1500 boxes, sell 30% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1403", - "prompt": "If x = 1024, y = 4, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1404", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1405", - "prompt": "If x = 512, y = 12, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1406", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1407", - "prompt": "Compute the value of the following mathematical expression: [(128 * 4) + 40] / 20 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1408", - "prompt": "Summarize the following financial results: In 2025, profits rose by 18%, reaching $150 million. However, debt increased by 8% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1409", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1410", - "prompt": "A warehouse in Los Angeles distributes products. If they store 2400 boxes, sell 25% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1411", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 1000 workers built 300 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1412", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 4. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1413", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1414", - "prompt": "The population of London in 1815 was 500,000, and by 1300 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1415", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1416", - "prompt": "In the year 1914, the treaty of Utrecht was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1417", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'OpenAI Inc.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1418", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1419", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Swift while working at Google LLC in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1420", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Go while working at Microsoft Corp. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1421", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Rust while working at Microsoft Corp. in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1422", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1423", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1424", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'Tesla Motors', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1425", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1426", - "prompt": "If x = 1024, y = 12, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1427", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 2000 workers built 450 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1428", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1429", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Tesla Motors', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1430", - "prompt": "Three mathematicians, Euler (60 years old), Euclid (25 years old), and Lagrange (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1431", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1432", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Microsoft Corp.'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1433", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1434", - "prompt": "Summarize the following financial results: In 2024, profits rose by 25%, reaching $90 million. However, debt increased by 8% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1435", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1436", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Go while working at Google LLC in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1437", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1438", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1439", - "prompt": "How many active volcanoes are there in East Africa, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1440", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 2. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1441", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1442", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1443", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Google LLC', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1444", - "prompt": "Explain the chemical synthesis process of Caffeine using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1445", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1446", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1447", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Tesla Motors'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1448", - "prompt": "In the year 1945, the treaty of Versailles was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1449", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1450", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from World Health Organization, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1451", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1452", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1453", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1454", - "prompt": "Three mathematicians, Euler (45 years old), Euclid (25 years old), and Gödel (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1455", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at Apple Store in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1456", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1457", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1458", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1459", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Google LLC', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1460", - "prompt": "Three mathematicians, Gauss (45 years old), Hilbert (40 years old), and Leibniz (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Hilbert.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1461", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1462", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1463", - "prompt": "What is the average life expectancy in Singapore, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1464", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1465", - "prompt": "Summarize the following financial results: In 2024, profits rose by 12%, reaching $150 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1466", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1467", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1468", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1469", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1470", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at Amazon Headquarters in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1471", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1472", - "prompt": "If x = 1024, y = 12, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1473", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1474", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1475", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1476", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1477", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1478", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1479", - "prompt": "Summarize the following financial results: In 2025, profits rose by 25%, reaching $150 million. However, debt increased by 8% to $20 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1480", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1481", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1482", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1483", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Robert Vance and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1484", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Swift while working at Microsoft Corp. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1485", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1486", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at BestBuy Store in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1487", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1488", - "prompt": "Three mathematicians, Newton (30 years old), Euclid (35 years old), and Gödel (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1489", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1490", - "prompt": "If x = 512, y = 8, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1491", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1492", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1493", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1494", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1495", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'OpenAI Inc.'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1496", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Ruby while working at Tesla Motors in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1497", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'OpenAI Inc.', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1498", - "prompt": "Summarize the following financial results: In 2025, profits rose by 18%, reaching $90 million. However, debt increased by 5% to $55 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1499", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1500", - "prompt": "Three mathematicians, Fermat (45 years old), Ramanujan (55 years old), and Lagrange (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $36000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1501", - "prompt": "Three mathematicians, Gauss (50 years old), Euclid (35 years old), and Cantor (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1502", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1503", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Grace must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1504", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1505", - "prompt": "Explain the chemical synthesis process of Ethanol using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1506", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1507", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1508", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Tesla Motors'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1509", - "prompt": "Compute the value of the following mathematical expression: [(128 * 16) + 40] / 5 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1510", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1511", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1512", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1513", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1514", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1515", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1516", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1517", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1518", - "prompt": "Compute the value of the following mathematical expression: [(128 * 8) + 80] / 10 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1519", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1520", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1215. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1521", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1522", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1523", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 4. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1524", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1525", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1526", - "prompt": "How many active volcanoes are there in Southeast Asia, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1527", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from International Monetary Fund, including Chen Wei and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1528", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1529", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Microsoft Corp.'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1530", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1531", - "prompt": "If x = 256, y = 4, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1532", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1533", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1534", - "prompt": "In the year 1215, the treaty of Tordesillas was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1535", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1536", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1537", - "prompt": "Compute the value of the following mathematical expression: [(1024 * 4) + 40] / 20 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1538", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1539", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1540", - "prompt": "Compute the value of the following mathematical expression: [(256 * 8) + 80] / 10 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1541", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1542", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1543", - "prompt": "Compare the locations of Rome, Cairo, and Rio de Janeiro on the continent of Southeast Asia. Which body of water are they near? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1544", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1545", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1546", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1547", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1548", - "prompt": "In the year 1215, the treaty of Ghent was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1549", - "prompt": "How many active volcanoes are there in East Africa, and what is the height in meters of the tallest one? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1550", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Henry must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1551", - "prompt": "In the year 1815, the treaty of Tordesillas was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1552", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1553", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from International Monetary Fund, including Chen Wei and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1554", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1555", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1556", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1557", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'Tesla Motors', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1558", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1559", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1560", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1561", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 2000 workers built 150 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1562", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from International Monetary Fund, including Elena Rostova and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1563", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1564", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1565", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from World Health Organization, including Chen Wei and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1566", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1567", - "prompt": "Summarize the following financial results: In 2024, profits rose by 25%, reaching $90 million. However, debt increased by 8% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1568", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1569", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1570", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1571", - "prompt": "Three mathematicians, Gauss (60 years old), Hilbert (35 years old), and Leibniz (48 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Hilbert.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1572", - "prompt": "Provide a concise summary of the diplomatic meeting in Geneva where representatives from European Union, including Elena Rostova and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1573", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1574", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1575", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Go while working at Tesla Motors in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1576", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1577", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1578", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1579", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1815. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1580", - "prompt": "Compute the value of the following mathematical expression: [(512 * 8) + 40] / 20 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1581", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1582", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at BestBuy Store in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1583", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1584", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1585", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from International Monetary Fund, including Elena Rostova and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1586", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at Walmart Supercenter in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1587", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Microsoft Corp.'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1588", - "prompt": "Compute the value of the following mathematical expression: [(128 * 16) + 40] / 15 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1589", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1590", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1591", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1592", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1215. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1593", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1594", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1595", - "prompt": "Three mathematicians, Fermat (30 years old), Hilbert (25 years old), and Lagrange (48 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Hilbert.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1596", - "prompt": "A warehouse in Shanghai distributes products. If they store 1500 boxes, sell 30% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1597", - "prompt": "Compute the value of the following mathematical expression: [(512 * 4) + 20] / 10 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1598", - "prompt": "Three mathematicians, Newton (50 years old), Pascal (40 years old), and Cantor (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1599", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1600", - "prompt": "In the year 1492, the treaty of Tordesillas was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1601", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1602", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1603", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Google LLC'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1604", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1605", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 30%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1606", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'OpenAI Inc.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1607", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1608", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1609", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1610", - "prompt": "If x = 512, y = 12, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1611", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1612", - "prompt": "How many active volcanoes are there in East Africa, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1613", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Microsoft Corp.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1614", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1615", - "prompt": "A warehouse in Shanghai distributes products. If they store 3500 boxes, sell 20% of them on Monday, and then receive 200 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1616", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1617", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1618", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1619", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1620", - "prompt": "Scheduling puzzle: Charlie must speak before Eva. Henry must speak after Eva but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1621", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1622", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1623", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1624", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1625", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1626", - "prompt": "Compute the value of the following mathematical expression: [(512 * 16) + 80] / 20 - 6. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1627", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1628", - "prompt": "In the year 1914, the treaty of Versailles was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1629", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1630", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Robert Vance and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1631", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1632", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at Walmart Supercenter in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1633", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Tesla Motors', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1634", - "prompt": "Provide a concise summary of the diplomatic meeting in Geneva where representatives from European Union, including Robert Vance and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1635", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1636", - "prompt": "What is the average life expectancy in Singapore, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1637", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1638", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Walmart Supercenter in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1639", - "prompt": "Three mathematicians, Fermat (45 years old), Ramanujan (35 years old), and Lagrange (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1640", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1641", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1642", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Grace must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1643", - "prompt": "What is the average life expectancy in Switzerland, and what is the ratio of men to women in their population? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1644", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Tesla Motors'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1645", - "prompt": "A warehouse in Rotterdam distributes products. If they store 3500 boxes, sell 30% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1646", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1647", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1648", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1649", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1650", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1651", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1652", - "prompt": "If x = 128, y = 16, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1653", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1654", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1655", - "prompt": "If x = 1024, y = 4, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1656", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1657", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1658", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Tesla Motors', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1659", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1660", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1661", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1662", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1663", - "prompt": "Compute the value of the following mathematical expression: [(512 * 16) + 60] / 5 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1664", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Amazon Headquarters in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1665", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1666", - "prompt": "Three mathematicians, Gauss (60 years old), Euclid (55 years old), and Leibniz (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1667", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1668", - "prompt": "Identify the historical role of Galileo Galilei, Thomas Edison, and Steve Jobs during the founding of the League of Nations. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1669", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1670", - "prompt": "Summarize the following financial results: In 2023, profits rose by 18%, reaching $150 million. However, debt increased by 8% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1671", - "prompt": "A warehouse in Singapore distributes products. If they store 4800 boxes, sell 30% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1672", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1673", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1674", - "prompt": "If x = 512, y = 16, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1675", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1676", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1677", - "prompt": "What is the average life expectancy in Singapore, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1678", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1679", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1680", - "prompt": "In the year 1815, the treaty of Westphalia was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1681", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Henry must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1682", - "prompt": "What is the average life expectancy in Japan, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1683", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1684", - "prompt": "Scheduling puzzle: Alice must speak before David. Henry must speak after David but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1685", - "prompt": "Three mathematicians, Fermat (50 years old), Ramanujan (55 years old), and Cantor (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1686", - "prompt": "Provide a concise summary of the diplomatic meeting in Geneva where representatives from European Union, including Elena Rostova and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1687", - "prompt": "Compute the value of the following mathematical expression: [(512 * 8) + 20] / 15 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1688", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1689", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1690", - "prompt": "Compute the value of the following mathematical expression: [(1024 * 8) + 40] / 5 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1691", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1692", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1693", - "prompt": "Compare the locations of Tokyo, Cairo, and Mumbai on the continent of East Africa. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1694", - "prompt": "Compute the value of the following mathematical expression: [(256 * 4) + 80] / 15 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1695", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1696", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1697", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 2000 workers built 150 blocks per day. If they increase their workforce by 25%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1698", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1699", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1700", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1701", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 500 workers built 150 blocks per day. If they increase their workforce by 30%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1702", - "prompt": "A warehouse in Los Angeles distributes products. If they store 2400 boxes, sell 10% of them on Monday, and then receive 750 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1703", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1704", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Ruby while working at OpenAI Inc. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1705", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1706", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1707", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1708", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1709", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Python while working at Microsoft Corp. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1710", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1711", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at BestBuy Store in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1712", - "prompt": "How many active volcanoes are there in East Africa, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1713", - "prompt": "If x = 256, y = 12, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1714", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1715", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1716", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1717", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1718", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Google LLC', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1719", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Rust while working at Microsoft Corp. in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1720", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Grace must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1721", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1722", - "prompt": "How many active volcanoes are there in East Africa, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1723", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1724", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1725", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Ruby while working at Microsoft Corp. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1726", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1727", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1728", - "prompt": "In the year 1815, the treaty of Tordesillas was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1729", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Tesla Motors', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1730", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1731", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1732", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Ruby while working at Tesla Motors in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1733", - "prompt": "Compare the locations of Rome, Sydney, and Rio de Janeiro on the continent of Europe. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1734", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1735", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'OpenAI Inc.', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1736", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1737", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1738", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1739", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1740", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1741", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'OpenAI Inc.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1742", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1743", - "prompt": "Explain the chemical synthesis process of Sodium Hydroxide using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1744", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1745", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'OpenAI Inc.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1746", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1747", - "prompt": "Summarize the following financial results: In 2025, profits rose by 12%, reaching $90 million. However, debt increased by 8% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1748", - "prompt": "A warehouse in Shanghai distributes products. If they store 3500 boxes, sell 25% of them on Monday, and then receive 200 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1749", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1750", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1751", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1752", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1753", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1754", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1755", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1756", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1757", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1758", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1759", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Python while working at Microsoft Corp. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1760", - "prompt": "A warehouse in Los Angeles distributes products. If they store 3500 boxes, sell 10% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1761", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1762", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Henry must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1763", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1764", - "prompt": "Explain the chemical synthesis process of Caffeine using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1765", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 2000 workers built 150 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1766", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1767", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1768", - "prompt": "A warehouse in Rotterdam distributes products. If they store 2400 boxes, sell 10% of them on Monday, and then receive 750 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1769", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'OpenAI Inc.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1770", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1771", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1772", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1773", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1774", - "prompt": "In the year 1492, the treaty of Westphalia was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1775", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 500 workers built 450 blocks per day. If they increase their workforce by 25%, how many blocks will they build in 30 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1776", - "prompt": "Three mathematicians, Euler (30 years old), Euclid (40 years old), and Lagrange (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1777", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1778", - "prompt": "Compare the locations of London, Cairo, and Cape Town on the continent of South America. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1779", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from International Monetary Fund, including Robert Vance and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1780", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1781", - "prompt": "Explain the chemical synthesis process of Sulfuric Acid using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1782", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1783", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Walmart Supercenter in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1784", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1785", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1786", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1787", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1788", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1789", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1790", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1791", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Tesla Motors', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1792", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1793", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1794", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1795", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1796", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Microsoft Corp.'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1797", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1789. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1798", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1799", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Henry must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1800", - "prompt": "If x = 128, y = 16, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1801", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Python while working at Google LLC in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1802", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1803", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1804", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1805", - "prompt": "Explain the chemical synthesis process of Aspirin using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1806", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1807", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from European Union, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1808", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1809", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1810", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Tesla Motors', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1811", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Rust while working at Google LLC in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1812", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Go while working at Microsoft Corp. in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1813", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Go while working at OpenAI Inc. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1814", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1815", - "prompt": "Three mathematicians, Euler (50 years old), Ramanujan (25 years old), and Cantor (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1816", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Rust while working at OpenAI Inc. in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1817", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1818", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at Walmart Supercenter in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1819", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1820", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1821", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1822", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1823", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1824", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1825", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1826", - "prompt": "A warehouse in Shanghai distributes products. If they store 3500 boxes, sell 25% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1827", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1828", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1829", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Python while working at Microsoft Corp. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1830", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1831", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Amazon Headquarters in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1832", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1833", - "prompt": "The population of Tokyo in 1492 was 2.5 million, and by 1850 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1834", - "prompt": "Summarize the following financial results: In 2023, profits rose by 12%, reaching $90 million. However, debt increased by 10% to $55 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1835", - "prompt": "A warehouse in Rotterdam distributes products. If they store 2400 boxes, sell 15% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1836", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Google LLC', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1837", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Rust while working at Tesla Motors in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1838", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1839", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1840", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1841", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'OpenAI Inc.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1842", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1843", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at Amazon Headquarters in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1844", - "prompt": "Compare the locations of Tokyo, Beijing, and Madrid on the continent of Europe. Which body of water are they near? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1845", - "prompt": "Compare the locations of Tokyo, Berlin, and Rio de Janeiro on the continent of South America. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1846", - "prompt": "Compute the value of the following mathematical expression: [(128 * 4) + 60] / 5 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1847", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Microsoft Corp.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1848", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1849", - "prompt": "Summarize the following financial results: In 2023, profits rose by 25%, reaching $150 million. However, debt increased by 5% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1850", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1851", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1852", - "prompt": "If x = 128, y = 16, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1853", - "prompt": "Calculate the age of Galileo Galilei when they wrote their masterpiece in 1815. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1854", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1855", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1856", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Ruby while working at OpenAI Inc. in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1857", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1858", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 4. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1859", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Ruby while working at Google LLC in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1860", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1861", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Grace must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1862", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Ruby while working at Tesla Motors in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1863", - "prompt": "The population of New York in 1914 was 500,000, and by 1550 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1864", - "prompt": "If x = 1024, y = 12, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1865", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1866", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Google LLC'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1867", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1868", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1869", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Robert Vance and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1870", - "prompt": "Summarize the following financial results: In 2023, profits rose by 12%, reaching $150 million. However, debt increased by 5% to $35 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1871", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1872", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1873", - "prompt": "A warehouse in Singapore distributes products. If they store 2400 boxes, sell 15% of them on Monday, and then receive 750 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1874", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1875", - "prompt": "Calculate the age of Leonardo da Vinci when they wrote their masterpiece in 1914. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1876", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1877", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1878", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1879", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1880", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1881", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1882", - "prompt": "A warehouse in Singapore distributes products. If they store 1500 boxes, sell 30% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1883", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1884", - "prompt": "Calculate the age of Leonardo da Vinci when they wrote their masterpiece in 1945. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1885", - "prompt": "Scheduling puzzle: Bob must speak before David. Henry must speak after David but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1886", - "prompt": "What is the average life expectancy in Switzerland, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1887", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 2. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1888", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1889", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1890", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from European Union, including Elena Rostova and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1891", - "prompt": "The population of Paris in 1789 was 2.5 million, and by 1550 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1892", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1893", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1894", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1895", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from World Health Organization, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1896", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1897", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Henry must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1898", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1899", - "prompt": "If x = 512, y = 8, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1900", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1901", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1902", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Rust while working at Google LLC in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1903", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1904", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1905", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 30 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1906", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1907", - "prompt": "If x = 256, y = 8, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1908", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1909", - "prompt": "Scheduling puzzle: Charlie must speak before David. Grace must speak after David but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1910", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1911", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1912", - "prompt": "If x = 512, y = 8, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1913", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1914", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1915", - "prompt": "Explain the chemical synthesis process of Ethanol using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1916", - "prompt": "Three mathematicians, Fermat (50 years old), Pascal (40 years old), and Lagrange (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1917", - "prompt": "Summarize the following financial results: In 2024, profits rose by 18%, reaching $45 million. However, debt increased by 8% to $55 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1918", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1919", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1920", - "prompt": "If x = 256, y = 8, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1921", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1922", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'OpenAI Inc.', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1923", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1924", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1925", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1926", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1927", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1928", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1929", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1930", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1931", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1932", - "prompt": "In the year 1789, the treaty of Westphalia was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1933", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1934", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1935", - "prompt": "Three mathematicians, Gauss (50 years old), Ramanujan (55 years old), and Lagrange (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1936", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1937", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1938", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1939", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Google LLC'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1940", - "prompt": "Three mathematicians, Euler (50 years old), Euclid (35 years old), and Leibniz (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Euclid.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1941", - "prompt": "Identify the historical role of Leonardo da Vinci, Charles Darwin, and Ada Lovelace during the founding of NASA. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1942", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1943", - "prompt": "How many active volcanoes are there in Southeast Asia, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1944", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1945", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1946", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1947", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1948", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Henry must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1949", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1950", - "prompt": "Summarize the following financial results: In 2024, profits rose by 12%, reaching $45 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1951", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Google LLC'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1952", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Walmart Supercenter in London and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1953", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Grace must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1954", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Apple Store in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1955", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1956", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1957", - "prompt": "Summarize the following financial results: In 2025, profits rose by 18%, reaching $90 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1958", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1959", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 2. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1960", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 2000 workers built 150 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 30 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1961", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1962", - "prompt": "Identify the historical role of Albert Einstein, Thomas Edison, and Ada Lovelace during the founding of the United Nations. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1963", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1964", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1965", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 4. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1966", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1967", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1968", - "prompt": "Calculate the age of Galileo Galilei when they wrote their masterpiece in 1945. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1969", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1970", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1971", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1972", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1973", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1974", - "prompt": "How many active volcanoes are there in East Africa, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1975", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Apple Store in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1976", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from World Health Organization, including Chen Wei and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1977", - "prompt": "If x = 1024, y = 8, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1978", - "prompt": "Summarize the following financial results: In 2025, profits rose by 25%, reaching $45 million. However, debt increased by 8% to $55 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1979", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 4. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1980", - "prompt": "The population of London in 1815 was 100,000, and by 1300 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1981", - "prompt": "How many active volcanoes are there in Europe, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1982", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1983", - "prompt": "If x = 128, y = 12, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1984", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1985", - "prompt": "If x = 1024, y = 8, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1986", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1987", - "prompt": "Compute the value of the following mathematical expression: [(512 * 12) + 20] / 15 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1988", - "prompt": "A warehouse in Los Angeles distributes products. If they store 3500 boxes, sell 15% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1989", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1990", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-1991", - "prompt": "Classify the tone of the feedback: 'John Smith bought this device at Walmart Supercenter in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1992", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1993", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1994", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-1995", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'OpenAI Inc.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-1996", - "prompt": "Compute the value of the following mathematical expression: [(1024 * 16) + 60] / 5 - 6. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-1997", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-1998", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from World Health Organization, including Elena Rostova and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-1999", - "prompt": "How many active volcanoes are there in South America, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2000", - "prompt": "Summarize the following financial results: In 2024, profits rose by 12%, reaching $45 million. However, debt increased by 8% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2001", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2002", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2003", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2004", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2005", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2006", - "prompt": "If x = 1024, y = 16, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2007", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Ruby while working at Microsoft Corp. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2008", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2009", - "prompt": "A warehouse in Los Angeles distributes products. If they store 1500 boxes, sell 25% of them on Monday, and then receive 200 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2010", - "prompt": "Compute the value of the following mathematical expression: [(512 * 12) + 80] / 10 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2011", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 25%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2012", - "prompt": "How many active volcanoes are there in Europe, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2013", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2014", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2015", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2016", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Rust while working at Microsoft Corp. in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2017", - "prompt": "The population of Tokyo in 1945 was 2.5 million, and by 1550 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2018", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2019", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2020", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2021", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Google LLC'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2022", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2023", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2024", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Ivy must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2025", - "prompt": "Identify the historical role of Leonardo da Vinci, Charles Darwin, and Bill Gates during the founding of NASA. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2026", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Swift while working at OpenAI Inc. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2027", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Tesla Motors', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2028", - "prompt": "How many active volcanoes are there in Europe, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2029", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2030", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Tesla Motors', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2031", - "prompt": "Calculate the age of Albert Einstein when they wrote their masterpiece in 1914. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2032", - "prompt": "Scheduling puzzle: Alice must speak before David. Henry must speak after David but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2033", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2034", - "prompt": "Extract entities and their types from: 'Python Martinez learned to code in Python while working at Google LLC in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2035", - "prompt": "The population of Rome in 1492 was 1.2 million, and by 1550 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2036", - "prompt": "Explain the chemical synthesis process of Ethanol using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2037", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2038", - "prompt": "A warehouse in Rotterdam distributes products. If they store 3500 boxes, sell 25% of them on Monday, and then receive 750 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2039", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2040", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2041", - "prompt": "Scheduling puzzle: Alice must speak before David. Henry must speak after David but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2042", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2043", - "prompt": "Summarize the following financial results: In 2024, profits rose by 25%, reaching $45 million. However, debt increased by 5% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2044", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2045", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2046", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2047", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2048", - "prompt": "Calculate the age of Galileo Galilei when they wrote their masterpiece in 1914. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2049", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2050", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2051", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 2000 workers built 150 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2052", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2053", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2054", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2055", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2056", - "prompt": "Calculate the age of Marie Curie when they wrote their masterpiece in 1914. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2057", - "prompt": "Extract entities and their types from: 'Grace Hopper learned to code in Ruby while working at OpenAI Inc. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2058", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 1000 workers built 450 blocks per day. If they increase their workforce by 10%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2059", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2060", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at Amazon Headquarters in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2061", - "prompt": "Scheduling puzzle: Charlie must speak before David. Grace must speak after David but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2062", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2063", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2064", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2065", - "prompt": "A warehouse in Los Angeles distributes products. If they store 2400 boxes, sell 25% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2066", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2067", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2068", - "prompt": "Calculate the age of Galileo Galilei when they wrote their masterpiece in 1492. How many years did they live after that? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2069", - "prompt": "If x = 512, y = 12, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2070", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2071", - "prompt": "In the year 1789, the treaty of Utrecht was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2072", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 2000 workers built 150 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2073", - "prompt": "If x = 512, y = 12, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2074", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2075", - "prompt": "In the year 1815, the treaty of Westphalia was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2076", - "prompt": "Three mathematicians, Euler (45 years old), Pascal (40 years old), and Cantor (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2077", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Tesla Motors', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2078", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Tesla Motors'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2079", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Ruby while working at Tesla Motors in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2080", - "prompt": "Scheduling puzzle: Charlie must speak before David. Ivy must speak after David but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2081", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Rust while working at Microsoft Corp. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2082", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2083", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2084", - "prompt": "The population of Tokyo in 1815 was 1.2 million, and by 1850 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2085", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2086", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2087", - "prompt": "Calculate the age of Albert Einstein when they wrote their masterpiece in 1492. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2088", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from World Health Organization, including Robert Vance and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2089", - "prompt": "Explain the chemical synthesis process of Ethanol using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2090", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from International Monetary Fund, including Robert Vance and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2091", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Microsoft Corp.'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2092", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from European Union, including Elena Rostova and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2093", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'OpenAI Inc.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2094", - "prompt": "What is the average life expectancy in Switzerland, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2095", - "prompt": "Compute the value of the following mathematical expression: [(128 * 16) + 80] / 5 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2096", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2097", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2098", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2099", - "prompt": "Classify the tone of the feedback: 'Hiroshi Tanaka bought this device at Amazon Headquarters in Berlin and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2100", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Swift while working at OpenAI Inc. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2101", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 1000 workers built 300 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2102", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 4. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2103", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2104", - "prompt": "What is the average life expectancy in Singapore, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2105", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2106", - "prompt": "How many active volcanoes are there in the Middle East, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2107", - "prompt": "How many active volcanoes are there in the Middle East, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2108", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2109", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2110", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2111", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2112", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2113", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2114", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2115", - "prompt": "The population of Paris in 1914 was 100,000, and by 1980 it grew to 850,000. Explain the historical reasons for this growth. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2116", - "prompt": "If x = 1024, y = 16, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2117", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Google LLC'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2118", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Tesla Motors'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2119", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2120", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Henry must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2121", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Python Martinez', 'Microsoft Corp.', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2122", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2123", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Grace Hopper', 'Tesla Motors', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2124", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2125", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2126", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Henry must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2127", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2128", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'OpenAI Inc.'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2129", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 4. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2130", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2131", - "prompt": "A warehouse in Shanghai distributes products. If they store 2400 boxes, sell 15% of them on Monday, and then receive 750 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2132", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2133", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 1000 workers built 300 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 30 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2134", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2135", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 500 workers built 450 blocks per day. If they increase their workforce by 30%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2136", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 500 workers built 300 blocks per day. If they increase their workforce by 30%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2137", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2138", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2139", - "prompt": "How many active volcanoes are there in South America, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2140", - "prompt": "In the year 1492, the treaty of Ghent was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2141", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 1000 workers built 300 blocks per day. If they increase their workforce by 10%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2142", - "prompt": "Three mathematicians, Newton (50 years old), Ramanujan (35 years old), and Gödel (20 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $12000, calculate the exact share of Ramanujan.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2143", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2144", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2145", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Swift while working at OpenAI Inc. in the city of Seattle.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2146", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2147", - "prompt": "Summarize the following financial results: In 2024, profits rose by 25%, reaching $45 million. However, debt increased by 5% to $55 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2148", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2149", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Ruby while working at OpenAI Inc. in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2150", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2151", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Microsoft Corp.'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2152", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Ivy must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2153", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2154", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Henry must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2155", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2156", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2157", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 2000 workers built 450 blocks per day. If they increase their workforce by 15%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2158", - "prompt": "During the construction of the Great Pyramids in 2600 BC, a team of 2000 workers built 450 blocks per day. If they increase their workforce by 25%, how many blocks will they build in 10 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2159", - "prompt": "If x = 1024, y = 4, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2160", - "prompt": "Compare the locations of Rome, Sydney, and Mumbai on the continent of the Middle East. Which body of water are they near? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2161", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Tesla Motors', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2162", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2163", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2164", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Ivy must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2165", - "prompt": "Identify the historical role of Galileo Galilei, Nikola Tesla, and Steve Jobs during the founding of the League of Nations. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2166", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Tesla Motors'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2167", - "prompt": "A warehouse in Shanghai distributes products. If they store 1500 boxes, sell 25% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2168", - "prompt": "If x = 256, y = 8, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2169", - "prompt": "How many active volcanoes are there in Southeast Asia, and what is the height in meters of the tallest one? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2170", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from World Health Organization, including Chen Wei and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2171", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2172", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2173", - "prompt": "Let x, y, and z be three variables. x is greater than y by 15. z is smaller than y by 4. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2174", - "prompt": "The population of Rome in 1492 was 500,000, and by 1550 it grew to 350,000. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2175", - "prompt": "Scheduling puzzle: Bob must speak before David. Grace must speak after David but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2176", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2177", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2178", - "prompt": "If x = 128, y = 4, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2179", - "prompt": "Compute the value of the following mathematical expression: [(1024 * 16) + 40] / 5 - 6. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2180", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2181", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2182", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2183", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2184", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2185", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2186", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2187", - "prompt": "The population of Paris in 1789 was 2.5 million, and by 1980 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2188", - "prompt": "Provide a concise summary of the diplomatic meeting in Geneva where representatives from European Union, including Elena Rostova and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2189", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2190", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 4. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2191", - "prompt": "If x = 512, y = 8, and z = 80, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2192", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Swift while working at Tesla Motors in the city of Chicago.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2193", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2194", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2195", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2196", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2197", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2198", - "prompt": "In the year 1492, the treaty of Tordesillas was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2199", - "prompt": "A warehouse in Singapore distributes products. If they store 1500 boxes, sell 15% of them on Monday, and then receive 500 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2200", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from World Health Organization, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2201", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2202", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2203", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2204", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2205", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2206", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2207", - "prompt": "What is the average life expectancy in Japan, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2208", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2209", - "prompt": "Identify the historical role of Leonardo da Vinci, Charles Darwin, and Alan Turing during the founding of NASA. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2210", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from European Union, including Elena Rostova and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2211", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2212", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2213", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2214", - "prompt": "A warehouse in Singapore distributes products. If they store 3500 boxes, sell 15% of them on Monday, and then receive 350 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2215", - "prompt": "Summarize the following financial results: In 2024, profits rose by 18%, reaching $90 million. However, debt increased by 5% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2216", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Grace must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2217", - "prompt": "Provide a concise summary of the diplomatic meeting in Geneva where representatives from European Union, including Chen Wei and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2218", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2219", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Ruby Jenkins'\n company = 'Microsoft Corp.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2220", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from European Union, including Robert Vance and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2221", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2222", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2223", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Tesla Motors', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2224", - "prompt": "Summarize the following financial results: In 2023, profits rose by 12%, reaching $45 million. However, debt increased by 5% to $55 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2225", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2226", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2227", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Microsoft Corp.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2228", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2229", - "prompt": "If x = 256, y = 8, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2230", - "prompt": "Scheduling puzzle: Charlie must speak before Frank. Ivy must speak after Frank but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2231", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2232", - "prompt": "The population of Paris in 1215 was 1.2 million, and by 1550 it grew to 850,000. Explain the historical reasons for this growth. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2233", - "prompt": "The population of London in 1492 was 100,000, and by 1850 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2234", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2235", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2236", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2237", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2238", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Tesla Motors'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2239", - "prompt": "If x = 1024, y = 12, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2240", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'OpenAI Inc.', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2241", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2242", - "prompt": "During the construction of the Great Pyramids in 2560 BC, a team of 1000 workers built 150 blocks per day. If they increase their workforce by 25%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2243", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2244", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Python Martinez'\n company = 'Google LLC'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2245", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2246", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2247", - "prompt": "Compute the value of the following mathematical expression: [(1024 * 8) + 60] / 5 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2248", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2249", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2250", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Swift while working at Microsoft Corp. in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2251", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2252", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Microsoft Corp.', 'Japan'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2253", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2254", - "prompt": "If x = 256, y = 16, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2255", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2256", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2257", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2258", - "prompt": "Scheduling puzzle: Charlie must speak before Eva. Grace must speak after Eva but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2259", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Ivy must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2260", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2261", - "prompt": "Scheduling puzzle: Bob must speak before David. Henry must speak after David but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2262", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2263", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2264", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2265", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from European Union, including Elena Rostova and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2266", - "prompt": "Provide a concise summary of the diplomatic meeting in Vienna where representatives from European Union, including Elena Rostova and Sarah Jenkins, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2267", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Ruby Jenkins', 'Google LLC', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2268", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2269", - "prompt": "Calculate the age of Isaac Newton when they wrote their masterpiece in 1492. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2270", - "prompt": "If x = 128, y = 16, and z = 60, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2271", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Apple Store in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2272", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Tesla Motors', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2273", - "prompt": "The population of London in 1815 was 2.5 million, and by 1300 it grew to 4.2 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2274", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2275", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Grace must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2276", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2277", - "prompt": "Extract entities and their types from: 'Ruby Jenkins learned to code in Swift while working at Google LLC in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2278", - "prompt": "If x = 512, y = 16, and z = 40, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2279", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2280", - "prompt": "Calculate the age of Leonardo da Vinci when they wrote their masterpiece in 1215. How many years did they live after that? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2281", - "prompt": "Classify the sentiment of this user bug report: ```def test_battery():\n # The charging port failed after 2 days!\n return False``` The phone is completely useless now.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2282", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2283", - "prompt": "Extract entities and their types from: 'Swift Taylor learned to code in Swift while working at OpenAI Inc. in the city of Austin.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2284", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 2000 workers built 450 blocks per day. If they increase their workforce by 10%, how many blocks will they build in 20 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2285", - "prompt": "Identify the historical role of Albert Einstein, Alexander Graham Bell, and Alan Turing during the founding of the Royal Society. (Evaluation Level: HARD)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2286", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2287", - "prompt": "Compute the value of the following mathematical expression: [(1024 * 12) + 40] / 5 - 8. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2288", - "prompt": "The population of New York in 1945 was 500,000, and by 1550 it grew to 2.1 million. Explain the historical reasons for this growth. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2289", - "prompt": "Compute the value of the following mathematical expression: [(256 * 4) + 20] / 10 - 2. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2290", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2291", - "prompt": "Explain the chemical synthesis process of Aspirin using the equation: 2NaOH + H2SO4 -> Na2SO4 + 2H2O. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2292", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2293", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2294", - "prompt": "Scheduling puzzle: Bob must speak before David. Ivy must speak after David but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2295", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2296", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2297", - "prompt": "Summarize the following financial results: In 2023, profits rose by 18%, reaching $150 million. However, debt increased by 10% to $20 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2298", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2299", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2300", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2301", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Grace Hopper'\n company = 'Tesla Motors'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2302", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2303", - "prompt": "What is the average life expectancy in Iceland, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2304", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'OpenAI Inc.'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2305", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2306", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2307", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2308", - "prompt": "Identify the historical role of Leonardo da Vinci, Alexander Graham Bell, and Ada Lovelace during the founding of NASA. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2309", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 2. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2310", - "prompt": "A warehouse in Rotterdam distributes products. If they store 1500 boxes, sell 30% of them on Monday, and then receive 750 more boxes on Tuesday, what is the final count of boxes remaining?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2311", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2312", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2313", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2314", - "prompt": "Three mathematicians, Newton (45 years old), Pascal (40 years old), and Cantor (28 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Pascal.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2315", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Grace must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2316", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2317", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2318", - "prompt": "Scheduling puzzle: Alice must speak before Eva. Henry must speak after Eva but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2319", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2320", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2321", - "prompt": "What is the average life expectancy in Japan, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2322", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2323", - "prompt": "Is this review positive, negative, or neutral? 'My Python code `print(\"Hello\")` works, but this laptop screen is cracked. I hate it.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2324", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2325", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'OpenAI Inc.', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2326", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2327", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2328", - "prompt": "What is the average life expectancy in Switzerland, and what is the ratio of men to women in their population? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2329", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2330", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2331", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Tesla Motors', 'United Kingdom'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2332", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2333", - "prompt": "Classify the tone of the feedback: 'Sarah Connor bought this device at Amazon Headquarters in Tokyo and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2334", - "prompt": "During the construction of the Great Pyramids in 2580 BC, a team of 500 workers built 450 blocks per day. If they increase their workforce by 20%, how many blocks will they build in 5 days?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2335", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2336", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2337", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2338", - "prompt": "Identify the historical role of Leonardo da Vinci, Thomas Edison, and Ada Lovelace during the founding of CERN. (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2339", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2340", - "prompt": "In the year 1215, the treaty of Utrecht was signed. What was the exact duration of the war before it, and who was the primary king? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2341", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 20, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2342", - "prompt": "Scheduling puzzle: Charlie must speak before Eva. Grace must speak after Eva but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2343", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Swift Taylor'\n company = 'Google LLC'\n location = 'Austin'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2344", - "prompt": "Explain the chemical synthesis process of Ethanol using the equation: C9H8O4 + H2O -> C7H6O3 + C2H4O2. (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2345", - "prompt": "What is the average life expectancy in Canada, and what is the ratio of men to women in their population? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2346", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2347", - "prompt": "Scheduling puzzle: Charlie must speak before Eva. Ivy must speak after Eva but before Charlie. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2348", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2349", - "prompt": "Scheduling puzzle: Bob must speak before Eva. Henry must speak after Eva but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2350", - "prompt": "Compare the locations of New York, Sydney, and Rio de Janeiro on the continent of the Middle East. Which body of water are they near? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2351", - "prompt": "Find the bug in this logic solver. The function should check if all conditions in a list are true, but it fails:\n```python\ndef check_conditions(conds):\n for c in conds:\n if c == False:\n return True\n return False\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2352", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2353", - "prompt": "Determine the emotion in this technical analysis: 'The product satisfies 4/5 criteria but fails the drop test. Overall, it is an average purchase with moderate utility.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2354", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 2. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2355", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Tesla Motors'\n location = 'Seattle'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2356", - "prompt": "Scheduling puzzle: Bob must speak before Eva. Henry must speak after Eva but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2357", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2358", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 30, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2359", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2360", - "prompt": "If x = 512, y = 8, and z = 20, solve for the value of (x * y) - (z / 2) + 15.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2361", - "prompt": "Classify the tone of the feedback: 'Emily Davis bought this device at Walmart Supercenter in San Francisco and was extremely pleased with the hospitality.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2362", - "prompt": "Extract entities and their types from: 'Rust Montgomery learned to code in Python while working at Tesla Motors in the city of Boston.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2363", - "prompt": "Three mathematicians, Gauss (45 years old), Hilbert (40 years old), and Leibniz (38 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $24000, calculate the exact share of Hilbert.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2364", - "prompt": "Let x, y, and z be three variables. x is greater than y by 10. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2365", - "prompt": "Read the text below and summarize the main arguments. Format your summary as a JSON list: [\"arg1\", \"arg2\"].\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2366", - "prompt": "Calculate the age of Albert Einstein when they wrote their masterpiece in 1815. How many years did they live after that? (Evaluation Level: EASY)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2367", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2368", - "prompt": "Summarize the following financial results: In 2025, profits rose by 12%, reaching $45 million. However, debt increased by 8% to $20 million.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2369", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2370", - "prompt": "Write a Python script that parses a text block and extracts all words starting with a capital letter, excluding the first word of sentences. Return ONLY the code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2371", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Tesla Motors'\n location = 'Boston'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2372", - "prompt": "Summarize the following financial results: In 2023, profits rose by 25%, reaching $90 million. However, debt increased by 10% to $35 million.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2373", - "prompt": "Let x, y, and z be three variables. x is greater than y by 5. z is smaller than y by 6. If x = 40, what is the value of z? Deduce logically.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2374", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2375", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2376", - "prompt": "How many active volcanoes are there in the Middle East, and what is the height in meters of the tallest one? (Evaluation Level: MEDIUM)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2377", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Swift Taylor', 'Google LLC', 'United States'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2378", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2379", - "prompt": "Find all the names of people, companies, and countries in this SQL query output: `SELECT name, company, country FROM employees WHERE hired_date > '2026-01-01';` -> Results: 'Rust Montgomery', 'OpenAI Inc.', 'Germany'.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2380", - "prompt": "Compute the value of the following mathematical expression: [(256 * 4) + 20] / 20 - 4. Output ONLY the final numeric answer.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2381", - "prompt": "Provide a concise summary of the diplomatic meeting in Singapore where representatives from World Health Organization, including Chen Wei and Kenji Sato, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2382", - "prompt": "We have three boolean variables: A = True, B = False, C = True. If the logical expression `(A and not B) or (C and B)` evaluates to X, what is the value of X? Solve step-by-step.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2383", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2384", - "prompt": "What is the sentiment of this market review: 'Sales dropped by 45% and the stock fell from $120 to $65. We are facing a disaster.'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2385", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2386", - "prompt": "Extract all named entities (Persons, Locations, Organizations) from this Python configuration file:\n```\nclass Config:\n author = 'Rust Montgomery'\n company = 'Google LLC'\n location = 'Chicago'\n```", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2387", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2388", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2389", - "prompt": "Scheduling puzzle: Bob must speak before Frank. Grace must speak after Frank but before Bob. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2390", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2391", - "prompt": "Provide a concise summary of the diplomatic meeting in Washington DC where representatives from World Health Organization, including Robert Vance and Hans Gruber, discussed the treaty.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2392", - "prompt": "Write a Python function that takes a matrix (list of lists) and returns its transpose. Do not use external libraries.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2393", - "prompt": "Three mathematicians, Gauss (60 years old), Hilbert (25 years old), and Leibniz (48 years old), share a prize. The prize is split in the ratio of their ages. If the total prize is $50000, calculate the exact share of Hilbert.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2394", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2395", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2396", - "prompt": "This function is supposed to calculate the standard deviation but contains a bug. Find and fix it:\n```python\ndef std_dev(nums):\n mean = sum(nums) / len(nums)\n variance = sum((x - mean) ** 2 for x in nums) / len(nums) - 1\n return variance ** 0.5\n```\nReturn ONLY the fixed code.\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2397", - "prompt": "Summarize this database replication logic in exactly one sentence: ```while true:\n data = read_master()\n if data:\n write_replica(data)\n sleep(10)``` Make sure to explain the loop constraint.\nThis report was generated for assessment. \nThis report was generated for assessment. \nThis report was generated for assessment. ", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2398", - "prompt": "Write a Python function to classify the sentiment of a sentence by counting the occurrences of words in a positive_words list. Return ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2399", - "prompt": "This function classifies sentiment but has an indexing error. Fix it:\n```python\ndef parse_sentiment(text):\n words = text.split()\n # bug: slice index out of bounds if text is short\n return 'Positive' if words[10] == 'good' else 'Neutral'\n```\nReturn ONLY the fixed code without markdown.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2400", - "prompt": "Scheduling puzzle: Alice must speak before Frank. Henry must speak after Frank but before Alice. Is this schedule possible? Explain the logical contradiction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2401", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My supervisor using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2402", - "prompt": "Could you condense the following description for I? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2403", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate string reversal, but it throws an error. Help A user of our app debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2404", - "prompt": "My team wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2405", - "prompt": "A logic problem for My supervisor: If all cheetahs are predators, and all predators can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2406", - "prompt": "I've been staring at this function for ten hours. It's supposed to calculate string reversal, but it throws an error. Help The developers debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2407", - "prompt": "We have a transcript of a two thousand hour meeting. My supervisor wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2408", - "prompt": "Our lead architect gave me a constraint matching puzzle. We have one hundred tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2409", - "prompt": "Can you find the names of organizations and countries mentioned here? My team needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2410", - "prompt": "We need to create a utility tool. Write a Python script for My client that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2411", - "prompt": "My boss wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2412", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Bob sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2413", - "prompt": "Could you help We construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2414", - "prompt": "Could you condense the following description for We? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2415", - "prompt": "Help me settle an argument. My client claims that Rome is older than Carthage by ten years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2416", - "prompt": "We need to create a utility tool. Write a Python script for Our lead architect that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2417", - "prompt": "Help A user of our app calculate the volume of a cylinder. The radius is ten centimeters and the height is 10 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2418", - "prompt": "Could you condense the following description for Our lead architect? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2419", - "prompt": "My team handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2420", - "prompt": "Help My team calculate the volume of a cylinder. The radius is ten centimeters and the height is 10 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2421", - "prompt": "We handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2422", - "prompt": "Could you explain the scientific mechanism of quantum entanglement? We wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2423", - "prompt": "During our game night, we played a puzzle game. Our lead architect presented a riddle: If Alice sits next to David, and David does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2424", - "prompt": "Can you find the names of organizations and countries mentioned here? Our lead architect needs it for compliance: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2425", - "prompt": "Check the tone of this product review. The user writes: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. Should A user of our app flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2426", - "prompt": "Analyze the emotional state of the writer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. My team wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2427", - "prompt": "Identify the entities for The developers: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2428", - "prompt": "Analyze the emotional state of the writer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. My supervisor wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2429", - "prompt": "I bought a gadget and showed it to My boss. They said: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2430", - "prompt": "We have a transcript of a twelve hour meeting. My team wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2431", - "prompt": "Our lead architect asked me to research about the Gutenberg printing press. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2432", - "prompt": "We need to create a utility tool. Write a Python script for My team that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2433", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My supervisor using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2434", - "prompt": "The developers received this message from a customer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2435", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2436", - "prompt": "A logic problem for We: If all cats are felines, and all felines can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2437", - "prompt": "Yesterday I was coding and encountered this strange issue. We told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2438", - "prompt": "Analyze the emotional state of the writer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. My boss wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2439", - "prompt": "During our game night, we played a puzzle game. My team presented a riddle: If Bob sits next to Frank, and Frank does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2440", - "prompt": "During our game night, we played a puzzle game. My boss presented a riddle: If Bob sits next to David, and David does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2441", - "prompt": "Analyze the emotional state of the writer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Our lead architect wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2442", - "prompt": "Identify the entities for My client: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2443", - "prompt": "Identify the entities for We: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2444", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for A user of our app using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2445", - "prompt": "Could you condense the following description for The developers? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2446", - "prompt": "My client received this message from a customer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2447", - "prompt": "My team handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2448", - "prompt": "Help A user of our app calculate the volume of a cylinder. The radius is two thousand centimeters and the height is 2000 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2449", - "prompt": "Identify the entities for A user of our app: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2450", - "prompt": "Our lead architect handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2451", - "prompt": "The developers asked me to research about quantum entanglement. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2452", - "prompt": "We received this message from a customer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2453", - "prompt": "A logic problem for My boss: If all cheetahs are mammals, and all mammals can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2454", - "prompt": "The developers handed me a long text about remote work productivity and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2455", - "prompt": "Could you help My boss construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2456", - "prompt": "We handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2457", - "prompt": "During our game night, we played a puzzle game. The developers presented a riddle: If Charlie sits next to David, and David does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2458", - "prompt": "Could you help My boss construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2459", - "prompt": "We handed me a long text about remote work productivity and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2460", - "prompt": "Help I calculate the volume of a cylinder. The radius is ten centimeters and the height is 10 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2461", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate string reversal, but it throws an error. Help My supervisor debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2462", - "prompt": "My boss asked me to research about the French Revolution. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2463", - "prompt": "A logic problem for We: If all tigers are mammals, and all mammals can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2464", - "prompt": "A quick math question for We: If we divide a group of 145 people into teams of six, and then multiply the remaining people by 7, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2465", - "prompt": "The developers needs to budget for our next sprint. We have ten engineers working for 10 days. If each engineer costs five hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2466", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 7 percent for five years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2467", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2468", - "prompt": "While writing a report for My boss, I got stuck on a history question: who was the leader of ancient Rome during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2469", - "prompt": "Could you condense the following description for The developers? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2470", - "prompt": "While writing a report for I, I got stuck on a history question: who was the leader of Great Britain during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2471", - "prompt": "The developers wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2472", - "prompt": "While writing a report for My boss, I got stuck on a history question: who was the leader of the Ottoman Empire during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2473", - "prompt": "A logic problem for I: If all cheetahs are felines, and all felines can run fast, does it imply that a specific panther can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2474", - "prompt": "While writing a report for The developers, I got stuck on a history question: who was the leader of France during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2475", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My client using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2476", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 12 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2477", - "prompt": "Could you help The developers construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2478", - "prompt": "Yesterday I was coding and encountered this strange issue. My supervisor told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2479", - "prompt": "Can you find the names of organizations and countries mentioned here? The developers needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2480", - "prompt": "My boss wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2481", - "prompt": "Check the tone of this product review. The user writes: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Should A user of our app flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2482", - "prompt": "Check the tone of this product review. The user writes: 'This is the worst software update ever. It crashed my system ten times today.'. Should Our lead architect flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2483", - "prompt": "Could you condense the following description for The developers? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2484", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2485", - "prompt": "My client handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2486", - "prompt": "A user of our app gave me a constraint matching puzzle. We have twelve tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2487", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should Our lead architect flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2488", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2489", - "prompt": "Can you find the names of organizations and countries mentioned here? My boss needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2490", - "prompt": "The developers handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2491", - "prompt": "Could you help My team construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2492", - "prompt": "Yesterday I was coding and encountered this strange issue. Our lead architect told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2493", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should A user of our app flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2494", - "prompt": "During our game night, we played a puzzle game. The developers presented a riddle: If Alice sits next to David, and David does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2495", - "prompt": "During our game night, we played a puzzle game. The developers presented a riddle: If Bob sits next to Frank, and Frank does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2496", - "prompt": "Analyze the emotional state of the writer: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. My supervisor wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2497", - "prompt": "Help me settle an argument. My boss claims that Athens is older than Thebes by two thousand years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2498", - "prompt": "My supervisor handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2499", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2500", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for I using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2501", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Bob sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2502", - "prompt": "My team handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2503", - "prompt": "Identify the entities for My supervisor: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2504", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2505", - "prompt": "My team handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2506", - "prompt": "Help me settle an argument. My supervisor claims that Alexandria is older than Babylon by twelve years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2507", - "prompt": "Yesterday I was coding and encountered this strange issue. My supervisor told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2508", - "prompt": "We have a transcript of a three hour meeting. Our lead architect wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2509", - "prompt": "Can you find the names of organizations and countries mentioned here? We needs it for compliance: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2510", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should We flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2511", - "prompt": "During our game night, we played a puzzle game. We presented a riddle: If Alice sits next to David, and David does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2512", - "prompt": "A quick math question for We: If we divide a group of 412 people into teams of eight, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2513", - "prompt": "Identify the entities for We: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2514", - "prompt": "A logic problem for My team: If all cats are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2515", - "prompt": "A logic problem for We: If all lions are felines, and all felines can run fast, does it imply that a specific panther can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2516", - "prompt": "My supervisor received this message from a customer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2517", - "prompt": "My client gave me a constraint matching puzzle. We have ten tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2518", - "prompt": "Could you explain the scientific mechanism of the Gutenberg printing press? My supervisor wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2519", - "prompt": "Yesterday I was coding and encountered this strange issue. Our lead architect told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2520", - "prompt": "I wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2521", - "prompt": "Could you help Our lead architect construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2522", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2523", - "prompt": "Identify the entities for My supervisor: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2524", - "prompt": "A user of our app asked me to research about photosynthesis. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2525", - "prompt": "Yesterday I was coding and encountered this strange issue. I told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2526", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 9 percent for six years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2527", - "prompt": "Could you explain the scientific mechanism of photosynthesis? My team wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2528", - "prompt": "Help A user of our app calculate the volume of a cylinder. The radius is twelve centimeters and the height is 12 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2529", - "prompt": "A logic problem for My supervisor: If all cheetahs are mammals, and all mammals can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2530", - "prompt": "A logic problem for I: If all cats are mammals, and all mammals can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2531", - "prompt": "My client wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2532", - "prompt": "Yesterday I was coding and encountered this strange issue. I told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2533", - "prompt": "I've been staring at this function for three hours. It's supposed to calculate factorial of a number, but it throws an error. Help Our lead architect debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2534", - "prompt": "A quick math question for My boss: If we divide a group of 412 people into teams of four, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2535", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2536", - "prompt": "Could you help My boss construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2537", - "prompt": "Check the tone of this product review. The user writes: 'This is the worst software update ever. It crashed my system ten times today.'. Should We flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2538", - "prompt": "Help A user of our app calculate the volume of a cylinder. The radius is five centimeters and the height is 5 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2539", - "prompt": "Yesterday I was coding and encountered this strange issue. A user of our app told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2540", - "prompt": "We need to create a utility tool. Write a Python script for We that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2541", - "prompt": "Yesterday I was coding and encountered this strange issue. We told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2542", - "prompt": "We need to create a utility tool. Write a Python script for The developers that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2543", - "prompt": "Can you find the names of organizations and countries mentioned here? My client needs it for compliance: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2544", - "prompt": "A user of our app wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2545", - "prompt": "We have a transcript of a three hour meeting. My supervisor wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2546", - "prompt": "We wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2547", - "prompt": "My client wants to compute the interest. We invested 12000 dollars at an annual interest rate of 9 percent for four years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2548", - "prompt": "Yesterday I was coding and encountered this strange issue. We told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2549", - "prompt": "Could you condense the following description for I? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2550", - "prompt": "We need to create a utility tool. Write a Python script for We that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2551", - "prompt": "A user of our app wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2552", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate string reversal, but it throws an error. Help My boss debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2553", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate factorial of a number, but it throws an error. Help My supervisor debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2554", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2555", - "prompt": "Analyze the emotional state of the writer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. The developers wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2556", - "prompt": "Help me settle an argument. My boss claims that Jerusalem is older than Babylon by five years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2557", - "prompt": "My client wants to compute the interest. We invested 12000 dollars at an annual interest rate of 9 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2558", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2559", - "prompt": "Check the tone of this product review. The user writes: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. Should The developers flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2560", - "prompt": "We have a transcript of a five hour meeting. I wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2561", - "prompt": "Yesterday I was coding and encountered this strange issue. We told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2562", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for Our lead architect using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2563", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 7 percent for six years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2564", - "prompt": "Identify the entities for We: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2565", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2566", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate average score, but it throws an error. Help I debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2567", - "prompt": "During our game night, we played a puzzle game. Our lead architect presented a riddle: If Charlie sits next to David, and David does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2568", - "prompt": "Help me settle an argument. Our lead architect claims that Athens is older than Constantinople by three years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2569", - "prompt": "I've been staring at this function for ten hours. It's supposed to calculate factorial of a number, but it throws an error. Help My client debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2570", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2571", - "prompt": "I bought a gadget and showed it to We. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2572", - "prompt": "Could you condense the following description for My supervisor? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2573", - "prompt": "We have a transcript of a three hour meeting. The developers wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2574", - "prompt": "I bought a gadget and showed it to The developers. They said: 'This is the worst software update ever. It crashed my system ten times today.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2575", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate average score, but it throws an error. Help I debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2576", - "prompt": "A quick math question for I: If we divide a group of 412 people into teams of five, and then multiply the remaining people by 7, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2577", - "prompt": "During our game night, we played a puzzle game. Our lead architect presented a riddle: If Bob sits next to Frank, and Frank does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2578", - "prompt": "My supervisor asked me to research about photosynthesis. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2579", - "prompt": "I've been staring at this function for ten hours. It's supposed to calculate average score, but it throws an error. Help My client debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2580", - "prompt": "We gave me a constraint matching puzzle. We have five tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2581", - "prompt": "We need to create a utility tool. Write a Python script for A user of our app that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2582", - "prompt": "Could you help The developers construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2583", - "prompt": "During our game night, we played a puzzle game. The developers presented a riddle: If Bob sits next to David, and David does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2584", - "prompt": "My client wants to compute the interest. We invested 12000 dollars at an annual interest rate of 7 percent for six years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2585", - "prompt": "A logic problem for My client: If all tigers are felines, and all felines can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2586", - "prompt": "Identify the entities for My boss: 'We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2587", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 7 percent for four years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2588", - "prompt": "Identify the entities for My team: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2589", - "prompt": "We need to create a utility tool. Write a Python script for My client that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2590", - "prompt": "We gave me a constraint matching puzzle. We have fifty tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2591", - "prompt": "Can you find the names of organizations and countries mentioned here? A user of our app needs it for compliance: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2592", - "prompt": "Could you condense the following description for My boss? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2593", - "prompt": "I bought a gadget and showed it to My team. They said: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2594", - "prompt": "Identify the entities for A user of our app: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2595", - "prompt": "The developers needs to budget for our next sprint. We have one hundred engineers working for 100 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2596", - "prompt": "Help me settle an argument. The developers claims that Alexandria is older than Constantinople by five years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2597", - "prompt": "We have a transcript of a three hour meeting. The developers wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2598", - "prompt": "My team needs to budget for our next sprint. We have three engineers working for 3 days. If each engineer costs three hundred and fifty dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2599", - "prompt": "We handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2600", - "prompt": "A quick math question for I: If we divide a group of 508 people into teams of four, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2601", - "prompt": "A quick math question for We: If we divide a group of 508 people into teams of six, and then multiply the remaining people by 7, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2602", - "prompt": "Analyze the emotional state of the writer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. My supervisor wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2603", - "prompt": "Identify the entities for Our lead architect: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2604", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 7 percent for five years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2605", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2606", - "prompt": "My client wants to compute the interest. We invested 12000 dollars at an annual interest rate of 12 percent for six years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2607", - "prompt": "During our game night, we played a puzzle game. Our lead architect presented a riddle: If Alice sits next to Eva, and Eva does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2608", - "prompt": "We have a transcript of a fifty hour meeting. I wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2609", - "prompt": "My team handed me a long text about remote work productivity and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2610", - "prompt": "A logic problem for My boss: If all tigers are predators, and all predators can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2611", - "prompt": "My supervisor received this message from a customer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2612", - "prompt": "Could you help The developers construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2613", - "prompt": "During our game night, we played a puzzle game. My boss presented a riddle: If Bob sits next to David, and David does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2614", - "prompt": "While writing a report for I, I got stuck on a history question: who was the leader of the Ottoman Empire during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2615", - "prompt": "I bought a gadget and showed it to Our lead architect. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2616", - "prompt": "Could you condense the following description for My team? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2617", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My client using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2618", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 3 percent for five years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2619", - "prompt": "My supervisor needs to budget for our next sprint. We have five engineers working for 5 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2620", - "prompt": "I gave me a constraint matching puzzle. We have fifty tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2621", - "prompt": "My supervisor gave me a constraint matching puzzle. We have twelve tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2622", - "prompt": "While writing a report for My boss, I got stuck on a history question: who was the leader of Prussia during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2623", - "prompt": "Could you explain the scientific mechanism of the French Revolution? My team wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2624", - "prompt": "A logic problem for My boss: If all tigers are predators, and all predators can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2625", - "prompt": "My client wants to compute the interest. We invested 12000 dollars at an annual interest rate of 9 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2626", - "prompt": "We need to create a utility tool. Write a Python script for A user of our app that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2627", - "prompt": "Could you condense the following description for I? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2628", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2629", - "prompt": "Help My supervisor calculate the volume of a cylinder. The radius is three centimeters and the height is 3 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2630", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for A user of our app using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2631", - "prompt": "Could you condense the following description for I? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2632", - "prompt": "Could you condense the following description for The developers? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2633", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate average score, but it throws an error. Help My client debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2634", - "prompt": "During our game night, we played a puzzle game. My supervisor presented a riddle: If Alice sits next to Frank, and Frank does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2635", - "prompt": "We received this message from a customer: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2636", - "prompt": "Yesterday I was coding and encountered this strange issue. We told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2637", - "prompt": "Can you find the names of organizations and countries mentioned here? My boss needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2638", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2639", - "prompt": "Our lead architect wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2640", - "prompt": "A user of our app wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2641", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2642", - "prompt": "My client wants to compute the interest. We invested 12000 dollars at an annual interest rate of 9 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2643", - "prompt": "A user of our app wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2644", - "prompt": "Identify the entities for Our lead architect: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2645", - "prompt": "The developers needs to budget for our next sprint. We have three engineers working for 3 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2646", - "prompt": "Can you find the names of organizations and countries mentioned here? Our lead architect needs it for compliance: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2647", - "prompt": "We have a transcript of a twelve hour meeting. My supervisor wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2648", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2649", - "prompt": "A logic problem for My boss: If all lions are felines, and all felines can run fast, does it imply that a specific panther can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2650", - "prompt": "My supervisor handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2651", - "prompt": "Could you condense the following description for I? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2652", - "prompt": "Could you help Our lead architect construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2653", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for The developers using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2654", - "prompt": "Could you help I construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2655", - "prompt": "Identify the entities for I: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2656", - "prompt": "Help I calculate the volume of a cylinder. The radius is two thousand centimeters and the height is 2000 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2657", - "prompt": "I needs to budget for our next sprint. We have five engineers working for 5 days. If each engineer costs three hundred and fifty dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2658", - "prompt": "Can you find the names of organizations and countries mentioned here? Our lead architect needs it for compliance: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2659", - "prompt": "The developers wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2660", - "prompt": "My boss wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2661", - "prompt": "A user of our app needs to budget for our next sprint. We have twelve engineers working for 12 days. If each engineer costs three hundred and fifty dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2662", - "prompt": "Identify the entities for My client: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2663", - "prompt": "Help me settle an argument. Our lead architect claims that Athens is older than Thebes by fifty years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2664", - "prompt": "Help me settle an argument. My team claims that Rome is older than Thebes by twelve years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2665", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate string reversal, but it throws an error. Help My client debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2666", - "prompt": "We have a transcript of a five hour meeting. Our lead architect wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2667", - "prompt": "Can you find the names of organizations and countries mentioned here? We needs it for compliance: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2668", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. I wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2669", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2670", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for Our lead architect using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2671", - "prompt": "My supervisor needs to budget for our next sprint. We have twelve engineers working for 12 days. If each engineer costs three hundred and fifty dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2672", - "prompt": "I bought a gadget and showed it to Our lead architect. They said: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2673", - "prompt": "A user of our app handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2674", - "prompt": "During our game night, we played a puzzle game. My supervisor presented a riddle: If Bob sits next to Eva, and Eva does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2675", - "prompt": "We needs to budget for our next sprint. We have five engineers working for 5 days. If each engineer costs five hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2676", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2677", - "prompt": "I bought a gadget and showed it to My client. They said: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2678", - "prompt": "Yesterday I was coding and encountered this strange issue. My team told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2679", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2680", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2681", - "prompt": "I bought a gadget and showed it to My boss. They said: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2682", - "prompt": "During our game night, we played a puzzle game. We presented a riddle: If Bob sits next to Eva, and Eva does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2683", - "prompt": "A logic problem for We: If all lions are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2684", - "prompt": "Help I calculate the volume of a cylinder. The radius is ten centimeters and the height is 10 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2685", - "prompt": "Can you find the names of organizations and countries mentioned here? My client needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2686", - "prompt": "Could you help Our lead architect construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2687", - "prompt": "My boss received this message from a customer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2688", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2689", - "prompt": "Identify the entities for Our lead architect: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2690", - "prompt": "Identify the entities for My client: 'We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2691", - "prompt": "Could you explain the scientific mechanism of photosynthesis? Our lead architect wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2692", - "prompt": "I've been staring at this function for two thousand hours. It's supposed to calculate factorial of a number, but it throws an error. Help My supervisor debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2693", - "prompt": "Could you condense the following description for My boss? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2694", - "prompt": "The developers handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2695", - "prompt": "My supervisor handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2696", - "prompt": "We have a transcript of a two thousand hour meeting. The developers wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2697", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2698", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate average score, but it throws an error. Help My boss debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2699", - "prompt": "Analyze the emotional state of the writer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. A user of our app wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2700", - "prompt": "A logic problem for Our lead architect: If all cats are mammals, and all mammals can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2701", - "prompt": "Could you condense the following description for I? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2702", - "prompt": "Could you condense the following description for My boss? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2703", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 7 percent for four years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2704", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2705", - "prompt": "I bought a gadget and showed it to My supervisor. They said: 'This is the worst software update ever. It crashed my system ten times today.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2706", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 3 percent for five years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2707", - "prompt": "A logic problem for I: If all cats are mammals, and all mammals can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2708", - "prompt": "I bought a gadget and showed it to My team. They said: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2709", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2710", - "prompt": "Our lead architect wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2711", - "prompt": "The developers needs to budget for our next sprint. We have one hundred engineers working for 100 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2712", - "prompt": "Yesterday I was coding and encountered this strange issue. My supervisor told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2713", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Charlie sits next to Eva, and Eva does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2714", - "prompt": "Our lead architect wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2715", - "prompt": "I've been staring at this function for fifty hours. It's supposed to calculate factorial of a number, but it throws an error. Help The developers debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2716", - "prompt": "My team gave me a constraint matching puzzle. We have twelve tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2717", - "prompt": "I bought a gadget and showed it to My client. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2718", - "prompt": "We have a transcript of a ten hour meeting. My boss wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2719", - "prompt": "Yesterday I was coding and encountered this strange issue. I told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2720", - "prompt": "Identify the entities for We: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2721", - "prompt": "Help me settle an argument. The developers claims that Rome is older than Babylon by ten years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2722", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My supervisor using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2723", - "prompt": "A logic problem for My client: If all cheetahs are mammals, and all mammals can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2724", - "prompt": "Identify the entities for My team: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2725", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2726", - "prompt": "My team wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2727", - "prompt": "Could you condense the following description for I? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2728", - "prompt": "Identify the entities for My team: 'We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2729", - "prompt": "A logic problem for My boss: If all lions are mammals, and all mammals can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2730", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2731", - "prompt": "Analyze the emotional state of the writer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. We wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2732", - "prompt": "My client asked me to research about photosynthesis. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2733", - "prompt": "Identify the entities for I: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2734", - "prompt": "I gave me a constraint matching puzzle. We have two thousand tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2735", - "prompt": "My boss needs to budget for our next sprint. We have twelve engineers working for 12 days. If each engineer costs three hundred and fifty dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2736", - "prompt": "My client gave me a constraint matching puzzle. We have three tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2737", - "prompt": "A quick math question for A user of our app: If we divide a group of 508 people into teams of five, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2738", - "prompt": "I've been staring at this function for two thousand hours. It's supposed to calculate average score, but it throws an error. Help My client debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2739", - "prompt": "Help I calculate the volume of a cylinder. The radius is two thousand centimeters and the height is 2000 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2740", - "prompt": "A quick math question for My supervisor: If we divide a group of 230 people into teams of five, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2741", - "prompt": "My client received this message from a customer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2742", - "prompt": "A logic problem for I: If all cheetahs are predators, and all predators can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2743", - "prompt": "A quick math question for My supervisor: If we divide a group of 230 people into teams of five, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2744", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2745", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My team using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2746", - "prompt": "A quick math question for Our lead architect: If we divide a group of 230 people into teams of eight, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2747", - "prompt": "We need to create a utility tool. Write a Python script for My supervisor that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2748", - "prompt": "Can you find the names of organizations and countries mentioned here? I needs it for compliance: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2749", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. My client wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2750", - "prompt": "A logic problem for My client: If all tigers are predators, and all predators can run fast, does it imply that a specific panther can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2751", - "prompt": "While writing a report for My team, I got stuck on a history question: who was the leader of Great Britain during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2752", - "prompt": "A user of our app asked me to research about the Gutenberg printing press. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2753", - "prompt": "I bought a gadget and showed it to My supervisor. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2754", - "prompt": "While writing a report for The developers, I got stuck on a history question: who was the leader of the Ottoman Empire during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2755", - "prompt": "Could you explain the scientific mechanism of the French Revolution? A user of our app wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2756", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 3 percent for five years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2757", - "prompt": "My team wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2758", - "prompt": "I've been staring at this function for three hours. It's supposed to calculate average score, but it throws an error. Help A user of our app debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2759", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should Our lead architect flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2760", - "prompt": "We received this message from a customer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2761", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 3 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2762", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2763", - "prompt": "Identify the entities for My client: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2764", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for Our lead architect using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2765", - "prompt": "We have a transcript of a three hour meeting. My client wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2766", - "prompt": "Can you find the names of organizations and countries mentioned here? We needs it for compliance: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2767", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 9 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2768", - "prompt": "We need to create a utility tool. Write a Python script for A user of our app that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2769", - "prompt": "Help Our lead architect calculate the volume of a cylinder. The radius is five centimeters and the height is 5 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2770", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 3 percent for six years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2771", - "prompt": "Yesterday I was coding and encountered this strange issue. A user of our app told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2772", - "prompt": "I've been staring at this function for fifty hours. It's supposed to calculate factorial of a number, but it throws an error. Help My supervisor debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2773", - "prompt": "We need to create a utility tool. Write a Python script for Our lead architect that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2774", - "prompt": "My boss asked me to research about the French Revolution. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2775", - "prompt": "We need to create a utility tool. Write a Python script for My boss that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2776", - "prompt": "Identify the entities for We: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2777", - "prompt": "Identify the entities for My team: 'We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2778", - "prompt": "My boss asked me to research about plate tectonics. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2779", - "prompt": "Check the tone of this product review. The user writes: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. Should Our lead architect flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2780", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2781", - "prompt": "I handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2782", - "prompt": "While writing a report for A user of our app, I got stuck on a history question: who was the leader of Great Britain during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2783", - "prompt": "During our game night, we played a puzzle game. My boss presented a riddle: If Bob sits next to David, and David does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2784", - "prompt": "My supervisor wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2785", - "prompt": "My team received this message from a customer: 'This is the worst software update ever. It crashed my system ten times today.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2786", - "prompt": "I've been staring at this function for three hours. It's supposed to calculate average score, but it throws an error. Help Our lead architect debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2787", - "prompt": "We have a transcript of a ten hour meeting. The developers wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2788", - "prompt": "Analyze the emotional state of the writer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. We wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2789", - "prompt": "I bought a gadget and showed it to Our lead architect. They said: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2790", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for The developers using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2791", - "prompt": "Could you explain the scientific mechanism of plate tectonics? My team wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2792", - "prompt": "My team needs to budget for our next sprint. We have five engineers working for 5 days. If each engineer costs five hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2793", - "prompt": "We have a transcript of a twelve hour meeting. Our lead architect wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2794", - "prompt": "Could you explain the scientific mechanism of the Gutenberg printing press? My client wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2795", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2796", - "prompt": "A user of our app asked me to research about the French Revolution. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2797", - "prompt": "While writing a report for My supervisor, I got stuck on a history question: who was the leader of Prussia during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2798", - "prompt": "My client gave me a constraint matching puzzle. We have three tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2799", - "prompt": "My client gave me a constraint matching puzzle. We have fifty tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2800", - "prompt": "I wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2801", - "prompt": "While writing a report for My client, I got stuck on a history question: who was the leader of Prussia during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2802", - "prompt": "Help me settle an argument. Our lead architect claims that Alexandria is older than Constantinople by two thousand years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2803", - "prompt": "During our game night, we played a puzzle game. Our lead architect presented a riddle: If Charlie sits next to Frank, and Frank does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2804", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for We using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2805", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should My supervisor flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2806", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2807", - "prompt": "Could you condense the following description for Our lead architect? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2808", - "prompt": "We have a transcript of a three hour meeting. My supervisor wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2809", - "prompt": "My boss gave me a constraint matching puzzle. We have five tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2810", - "prompt": "We need to create a utility tool. Write a Python script for The developers that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2811", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My team using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2812", - "prompt": "A quick math question for My supervisor: If we divide a group of 508 people into teams of four, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2813", - "prompt": "Our lead architect handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2814", - "prompt": "A quick math question for I: If we divide a group of 508 people into teams of eight, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2815", - "prompt": "We needs to budget for our next sprint. We have one hundred engineers working for 100 days. If each engineer costs five hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2816", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2817", - "prompt": "Identify the entities for My client: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2818", - "prompt": "We have a transcript of a two thousand hour meeting. My team wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2819", - "prompt": "Help me settle an argument. My client claims that Alexandria is older than Thebes by three years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2820", - "prompt": "A logic problem for The developers: If all lions are mammals, and all mammals can run fast, does it imply that a specific panther can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2821", - "prompt": "Could you help A user of our app construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2822", - "prompt": "While writing a report for I, I got stuck on a history question: who was the leader of Prussia during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2823", - "prompt": "While writing a report for My client, I got stuck on a history question: who was the leader of Great Britain during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2824", - "prompt": "We have a transcript of a two thousand hour meeting. My boss wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2825", - "prompt": "We need to create a utility tool. Write a Python script for My team that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2826", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should My team flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2827", - "prompt": "Can you find the names of organizations and countries mentioned here? My supervisor needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2828", - "prompt": "We have a transcript of a fifty hour meeting. We wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2829", - "prompt": "Can you find the names of organizations and countries mentioned here? I needs it for compliance: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2830", - "prompt": "We need to create a utility tool. Write a Python script for My boss that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2831", - "prompt": "We have a transcript of a twelve hour meeting. The developers wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2832", - "prompt": "My boss wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2833", - "prompt": "Our lead architect handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2834", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 9 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2835", - "prompt": "Could you condense the following description for I? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2836", - "prompt": "I bought a gadget and showed it to My boss. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2837", - "prompt": "Can you find the names of organizations and countries mentioned here? My boss needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2838", - "prompt": "A logic problem for A user of our app: If all lions are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2839", - "prompt": "During our game night, we played a puzzle game. I presented a riddle: If Alice sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2840", - "prompt": "A quick math question for I: If we divide a group of 508 people into teams of five, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2841", - "prompt": "A quick math question for My team: If we divide a group of 412 people into teams of five, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2842", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 3 percent for four years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2843", - "prompt": "The developers wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2844", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 7 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2845", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2846", - "prompt": "The developers gave me a constraint matching puzzle. We have one hundred tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2847", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should A user of our app flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2848", - "prompt": "My client wants to compute the interest. We invested 12000 dollars at an annual interest rate of 7 percent for four years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2849", - "prompt": "Analyze the emotional state of the writer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. My boss wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2850", - "prompt": "Could you help A user of our app construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2851", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2852", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. My team wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2853", - "prompt": "Could you condense the following description for We? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2854", - "prompt": "Can you find the names of organizations and countries mentioned here? My supervisor needs it for compliance: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2855", - "prompt": "Help me settle an argument. My client claims that Jerusalem is older than Thebes by twelve years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2856", - "prompt": "Help me settle an argument. My team claims that Jerusalem is older than Carthage by two thousand years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2857", - "prompt": "Could you condense the following description for My team? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2858", - "prompt": "Identify the entities for The developers: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2859", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2860", - "prompt": "The developers needs to budget for our next sprint. We have ten engineers working for 10 days. If each engineer costs three hundred and fifty dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2861", - "prompt": "My client handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2862", - "prompt": "Could you condense the following description for My supervisor? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2863", - "prompt": "Could you help My team construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2864", - "prompt": "I bought a gadget and showed it to Our lead architect. They said: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2865", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2866", - "prompt": "A quick math question for I: If we divide a group of 412 people into teams of five, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2867", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2868", - "prompt": "My team handed me a long text about remote work productivity and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2869", - "prompt": "Could you condense the following description for My supervisor? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2870", - "prompt": "Could you help We construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2871", - "prompt": "A quick math question for My supervisor: If we divide a group of 145 people into teams of five, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2872", - "prompt": "My boss gave me a constraint matching puzzle. We have three tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2873", - "prompt": "I received this message from a customer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2874", - "prompt": "Our lead architect received this message from a customer: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2875", - "prompt": "My client received this message from a customer: 'This is the worst software update ever. It crashed my system ten times today.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2876", - "prompt": "My client handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2877", - "prompt": "We need to create a utility tool. Write a Python script for A user of our app that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2878", - "prompt": "Can you find the names of organizations and countries mentioned here? A user of our app needs it for compliance: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2879", - "prompt": "A user of our app handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2880", - "prompt": "Help me settle an argument. My supervisor claims that Rome is older than Constantinople by twelve years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2881", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2882", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for Our lead architect using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2883", - "prompt": "A quick math question for We: If we divide a group of 508 people into teams of four, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2884", - "prompt": "I received this message from a customer: 'This is the worst software update ever. It crashed my system ten times today.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2885", - "prompt": "Identify the entities for My supervisor: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2886", - "prompt": "Identify the entities for We: 'Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2887", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2888", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. The developers wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2889", - "prompt": "A user of our app needs to budget for our next sprint. We have two thousand engineers working for 2000 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2890", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2891", - "prompt": "We have a transcript of a one hundred hour meeting. My client wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2892", - "prompt": "Help me settle an argument. Our lead architect claims that Athens is older than Babylon by two thousand years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2893", - "prompt": "Could you condense the following description for My client? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2894", - "prompt": "Could you explain the scientific mechanism of photosynthesis? My team wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2895", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2896", - "prompt": "We wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2897", - "prompt": "Could you explain the scientific mechanism of plate tectonics? I wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2898", - "prompt": "I received this message from a customer: 'This is the worst software update ever. It crashed my system ten times today.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2899", - "prompt": "Can you find the names of organizations and countries mentioned here? My boss needs it for compliance: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2900", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2901", - "prompt": "My team gave me a constraint matching puzzle. We have three tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2902", - "prompt": "A logic problem for My boss: If all tigers are mammals, and all mammals can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2903", - "prompt": "I wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2904", - "prompt": "We need to create a utility tool. Write a Python script for My client that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2905", - "prompt": "A logic problem for My client: If all lions are felines, and all felines can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2906", - "prompt": "Analyze the emotional state of the writer: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. A user of our app wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2907", - "prompt": "I bought a gadget and showed it to A user of our app. They said: 'This is the worst software update ever. It crashed my system ten times today.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2908", - "prompt": "We need to create a utility tool. Write a Python script for We that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2909", - "prompt": "Could you explain the scientific mechanism of the French Revolution? My team wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2910", - "prompt": "A quick math question for The developers: If we divide a group of 412 people into teams of six, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2911", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2912", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate average score, but it throws an error. Help My boss debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2913", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for Our lead architect using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2914", - "prompt": "Analyze the emotional state of the writer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. We wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2915", - "prompt": "The developers handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2916", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2917", - "prompt": "Help My boss calculate the volume of a cylinder. The radius is ten centimeters and the height is 10 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2918", - "prompt": "My client wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2919", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My team using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2920", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. A user of our app wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2921", - "prompt": "My boss wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2922", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2923", - "prompt": "My client handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2924", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2925", - "prompt": "Could you help My supervisor construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2926", - "prompt": "A quick math question for Our lead architect: If we divide a group of 145 people into teams of eight, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2927", - "prompt": "We gave me a constraint matching puzzle. We have five tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2928", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Charlie sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2929", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. The developers wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2930", - "prompt": "Can you find the names of organizations and countries mentioned here? I needs it for compliance: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2931", - "prompt": "Yesterday I was coding and encountered this strange issue. My client told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2932", - "prompt": "I've been staring at this function for two thousand hours. It's supposed to calculate string reversal, but it throws an error. Help Our lead architect debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2933", - "prompt": "My client wants to compute the interest. We invested 5000 dollars at an annual interest rate of 12 percent for four years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2934", - "prompt": "I bought a gadget and showed it to My boss. They said: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2935", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My boss using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2936", - "prompt": "Could you explain the scientific mechanism of photosynthesis? My client wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2937", - "prompt": "Help me settle an argument. My team claims that Jerusalem is older than Babylon by fifty years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2938", - "prompt": "Yesterday I was coding and encountered this strange issue. We told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2939", - "prompt": "A user of our app wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2940", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2941", - "prompt": "My client received this message from a customer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2942", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for The developers using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2943", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2944", - "prompt": "A quick math question for My client: If we divide a group of 230 people into teams of four, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2945", - "prompt": "A logic problem for My boss: If all lions are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2946", - "prompt": "A quick math question for My client: If we divide a group of 412 people into teams of four, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2947", - "prompt": "Could you help The developers construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2948", - "prompt": "I've been staring at this function for ten hours. It's supposed to calculate factorial of a number, but it throws an error. Help A user of our app debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2949", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for I using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2950", - "prompt": "Check the tone of this product review. The user writes: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Should My team flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2951", - "prompt": "Our lead architect needs to budget for our next sprint. We have ten engineers working for 10 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2952", - "prompt": "Could you condense the following description for My boss? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2953", - "prompt": "Identify the entities for We: 'We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2954", - "prompt": "Could you explain the scientific mechanism of the Gutenberg printing press? Our lead architect wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2955", - "prompt": "A user of our app needs to budget for our next sprint. We have one hundred engineers working for 100 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2956", - "prompt": "Our lead architect asked me to research about quantum entanglement. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2957", - "prompt": "Our lead architect wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2958", - "prompt": "Can you find the names of organizations and countries mentioned here? My boss needs it for compliance: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2959", - "prompt": "My boss gave me a constraint matching puzzle. We have one hundred tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2960", - "prompt": "My boss handed me a long text about climate change mitigation and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2961", - "prompt": "Identify the entities for We: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2962", - "prompt": "Could you help We construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2963", - "prompt": "Help me settle an argument. The developers claims that Rome is older than Carthage by twelve years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2964", - "prompt": "A quick math question for Our lead architect: If we divide a group of 230 people into teams of four, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2965", - "prompt": "Identify the entities for I: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2966", - "prompt": "I've been staring at this function for three hours. It's supposed to calculate average score, but it throws an error. Help A user of our app debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2967", - "prompt": "I received this message from a customer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2968", - "prompt": "Can you find the names of organizations and countries mentioned here? My supervisor needs it for compliance: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2969", - "prompt": "Help My boss calculate the volume of a cylinder. The radius is one hundred centimeters and the height is 100 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2970", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate average score, but it throws an error. Help The developers debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2971", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. I wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2972", - "prompt": "During our game night, we played a puzzle game. Our lead architect presented a riddle: If Bob sits next to Frank, and Frank does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2973", - "prompt": "I bought a gadget and showed it to The developers. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2974", - "prompt": "Our lead architect received this message from a customer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2975", - "prompt": "I've been staring at this function for two thousand hours. It's supposed to calculate factorial of a number, but it throws an error. Help My team debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2976", - "prompt": "I've been staring at this function for two thousand hours. It's supposed to calculate string reversal, but it throws an error. Help My boss debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2977", - "prompt": "Could you condense the following description for My boss? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2978", - "prompt": "A logic problem for My client: If all cats are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2979", - "prompt": "Help me settle an argument. My boss claims that Alexandria is older than Babylon by two thousand years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2980", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Alice sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2981", - "prompt": "While writing a report for We, I got stuck on a history question: who was the leader of France during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2982", - "prompt": "Help me settle an argument. The developers claims that Rome is older than Carthage by fifty years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2983", - "prompt": "My boss asked me to research about the French Revolution. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2984", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My team using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2985", - "prompt": "My boss received this message from a customer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2986", - "prompt": "I've been staring at this function for five hours. It's supposed to calculate average score, but it throws an error. Help My supervisor debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2987", - "prompt": "Could you explain the scientific mechanism of plate tectonics? A user of our app wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2988", - "prompt": "My boss handed me a long text about remote work productivity and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2989", - "prompt": "My client gave me a constraint matching puzzle. We have two thousand tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2990", - "prompt": "Analyze the emotional state of the writer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. I wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2991", - "prompt": "Analyze the emotional state of the writer: 'This is the worst software update ever. It crashed my system ten times today.'. My client wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-2992", - "prompt": "Help I calculate the volume of a cylinder. The radius is one hundred centimeters and the height is 100 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-2993", - "prompt": "Identify the entities for A user of our app: 'We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2994", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-2995", - "prompt": "Can you find the names of organizations and countries mentioned here? My team needs it for compliance: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-2996", - "prompt": "During our game night, we played a puzzle game. My client presented a riddle: If Charlie sits next to David, and David does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2997", - "prompt": "A user of our app gave me a constraint matching puzzle. We have fifty tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-2998", - "prompt": "We have a transcript of a five hour meeting. My supervisor wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-2999", - "prompt": "I bought a gadget and showed it to I. They said: 'I was skeptical at first, but after using it, it completely changed my workflow. Brilliant.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3000", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Bob sits next to Eva, and Eva does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3001", - "prompt": "A logic problem for The developers: If all lions are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3002", - "prompt": "Can you find the names of organizations and countries mentioned here? My client needs it for compliance: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3003", - "prompt": "I've been staring at this function for five hours. It's supposed to calculate string reversal, but it throws an error. Help My supervisor debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3004", - "prompt": "During our game night, we played a puzzle game. My supervisor presented a riddle: If Charlie sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3005", - "prompt": "My client wants to compute the interest. We invested 25000 dollars at an annual interest rate of 7 percent for eight years. Solve this compound interest equation.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3006", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3007", - "prompt": "Can you find the names of organizations and countries mentioned here? My supervisor needs it for compliance: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3008", - "prompt": "Help I calculate the volume of a cylinder. The radius is five centimeters and the height is 5 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3009", - "prompt": "Help My boss calculate the volume of a cylinder. The radius is one hundred centimeters and the height is 100 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3010", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3011", - "prompt": "According to the records from the year 1945, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3012", - "prompt": "Identify the entities for We: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3013", - "prompt": "Help me settle an argument. My client claims that Jerusalem is older than Thebes by two thousand years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3014", - "prompt": "Could you help My team construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3015", - "prompt": "A logic problem for My team: If all cheetahs are predators, and all predators can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3016", - "prompt": "Analyze the emotional state of the writer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. My team wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3017", - "prompt": "While writing a report for Our lead architect, I got stuck on a history question: who was the leader of the Ottoman Empire during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3018", - "prompt": "My client received this message from a customer: 'This is the worst software update ever. It crashed my system ten times today.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3019", - "prompt": "My supervisor handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3020", - "prompt": "We have a transcript of a twelve hour meeting. My supervisor wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3021", - "prompt": "A logic problem for My client: If all cheetahs are predators, and all predators can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3022", - "prompt": "While writing a report for We, I got stuck on a history question: who was the leader of Prussia during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3023", - "prompt": "I've been staring at this function for fifty hours. It's supposed to calculate average score, but it throws an error. Help My client debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3024", - "prompt": "I handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3025", - "prompt": "During our game night, we played a puzzle game. I presented a riddle: If Alice sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3026", - "prompt": "Could you explain the scientific mechanism of quantum entanglement? My boss wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3027", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3028", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate factorial of a number, but it throws an error. Help Our lead architect debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3029", - "prompt": "Help We calculate the volume of a cylinder. The radius is fifty centimeters and the height is 50 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3030", - "prompt": "Could you condense the following description for My team? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3031", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My boss using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3032", - "prompt": "Could you help We construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3033", - "prompt": "Could you help My client construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3034", - "prompt": "A logic problem for Our lead architect: If all tigers are predators, and all predators can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3035", - "prompt": "Could you condense the following description for A user of our app? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3036", - "prompt": "Help We calculate the volume of a cylinder. The radius is three centimeters and the height is 3 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3037", - "prompt": "Yesterday I was coding and encountered this strange issue. A user of our app told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3038", - "prompt": "Help Our lead architect calculate the volume of a cylinder. The radius is one hundred centimeters and the height is 100 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3039", - "prompt": "Yesterday I was coding and encountered this strange issue. Our lead architect told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3040", - "prompt": "A logic problem for My client: If all cheetahs are predators, and all predators can run fast, does it imply that a specific panther can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3041", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3042", - "prompt": "Could you help Our lead architect construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3043", - "prompt": "A quick math question for The developers: If we divide a group of 145 people into teams of five, and then multiply the remaining people by 7, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3044", - "prompt": "We wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3045", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for The developers using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3046", - "prompt": "Could you help My team construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3047", - "prompt": "We need to create a utility tool. Write a Python script for Our lead architect that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3048", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for I using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3049", - "prompt": "We need to create a utility tool. Write a Python script for The developers that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3050", - "prompt": "A quick math question for I: If we divide a group of 145 people into teams of four, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3051", - "prompt": "While writing a report for Our lead architect, I got stuck on a history question: who was the leader of France during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3052", - "prompt": "Yesterday I was coding and encountered this strange issue. A user of our app told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3053", - "prompt": "I bought a gadget and showed it to Our lead architect. They said: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3054", - "prompt": "Yesterday I was coding and encountered this strange issue. My client told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3055", - "prompt": "Identify the entities for Our lead architect: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3056", - "prompt": "A logic problem for We: If all lions are felines, and all felines can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3057", - "prompt": "Our lead architect handed me a long text about blockchain in supply chain and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3058", - "prompt": "My team handed me a long text about remote work productivity and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3059", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3060", - "prompt": "We gave me a constraint matching puzzle. We have three tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3061", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My supervisor using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3062", - "prompt": "Could you help The developers construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3063", - "prompt": "My boss gave me a constraint matching puzzle. We have two thousand tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3064", - "prompt": "My team needs to budget for our next sprint. We have twelve engineers working for 12 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3065", - "prompt": "My supervisor needs to budget for our next sprint. We have two thousand engineers working for 2000 days. If each engineer costs three hundred and fifty dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3066", - "prompt": "Could you explain the scientific mechanism of the French Revolution? My team wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3067", - "prompt": "While writing a report for The developers, I got stuck on a history question: who was the leader of the Ottoman Empire during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3068", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3069", - "prompt": "Yesterday I was coding and encountered this strange issue. The developers told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3070", - "prompt": "A quick math question for My client: If we divide a group of 508 people into teams of five, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3071", - "prompt": "Could you help We construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3072", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for Our lead architect using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3073", - "prompt": "My client wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3074", - "prompt": "Yesterday I was coding and encountered this strange issue. We told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3075", - "prompt": "Can you find the names of organizations and countries mentioned here? My team needs it for compliance: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3076", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate string reversal, but it throws an error. Help My boss debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3077", - "prompt": "Analyze the emotional state of the writer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. My client wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3078", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate string reversal, but it throws an error. Help A user of our app debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3079", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for I using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3080", - "prompt": "I bought a gadget and showed it to Our lead architect. They said: 'This is the worst software update ever. It crashed my system ten times today.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3081", - "prompt": "Could you help The developers construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3082", - "prompt": "Our lead architect received this message from a customer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3083", - "prompt": "Help My supervisor calculate the volume of a cylinder. The radius is fifty centimeters and the height is 50 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3084", - "prompt": "Can you find the names of organizations and countries mentioned here? A user of our app needs it for compliance: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3085", - "prompt": "A logic problem for The developers: If all cats are predators, and all predators can run fast, does it imply that a specific cub can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3086", - "prompt": "Our lead architect wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3087", - "prompt": "Yesterday I was coding and encountered this strange issue. My supervisor told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3088", - "prompt": "Our lead architect gave me a constraint matching puzzle. We have fifty tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3089", - "prompt": "We received this message from a customer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3090", - "prompt": "We have a transcript of a fifty hour meeting. The developers wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3091", - "prompt": "Yesterday I was coding and encountered this strange issue. A user of our app told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3092", - "prompt": "Check the tone of this product review. The user writes: 'This is the worst software update ever. It crashed my system ten times today.'. Should The developers flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3093", - "prompt": "While writing a report for We, I got stuck on a history question: who was the leader of France during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3094", - "prompt": "Check the tone of this product review. The user writes: 'This is the worst software update ever. It crashed my system ten times today.'. Should My team flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3095", - "prompt": "We wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3096", - "prompt": "Could you condense the following description for My supervisor? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3097", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3098", - "prompt": "Analyze the emotional state of the writer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Our lead architect wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3099", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3100", - "prompt": "Could you condense the following description for My boss? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3101", - "prompt": "I bought a gadget and showed it to My boss. They said: 'This is the worst software update ever. It crashed my system ten times today.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3102", - "prompt": "Yesterday I was coding and encountered this strange issue. Our lead architect told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3103", - "prompt": "A logic problem for My supervisor: If all tigers are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3104", - "prompt": "Check the tone of this product review. The user writes: 'This is the worst software update ever. It crashed my system ten times today.'. Should My client flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3105", - "prompt": "Could you condense the following description for My team? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3106", - "prompt": "A user of our app wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3107", - "prompt": "A quick math question for Our lead architect: If we divide a group of 508 people into teams of eight, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3108", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3109", - "prompt": "I've been staring at this function for one hundred hours. It's supposed to calculate string reversal, but it throws an error. Help We debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3110", - "prompt": "A quick math question for A user of our app: If we divide a group of 508 people into teams of four, and then multiply the remaining people by 3, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3111", - "prompt": "Could you help I construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3112", - "prompt": "I gave me a constraint matching puzzle. We have twelve tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3113", - "prompt": "Could you explain the scientific mechanism of quantum entanglement? I wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3114", - "prompt": "A logic problem for My client: If all cats are predators, and all predators can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3115", - "prompt": "A logic problem for A user of our app: If all cats are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3116", - "prompt": "I bought a gadget and showed it to My client. They said: 'This is the worst software update ever. It crashed my system ten times today.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3117", - "prompt": "During our game night, we played a puzzle game. The developers presented a riddle: If Bob sits next to David, and David does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3118", - "prompt": "Check the tone of this product review. The user writes: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Should My supervisor flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3119", - "prompt": "We have a transcript of a three hour meeting. My supervisor wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3120", - "prompt": "We have a transcript of a five hour meeting. We wants a short summary of the main decisions. The text is: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3121", - "prompt": "I needs to budget for our next sprint. We have one hundred engineers working for 100 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3122", - "prompt": "Could you condense the following description for My team? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3123", - "prompt": "During our game night, we played a puzzle game. My boss presented a riddle: If Alice sits next to Eva, and Eva does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3124", - "prompt": "Can you find the names of organizations and countries mentioned here? My team needs it for compliance: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3125", - "prompt": "Could you help My team construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3126", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3127", - "prompt": "A quick math question for My boss: If we divide a group of 230 people into teams of eight, and then multiply the remaining people by 7, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3128", - "prompt": "Could you help My client construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3129", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3130", - "prompt": "I bought a gadget and showed it to I. They said: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3131", - "prompt": "I bought a gadget and showed it to My boss. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3132", - "prompt": "During our game night, we played a puzzle game. The developers presented a riddle: If Bob sits next to David, and David does not sit next to Ivy, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3133", - "prompt": "While writing a report for The developers, I got stuck on a history question: who was the leader of Prussia during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3134", - "prompt": "While writing a report for My boss, I got stuck on a history question: who was the leader of Great Britain during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3135", - "prompt": "We need to create a utility tool. Write a Python script for The developers that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3136", - "prompt": "A quick math question for My client: If we divide a group of 230 people into teams of eight, and then multiply the remaining people by 9, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3137", - "prompt": "My supervisor found a bug in our repository. The following code fails on edge cases. Can you correct it? ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3138", - "prompt": "We have a transcript of a two thousand hour meeting. My supervisor wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3139", - "prompt": "During our game night, we played a puzzle game. My supervisor presented a riddle: If Bob sits next to Frank, and Frank does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3140", - "prompt": "During our game night, we played a puzzle game. My client presented a riddle: If Charlie sits next to Frank, and Frank does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3141", - "prompt": "We have a transcript of a two thousand hour meeting. I wants a short summary of the main decisions. The text is: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3142", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate factorial of a number, but it throws an error. Help Our lead architect debug it: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3143", - "prompt": "Help me settle an argument. My boss claims that Alexandria is older than Carthage by three years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3144", - "prompt": "My supervisor handed me a long text about AI ethics and asked: 'Can you summarize this in exactly one paragraph?' Here is the text: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3145", - "prompt": "My client needs to budget for our next sprint. We have one hundred engineers working for 100 days. If each engineer costs two hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3146", - "prompt": "Yesterday I was coding and encountered this strange issue. My supervisor told me to fix it. Here is the code snippet: ```python\ndef get_average(nums):\n # bug: division by zero if empty\n return sum(nums) / len(nums)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3147", - "prompt": "Identify the entities for I: 'The team at Tesla Motors led by Elon Musk is planning a new factory in Berlin, Germany.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3148", - "prompt": "Could you explain the scientific mechanism of photosynthesis? My team wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3149", - "prompt": "A user of our app received this message from a customer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3150", - "prompt": "During our game night, we played a puzzle game. My boss presented a riddle: If Alice sits next to Eva, and Eva does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3151", - "prompt": "Could you condense the following description for Our lead architect? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3152", - "prompt": "Could you condense the following description for A user of our app? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3153", - "prompt": "According to the records from the year 1789, how many colonies did the empire have, and which was the capital?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3154", - "prompt": "Could you condense the following description for My team? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3155", - "prompt": "I asked me to research about the French Revolution. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3156", - "prompt": "Could you help My boss construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3157", - "prompt": "Could you condense the following description for My client? Keep it extremely brief: During the quarterly review, the engineering division presented their progress on the database migration. They successfully migrated twelve million user records, but encountered latency spikes in the read replicas. They proposed scaling up the instances and optimizing index schemas over the next sprint.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3158", - "prompt": "Analyze the emotional state of the writer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. My team wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3159", - "prompt": "A quick math question for My boss: If we divide a group of 230 people into teams of six, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3160", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for My supervisor using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3161", - "prompt": "Could you condense the following description for We? Keep it extremely brief: The committee gathered to debate the ethical implications of autonomous decision systems. Key concerns were algorithmic bias, lack of transparent explanation, and security vulnerabilities. They recommended establishing a joint task force consisting of five researchers and three policy makers to draft guidelines by the end of the year.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3162", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for I using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3163", - "prompt": "We need to create a utility tool. Write a Python script for I that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3164", - "prompt": "Help My team calculate the volume of a cylinder. The radius is one hundred centimeters and the height is 100 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3165", - "prompt": "Help me settle an argument. My supervisor claims that Alexandria is older than Thebes by two thousand years. What is the historical truth?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3166", - "prompt": "I bought a gadget and showed it to A user of our app. They said: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3167", - "prompt": "A logic problem for My client: If all tigers are felines, and all felines can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3168", - "prompt": "Identify the entities for My client: 'Yesterday, Swift Taylor and Grace Hopper traveled from Chicago to London to visit OpenAI Inc.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3169", - "prompt": "Check the tone of this product review. The user writes: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. Should My boss flag this as a complaints case?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3170", - "prompt": "We wants to extract all the proper nouns. Please list the people, companies, and locations in this sentence: Our client, Rust Montgomery, signed a contract with Microsoft Corp. in Boston last month.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3171", - "prompt": "Could you help My team construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3172", - "prompt": "I have a problem where I need to automate downloading file attachments. Can you write a Python function for Our lead architect using aiohttp?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3173", - "prompt": "My boss gave me a constraint matching puzzle. We have one hundred tasks. Task A must be completed before Task B. Task C must be completed after Task B. What is the correct order of tasks?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3174", - "prompt": "We need to create a utility tool. Write a Python script for My team that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3175", - "prompt": "Analyze the emotional state of the writer: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. Our lead architect wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3176", - "prompt": "I've been staring at this function for twelve hours. It's supposed to calculate string reversal, but it throws an error. Help My boss debug it: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3177", - "prompt": "My supervisor asked me to research about quantum entanglement. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3178", - "prompt": "A logic problem for The developers: If all cats are mammals, and all mammals can run fast, does it imply that a specific panther can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3179", - "prompt": "Yesterday I was coding and encountered this strange issue. Our lead architect told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3180", - "prompt": "My team received this message from a customer: 'This is the worst software update ever. It crashed my system ten times today.'. Tell me, is this feedback negative or positive?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3181", - "prompt": "Analyze the emotional state of the writer: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. Our lead architect wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3182", - "prompt": "I asked me to research about quantum entanglement. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3183", - "prompt": "We asked me to research about quantum entanglement. Can you tell me when they discovered it and who was the person responsible?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3184", - "prompt": "While writing a report for We, I got stuck on a history question: who was the leader of ancient Rome during the crisis of nineteen fourteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3185", - "prompt": "Identify the entities for My team: 'We met Ruby Jenkins from Amazon Headquarters during the conference in Geneva, Switzerland.'. Output them as a JSON list of dictionaries.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3186", - "prompt": "A logic problem for We: If all lions are mammals, and all mammals can run fast, does it imply that a specific kitten can run fast? Walk me through the reasoning.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3187", - "prompt": "Could you explain the scientific mechanism of the French Revolution? My supervisor wants to understand how it functions under extreme heat.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3188", - "prompt": "Yesterday I was coding and encountered this strange issue. A user of our app told me to fix it. Here is the code snippet: ```python\ndef calculate_factorial(n):\n # bug: infinite recursion for negative numbers\n if n == 0:\n return 1\n return n * calculate_factorial(n - 1)\n```", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3189", - "prompt": "Could you help The developers construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3190", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Charlie sits next to David, and David does not sit next to Henry, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3191", - "prompt": "We needs to budget for our next sprint. We have five engineers working for 5 days. If each engineer costs five hundred dollars per day, calculate the total cost.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3192", - "prompt": "Could you help I construct a script that solves a quadratic equation? Use standard Python imports.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3193", - "prompt": "Help The developers calculate the volume of a cylinder. The radius is three centimeters and the height is 3 cm. What is the mathematical result?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3194", - "prompt": "I bought a gadget and showed it to My team. They said: 'It worked fine for five days, but then the screen shattered. I am extremely disappointed and want a refund.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3195", - "prompt": "Analyze the emotional state of the writer: 'Honestly, it's just okay. Not great, but not terrible either. Average utility.'. The developers wants to classify this as positive or negative.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3196", - "prompt": "I bought a gadget and showed it to We. They said: 'Absolutely amazing! The team delivered the package twelve hours early. Highly recommended.'. What sentiment does this voice represent?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3197", - "prompt": "We need to create a utility tool. Write a Python script for My supervisor that parses text and counts word frequencies. Output only code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3198", - "prompt": "While writing a report for Our lead architect, I got stuck on a history question: who was the leader of Great Britain during the crisis of eighteen fifteen?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3199", - "prompt": "A quick math question for My client: If we divide a group of 230 people into teams of four, and then multiply the remaining people by 12, what number do we get?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3200", - "prompt": "During our game night, we played a puzzle game. A user of our app presented a riddle: If Charlie sits next to Eva, and Eva does not sit next to Grace, who sits in the middle? Explain the logical deduction.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3201", - "prompt": "What is the capital of Australia, and what body of water is it near?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3202", - "prompt": "A store has 240 items. It sells 15% on Monday and 60 more on Tuesday. How many items remain?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3203", - "prompt": "Classify the sentiment of this review: The battery life is great, but the screen scratches too easily.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3204", - "prompt": "Summarize the following in exactly one sentence: Artificial intelligence has rapidly transformed many industries over the past decade. From healthcare and finance to transportation and entertainment, AI-powered tools are automating tasks, improving decision-making, and creating new business opportunities. Despite its many benefits, AI also raises important concerns about privacy, bias, job displacement, and the need for robust regulation.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3205", - "prompt": "Extract all named entities and their types from: Maria Sanchez joined Fireworks AI in Berlin last March.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3206", - "prompt": "This function should return the max of a list but has a bug: def get_max(nums): return nums[0]. Find and fix it.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3207", - "prompt": "Three friends, Sam, Jo, and Lee, each own a different pet: cat, dog, bird. Sam does not own the bird. Jo owns the dog. Who owns the cat?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3208", - "prompt": "Write a Python function that returns the second-largest number in a list, handling duplicates correctly.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3209", - "prompt": "What is the capital of France?", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3210", - "prompt": "Calculate 342 * 12", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3211", - "prompt": "Determine the sentiment of this text: 'I absolutely love this new update!'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3212", - "prompt": "Summarize the following passage: 'Artificial intelligence is simulation of human intelligence processes by machines, especially computer systems. These processes include learning, reasoning, self-correction, and problem solving.'", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3213", - "prompt": "Extract the named entities from this sentence: 'Barack Obama was born in Hawaii.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3214", - "prompt": "Find and fix the bug in this Python function:\ndef add_numbers(a, b):\nreturn a - b", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3215", - "prompt": "If John is taller than Mary, and Mary is taller than Sue, is John taller than Sue?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3216", - "prompt": "Write a Python function that checks if a number is prime.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3217", - "prompt": "Solve for x: 2x + 5 = 15", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3218", - "prompt": "What is the percentage increase from 50 to 75?", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3219", - "prompt": "Find the derivative of x^2", - "expected_route": "API_MATH" - }, - { - "task_id": "task-3220", - "prompt": "Find and fix the bug in this Python function:\ndef add(a, b): return a - b", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3221", - "prompt": "Write a Python script to scrape a website", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3222", - "prompt": "How do I compile a C++ file?", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3223", - "prompt": "Refactor this code to use list comprehension", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3224", - "prompt": "Solve this riddle: I speak without a mouth and hear without ears.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3225", - "prompt": "Given the constraints: A must be next to B, and B cannot be next to C.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-3226", - "prompt": "Classify the sentiment of this review: 'This is the best movie I have ever seen!'", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3227", - "prompt": "Is the tone of this text positive, negative, or neutral?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3228", - "prompt": "What emotion is expressed in this letter?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-3229", - "prompt": "Extract all named entities from this sentence: 'Google was founded by Larry Page.'", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3230", - "prompt": "Identify person and organization entities in this paragraph.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3231", - "prompt": "Extract names and locations from this context in JSON format.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-3232", - "prompt": "Summarize this article: ...", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3233", - "prompt": "Define the term photosynthesis.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-3234", - "prompt": "Write a Python script to calculate sentiment of text", - "expected_route": "API_CODE" - }, - { - "task_id": "task-3235", - "prompt": "Write a story about a boy who has 3 apples and 2 oranges", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-050", - "prompt": "Explain the historical significance of the Battle of Waterloo which took place in the year 1815. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-021", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Edward Elric recently joined SpaceX in Toronto.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-04-038", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems that learn from data, identify patterns, and make decisions with minimal human intervention. Unlike traditional software which relies on hardcoded rules, machine learning algorithms use statistical techniques to improve their performance over time as they are exposed to more data. Key subfields include supervised learning, where models are trained on labeled data, and unsupervised learning, which finds hidden patterns in unlabeled datasets. Deep learning, a specialized branch of machine learning, utilizes multi-layered artificial neural networks to process complex data types like images, audio, and natural language, enabling advanced applications such as autonomous driving and medical diagnosis.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-04-072", - "prompt": "Write a detailed executive summary of the following document. Your summary should highlight the background, the main challenges, and the proposed solutions:\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes, inflation, supply chain disruptions, and changing geopolitical alliances. In response to recent crises, many companies are relocating manufacturing facilities closer to their home markets, a process known as nearshoring. While nearshoring reduces transportation costs and supply chain risks, it often leads to higher labor costs and initial setup expenses. At the same time, central banks are balancing interest rate adjustments to curb inflation without triggering deep recessions. These economic shifts are reshaping global markets, affecting international trade agreements, and influencing currency valuations across major economies.\n\nMachine learning is a subset of artificial intelligence focused on building systems that learn from data, identify patterns, and make decisions with minimal human intervention. Unlike traditional software which relies on hardcoded rules, machine learning algorithms use statistical techniques to improve their performance over time as they are exposed to more data. Key subfields include supervised learning, where models are trained on labeled data, and unsupervised learning, which finds hidden patterns in unlabeled datasets. Deep learning, a specialized branch of machine learning, utilizes multi-layered artificial neural networks to process complex data types like images, audio, and natural language, enabling advanced applications such as autonomous driving and medical diagnosis.\n\nThe development of mRNA vaccines has revolutionized preventative medicine and established a new paradigm for rapid vaccine development. Unlike traditional vaccines that introduce weakened or inactivated pathogens to stimulate an immune response, mRNA vaccines deliver genetic instructions for cells to produce a harmless viral protein, known as the spike protein. The human immune system recognizes this protein as foreign, triggers an immune response, and produces antibodies without causing disease. This technology allows vaccines to be designed and manufactured extremely rapidly once a pathogen's genetic sequence is known, which was crucial during the global pandemic and holds promise for future cancer therapies.\n\nThe history of space exploration began in the mid-20th century, sparked by the Cold War rivalry between the United States and the Soviet Union. The launch of Sputnik 1, the first artificial satellite, in 1957 marked the beginning of the Space Age. This was followed by Yuri Gagarin becoming the first human in space in 1961, and the historic Apollo 11 moon landing in 1969. In the decades since, space exploration has transitioned from geopolitical competition to international cooperation, exemplified by the International Space Station. Today, private aerospace companies are playing an increasingly dominant role, launching commercial satellites, developing reusable rockets, and planning future crewed missions to Mars.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-082", - "prompt": "Analyze the debate or research surrounding holographic principle in string theory. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-035", - "prompt": "Classify the sentiment of this text: 'Very laggy and constantly crashes. I lost my unsaved data twice. I want a refund. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-042", - "prompt": "Classify the sentiment of this text: 'Average quality. It is not terrible, but it is not great either. Just okay for the price. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-08-088", - "prompt": "Write a highly optimized, fully documented Python function or class for: Write a Python function to find the longest common subsequence (LCS) between two strings using dynamic programming.. Handle edge cases, type hints, and write clear code. Return ONLY raw code without any extra explanation or wrapper text.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-08-083", - "prompt": "Write a highly optimized, fully documented Python function or class for: Write a Python class for a thread-safe Singleton pattern using a metaclass or class decorator.. Handle edge cases, type hints, and write clear code. Return ONLY raw code without any extra explanation or wrapper text.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-01-003", - "prompt": "Define the basic concept of 'mitosis' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-04-076", - "prompt": "Write a detailed executive summary of the following document. Your summary should highlight the background, the main challenges, and the proposed solutions:\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly worldwide as nations seek to reduce carbon emissions and combat climate change. Solar photovoltaic panels convert sunlight directly into electricity, while wind turbines harness the kinetic energy of air currents. Hydropower utilizes flowing water to spin generators, providing a stable baseload supply of clean electricity. Together, these technologies are transforming the global grid, reducing dependence on fossil fuels, and driving down the cost of clean energy. However, challenges like grid integration, battery storage capacity, and geographic variability remain critical barriers that must be addressed to achieve a fully sustainable energy future.\n\nThe global economy is facing unprecedented challenges due to shifting trade routes, inflation, supply chain disruptions, and changing geopolitical alliances. In response to recent crises, many companies are relocating manufacturing facilities closer to their home markets, a process known as nearshoring. While nearshoring reduces transportation costs and supply chain risks, it often leads to higher labor costs and initial setup expenses. At the same time, central banks are balancing interest rate adjustments to curb inflation without triggering deep recessions. These economic shifts are reshaping global markets, affecting international trade agreements, and influencing currency valuations across major economies.\n\nMachine learning is a subset of artificial intelligence focused on building systems that learn from data, identify patterns, and make decisions with minimal human intervention. Unlike traditional software which relies on hardcoded rules, machine learning algorithms use statistical techniques to improve their performance over time as they are exposed to more data. Key subfields include supervised learning, where models are trained on labeled data, and unsupervised learning, which finds hidden patterns in unlabeled datasets. Deep learning, a specialized branch of machine learning, utilizes multi-layered artificial neural networks to process complex data types like images, audio, and natural language, enabling advanced applications such as autonomous driving and medical diagnosis.\n\nThe development of mRNA vaccines has revolutionized preventative medicine and established a new paradigm for rapid vaccine development. Unlike traditional vaccines that introduce weakened or inactivated pathogens to stimulate an immune response, mRNA vaccines deliver genetic instructions for cells to produce a harmless viral protein, known as the spike protein. The human immune system recognizes this protein as foreign, triggers an immune response, and produces antibodies without causing disease. This technology allows vaccines to be designed and manufactured extremely rapidly once a pathogen's genetic sequence is known, which was crucial during the global pandemic and holds promise for future cancer therapies.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-032", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The material feels very cheap, and it looks nothing like the promotional pictures.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-07-077", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Michael Scott, Nancy Drew, and Oliver Twist. Michael Scott says: 'At least one of us is a knave.' Nancy Drew says: 'Michael Scott is lying.' Oliver Twist remains silent. Determine the identities of Michael Scott, Nancy Drew, and Oliver Twist. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-01-088", - "prompt": "Analyze the debate or research surrounding Bell's theorem and local realism. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-014", - "prompt": "Classify the sentiment of this text: 'Do not buy this! It is a waste of money. It lacks basic features and is very difficult to use.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-067", - "prompt": "Classify the sentiment of this text: 'The camera captures beautiful images in daylight, but low light performance is terrible, and the software updates are extremely slow.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-08-080", - "prompt": "Write a highly optimized, fully documented Python function or class for: Write a Python class for a Trie (prefix tree) supporting insert, search, and startsWith operations. Handle unicode characters correctly.. Handle edge cases, type hints, and write clear code. Return ONLY raw code without any extra explanation or wrapper text.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-03-062", - "prompt": "Classify the sentiment of this text: 'Extremely disappointed. The material feels very cheap, and it looks nothing like the promotional pictures. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-04-002", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes, inflation, supply chain disruptions, and changing geopolitical alliances. In response to recent crises, many compani...", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-08-100", - "prompt": "Write a highly optimized, fully documented Python function or class for: Write a Python function that implements a thread-safe producer-consumer queue using the threading module, handling queue capacity constraints.. Handle edge cases, type hints, and write clear code. Return ONLY raw code without any extra explanation or wrapper text.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-05-079", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Oliver Twist met with the board of Intel Corporation in Austin to discuss a strategic partnership. Later, Peter Parker and Alice Smith from AMD arrived in Boston to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-034", - "prompt": "Explain the primary function of the human pancreas and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-014", - "prompt": "Three friends, Nancy Drew, Oliver Twist, and Peter Parker, each own a different pet: cat, dog, bird. Nancy Drew does not own the bird. Oliver Twist owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-070", - "prompt": "Classify the sentiment of this text: 'The food was delicious and the staff was friendly, but the wait times were ridiculous and we had to wait an hour for our table despite reservations.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-066", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Bob Jones will give a lecture at AMD in Boston, while Charlie Brown will present at NVIDIA in Seattle.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-072", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Hannah Abbott, Ian Malcolm, and Julia Roberts. Hannah Abbott says: 'We are all knaves.' Ian Malcolm says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-094", - "prompt": "A train leaves Station A traveling at 53 mph. 4 hours later, another train leaves Station A traveling in the same direction at 85 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-005", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Edward Elric recently joined Amazon Web Services in Berlin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-097", - "prompt": "Explain the theory and mechanics of quantum entanglement. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-023", - "prompt": "What chemical element has the symbol Ag, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-061", - "prompt": "Explain the primary function of the human kidneys and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-049", - "prompt": "A store has 196 items. It sells 10% on Monday and 75 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-057", - "prompt": "Classify the sentiment of this text: 'Nothing special. It performs its basic functions. The price is reasonable for what it offers. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-04-020", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe history of space exploration began in the mid-20th century, sparked by the Cold War rivalry between the United States and the Soviet Union. The launch of Sputnik 1, the first artificial satellite,...", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-08-075", - "prompt": "Write a highly optimized, fully documented Python function or class for: Write a Python function to solve the knapsack problem given weights, values, and maximum capacity.. Handle edge cases, type hints, and write clear code. Return ONLY raw code without any extra explanation or wrapper text.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-07-098", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Bob Jones, Charlie Brown, and Diana Prince. Bob Jones says: 'We are all knaves.' Charlie Brown says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-07-054", - "prompt": "A drawer contains 7 black socks and 15 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-088", - "prompt": "A train leaves Station A traveling at 57 mph. 4 hours later, another train leaves Station A traveling in the same direction at 74 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-018", - "prompt": "Calculate the exact value: 62 - 57.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-049", - "prompt": "Explain the primary function of the human spleen and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-083", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Charlie Brown met with the board of Oracle in Rome to discuss a strategic partnership. Later, Diana Prince and Edward Elric from Salesforce arrived in Beijing to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-04-062", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe global economy is facing unprecedented challenges due to shifting trade routes, inflation, supply chain disruptions, and changing geopolitical alliances. In response to recent crises, many companies are relocating manufacturing facilities closer to their home markets, a process known as nearshoring. While nearshoring reduces transportation costs and supply chain risks, it often leads to higher labor costs and initial setup expenses. At the same time, central banks are balancing interest rate adjustments to curb inflation without triggering deep recessions. These economic shifts are reshaping global markets, affecting international trade agreements, and influencing currency valuations across major economies.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-018", - "prompt": "Define the basic concept of 'friction' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-040", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Hannah Abbott will give a lecture at IBM Research in Chicago, while Ian Malcolm will present at Oracle in Rome.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-008", - "prompt": "List all the entities and their types from the text below.\n\nContext: Hannah Abbott visited the head office of Netflix Inc. in San Francisco last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-04-014", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine and established a new paradigm for rapid vaccine development. Unlike traditional vaccines that introduce weakened or inactivat...", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-08-099", - "prompt": "Write a highly optimized, fully documented Python function or class for: Write a Python class implementing a Least Recently Used (LRU) Cache with get and put operations in O(1) time complexity.. Handle edge cases, type hints, and write clear code. Return ONLY raw code without any extra explanation or wrapper text.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-01-013", - "prompt": "What is the capital of Germany, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-008", - "prompt": "Calculate the exact value: 129 * 268.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-048", - "prompt": "A drawer contains 8 black socks and 7 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-07-016", - "prompt": "Three friends, Peter Parker, Alice Smith, and Bob Jones, each own a different pet: cat, dog, bird. Peter Parker does not own the bird. Alice Smith owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-04-031", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly worldwide as nations seek to reduce carbon emissions and combat climate change. Solar photovoltaic panels convert sunlig...", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-076", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Laura Croft, Michael Scott, and Nancy Drew. Laura Croft says: 'We are all knaves.' Michael Scott says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-06-090", - "prompt": "Identify the logical flaws and edge case failures in this function. Return ONLY the corrected, clean implementation of is_prime:\ndef is_prime(n):\n if n <= 1: return False\n if n == 2 or n == 3: return True\n if n % 2 == 0 or n % 3 == 0: return False\n for i in range(5, int(n**0.5) + 1, 6):\n if n % i == 0 or n % (i + 1) == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-02-087", - "prompt": "Solve the following problem: A factory produces 16 units per hour. After 8 hours, 10% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-095", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Oliver Twist, Peter Parker, and Alice Smith. Oliver Twist says: 'At least one of us is a knave.' Peter Parker says: 'Oliver Twist is lying.' Alice Smith remains silent. Determine the identities of Oliver Twist, Peter Parker, and Alice Smith. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-01-038", - "prompt": "Explain the historical significance of the start of the French Revolution which took place in the year 1789. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-059", - "prompt": "Classify the sentiment of this text: 'Horrible battery life. It barely lasts two hours on a full charge, even with minimal usage. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-007", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: George Clark recently joined SpaceX in Toronto.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-062", - "prompt": "A drawer contains 12 black socks and 15 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-054", - "prompt": "Calculate the exact value: ((666 / 2) / 17) * 6.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-001", - "prompt": "Calculate the exact value: 337 + 67.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-010", - "prompt": "Three friends, Julia Roberts, Kevin Bacon, and Laura Croft, each own a different pet: cat, dog, bird. Julia Roberts does not own the bird. Kevin Bacon owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-07-035", - "prompt": "Five people (Charlie Brown, Diana Prince, Edward Elric, Fiona Gallagher, George Clark) are in a race. Charlie Brown finished before Diana Prince but after Edward Elric. Fiona Gallagher finished before George Clark but after Diana Prince. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-055", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. George Clark will give a lecture at Oracle in Rome, while Hannah Abbott will present at Salesforce in Beijing.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-04-045", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe history of space exploration began in the mid-20th century, sparked by the Cold War rivalry between the United States and the Soviet Union. The launch of Sputnik 1, the first artificial satellite, in 1957 marked the beginning of the Space Age. This was followed by Yuri Gagarin becoming the first human in space in 1961, and the historic Apollo 11 moon landing in 1969. In the decades since, space exploration has transitioned from geopolitical competition to international cooperation, exemplified by the International Space Station. Today, private aerospace companies are playing an increasingly dominant role, launching commercial satellites, developing reusable rockets, and planning future crewed missions to Mars.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-002", - "prompt": "List all the entities and their types from the text below.\n\nContext: Bob Jones visited the head office of Microsoft Corp in London last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-067", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Charlie Brown, Diana Prince, and Edward Elric. Charlie Brown says: 'At least one of us is a knave.' Diana Prince says: 'Charlie Brown is lying.' Edward Elric remains silent. Determine the identities of Charlie Brown, Diana Prince, and Edward Elric. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-08-030", - "prompt": "Write code to implement: Write a Python function that returns the second-largest number in a list, handling duplicates correctly.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-02-069", - "prompt": "Solve the following problem: A factory produces 23 units per hour. After 8 hours, 25% of the units are inspected. Of those, 5% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-063", - "prompt": "Provide a brief overview of 'overfitting', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-093", - "prompt": "Explain the theory and mechanics of gauge theories in particle physics. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-043", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Kevin Bacon will give a lecture at Google LLC in New York City, while Laura Croft will present at Microsoft Corp in London.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-053", - "prompt": "Classify the sentiment of this text: 'Terrible customer service. I spent 3 hours on hold and they still couldn't resolve my problem. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-07-069", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Edward Elric, Fiona Gallagher, and George Clark. Edward Elric says: 'At least one of us is a knave.' Fiona Gallagher says: 'Edward Elric is lying.' George Clark remains silent. Determine the identities of Edward Elric, Fiona Gallagher, and George Clark. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-01-035", - "prompt": "Explain the historical significance of the fall of Constantinople which took place in the year 1453. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-057", - "prompt": "Provide a brief overview of 'microeconomics', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-081", - "prompt": "Explain the theory and mechanics of topological insulators. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-022", - "prompt": "Calculate the exact value: 482 - 73.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-06-041", - "prompt": "This code has an issue: it fails on certain inputs. Correct it:\ndef factorial(n):\n if n < 0:\n return 1\n result = 1\n for i in range(1, n):\n result *= i\n return result\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-06-060", - "prompt": "This code has an issue: it fails on certain inputs. Correct it:\ndef is_prime(n):\n if n <= 1: return False\n if n == 2: return True\n for i in range(2, int(n**0.5)):\n if n % i == 0:\n return False\n return True\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-01-067", - "prompt": "Explain the theory and mechanics of non-equilibrium thermodynamics. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-08-063", - "prompt": "Develop a clean, efficient Python solution: Write a Python function that implements a simple matrix transposition for a 2D list.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-05-094", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Nancy Drew met with the board of AMD in Boston to discuss a strategic partnership. Later, Oliver Twist and Peter Parker from NVIDIA arrived in Seattle to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-048", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Peter Parker will give a lecture at Meta Platforms in Sydney, while Alice Smith will present at SpaceX in Toronto.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-087", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, George Clark, Hannah Abbott, and Ian Malcolm. George Clark says: 'At least one of us is a knave.' Hannah Abbott says: 'George Clark is lying.' Ian Malcolm remains silent. Determine the identities of George Clark, Hannah Abbott, and Ian Malcolm. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-058", - "prompt": "A store has 409 items. It sells 10% on Monday and 75 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-063", - "prompt": "Five people (Oliver Twist, Peter Parker, Alice Smith, Bob Jones, Charlie Brown) are in a race. Oliver Twist finished before Peter Parker but after Alice Smith. Bob Jones finished before Charlie Brown but after Peter Parker. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-092", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Laura Croft met with the board of Netflix Inc. in San Francisco to discuss a strategic partnership. Later, Michael Scott and Nancy Drew from Intel Corporation arrived in Austin to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-081", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Alice Smith met with the board of NVIDIA in Seattle to discuss a strategic partnership. Later, Bob Jones and Charlie Brown from IBM Research arrived in Chicago to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-006", - "prompt": "Three friends, Fiona Gallagher, George Clark, and Hannah Abbott, each own a different pet: cat, dog, bird. Fiona Gallagher does not own the bird. George Clark owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-073", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Ian Malcolm met with the board of Apple Inc. in Tokyo to discuss a strategic partnership. Later, Julia Roberts and Kevin Bacon from Tesla Motors arrived in Paris to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-094", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Nancy Drew, Oliver Twist, and Peter Parker. Nancy Drew says: 'We are all knaves.' Oliver Twist says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-01-033", - "prompt": "Define the basic concept of 'acid rain' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-001", - "prompt": "Classify the sentiment of this text: 'This product is amazing! It works exactly as advertised and has saved me so much time. Highly recommend!'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-012", - "prompt": "Define the basic concept of 'earthquake' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-065", - "prompt": "An investor deposits $2290 in a savings account with 3% annual interest compounded annually. What will the balance be after 10 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-005", - "prompt": "What chemical element has the symbol C, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-027", - "prompt": "Classify the sentiment of this text: 'Nothing special. It performs its basic functions. The price is reasonable for what it offers.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-081", - "prompt": "Classify the sentiment of this text: 'The battery life is absolutely incredible, lasting over two days of heavy use, but the screen scratches too easily and the case feels cheap.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-071", - "prompt": "If the price of an item increases from $116 to $431, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-089", - "prompt": "Explain the theory and mechanics of dark energy and cosmic expansion models. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-06-049", - "prompt": "This code has an issue: it fails on certain inputs. Correct it:\ndef binary_search(arr, target):\n low, high = 0, len(arr) - 1\n while low <= high:\n mid = (low + high) / 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid + 1\n else:\n high = mid - 1\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-05-058", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Julia Roberts will give a lecture at Microsoft Corp in London, while Kevin Bacon will present at Apple Inc. in Tokyo.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-08-027", - "prompt": "Write code to implement: Write a Python function to check if a number is even or odd.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-03-083", - "prompt": "Classify the sentiment of this text: 'I love the sound quality of these headphones, however the earcups are very uncomfortable for long sessions and they frequently drop bluetooth connection.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-014", - "prompt": "List all the entities and their types from the text below.\n\nContext: Nancy Drew visited the head office of Salesforce in Beijing last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-090", - "prompt": "Analyze the debate or research surrounding epigenetic reprogramming in stem cells. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-047", - "prompt": "An investor deposits $10560 in a savings account with 6% annual interest compounded annually. What will the balance be after 8 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-020", - "prompt": "List all the entities and their types from the text below.\n\nContext: Diana Prince visited the head office of Meta Platforms in Sydney last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-047", - "prompt": "Explain the historical significance of the discovery of the Americas by Columbus which took place in the year 1492. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-018", - "prompt": "Three friends, Bob Jones, Charlie Brown, and Diana Prince, each own a different pet: cat, dog, bird. Bob Jones does not own the bird. Charlie Brown owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-039", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. George Clark will give a lecture at NVIDIA in Seattle, while Hannah Abbott will present at IBM Research in Chicago.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-04-098", - "prompt": "Write a detailed executive summary of the following document. Your summary should highlight the background, the main challenges, and the proposed solutions:\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems that learn from data, identify patterns, and make decisions with minimal human intervention. Unlike traditional software which relies on hardcoded rules, machine learning algorithms use statistical techniques to improve their performance over time as they are exposed to more data. Key subfields include supervised learning, where models are trained on labeled data, and unsupervised learning, which finds hidden patterns in unlabeled datasets. Deep learning, a specialized branch of machine learning, utilizes multi-layered artificial neural networks to process complex data types like images, audio, and natural language, enabling advanced applications such as autonomous driving and medical diagnosis.\n\nThe development of mRNA vaccines has revolutionized preventative medicine and established a new paradigm for rapid vaccine development. Unlike traditional vaccines that introduce weakened or inactivated pathogens to stimulate an immune response, mRNA vaccines deliver genetic instructions for cells to produce a harmless viral protein, known as the spike protein. The human immune system recognizes this protein as foreign, triggers an immune response, and produces antibodies without causing disease. This technology allows vaccines to be designed and manufactured extremely rapidly once a pathogen's genetic sequence is known, which was crucial during the global pandemic and holds promise for future cancer therapies.\n\nThe history of space exploration began in the mid-20th century, sparked by the Cold War rivalry between the United States and the Soviet Union. The launch of Sputnik 1, the first artificial satellite, in 1957 marked the beginning of the Space Age. This was followed by Yuri Gagarin becoming the first human in space in 1961, and the historic Apollo 11 moon landing in 1969. In the decades since, space exploration has transitioned from geopolitical competition to international cooperation, exemplified by the International Space Station. Today, private aerospace companies are playing an increasingly dominant role, launching commercial satellites, developing reusable rockets, and planning future crewed missions to Mars.\n\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly worldwide as nations seek to reduce carbon emissions and combat climate change. Solar photovoltaic panels convert sunlight directly into electricity, while wind turbines harness the kinetic energy of air currents. Hydropower utilizes flowing water to spin generators, providing a stable baseload supply of clean electricity. Together, these technologies are transforming the global grid, reducing dependence on fossil fuels, and driving down the cost of clean energy. However, challenges like grid integration, battery storage capacity, and geographic variability remain critical barriers that must be addressed to achieve a fully sustainable energy future.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-072", - "prompt": "Solve the following problem: A factory produces 17 units per hour. After 8 hours, 10% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-088", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Hannah Abbott met with the board of Tesla Motors in Paris to discuss a strategic partnership. Later, Ian Malcolm and Julia Roberts from Amazon Web Services arrived in Berlin to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-08-040", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to parse a CSV string and convert it to a list of dictionaries.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-07-064", - "prompt": "A drawer contains 15 black socks and 14 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-029", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Michael Scott recently joined Google LLC in New York City.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-007", - "prompt": "Classify the sentiment of this text: 'Works flawlessly. I haven't encountered a single bug or issue. Highly recommended to everyone.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-032", - "prompt": "List all the entities and their types from the text below.\n\nContext: Peter Parker visited the head office of Tesla Motors in Paris last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-004", - "prompt": "List all the entities and their types from the text below.\n\nContext: Diana Prince visited the head office of Tesla Motors in Paris last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-001", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Alice Smith recently joined Google LLC in New York City.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-004", - "prompt": "Calculate the exact value: 62 * 356.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-063", - "prompt": "Classify the sentiment of this text: 'The delivery took a normal amount of time. The packaging was adequate, and the item arrived intact. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-020", - "prompt": "Calculate the exact value: 319 + 145.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-032", - "prompt": "What chemical element has the symbol Be, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-091", - "prompt": "A train leaves Station A traveling at 54 mph. 1 hours later, another train leaves Station A traveling in the same direction at 71 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-06-098", - "prompt": "Identify the logical flaws and edge case failures in this function. Return ONLY the corrected, clean implementation of factorial:\ndef factorial(n):\n memo = {}\n if n in memo: return memo[n]\n if n == 0 or n == 1: return 1\n memo[n] = n * factorial(n - 1)\n return memo[n]\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-03-013", - "prompt": "Classify the sentiment of this text: 'Best purchase of the year. The build quality is top-notch, feels very premium and solid.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-04-080", - "prompt": "Write a detailed executive summary of the following document. Your summary should highlight the background, the main challenges, and the proposed solutions:\n\nText:\nThe history of space exploration began in the mid-20th century, sparked by the Cold War rivalry between the United States and the Soviet Union. The launch of Sputnik 1, the first artificial satellite, in 1957 marked the beginning of the Space Age. This was followed by Yuri Gagarin becoming the first human in space in 1961, and the historic Apollo 11 moon landing in 1969. In the decades since, space exploration has transitioned from geopolitical competition to international cooperation, exemplified by the International Space Station. Today, private aerospace companies are playing an increasingly dominant role, launching commercial satellites, developing reusable rockets, and planning future crewed missions to Mars.\n\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly worldwide as nations seek to reduce carbon emissions and combat climate change. Solar photovoltaic panels convert sunlight directly into electricity, while wind turbines harness the kinetic energy of air currents. Hydropower utilizes flowing water to spin generators, providing a stable baseload supply of clean electricity. Together, these technologies are transforming the global grid, reducing dependence on fossil fuels, and driving down the cost of clean energy. However, challenges like grid integration, battery storage capacity, and geographic variability remain critical barriers that must be addressed to achieve a fully sustainable energy future.\n\nThe global economy is facing unprecedented challenges due to shifting trade routes, inflation, supply chain disruptions, and changing geopolitical alliances. In response to recent crises, many companies are relocating manufacturing facilities closer to their home markets, a process known as nearshoring. While nearshoring reduces transportation costs and supply chain risks, it often leads to higher labor costs and initial setup expenses. At the same time, central banks are balancing interest rate adjustments to curb inflation without triggering deep recessions. These economic shifts are reshaping global markets, affecting international trade agreements, and influencing currency valuations across major economies.\n\nMachine learning is a subset of artificial intelligence focused on building systems that learn from data, identify patterns, and make decisions with minimal human intervention. Unlike traditional software which relies on hardcoded rules, machine learning algorithms use statistical techniques to improve their performance over time as they are exposed to more data. Key subfields include supervised learning, where models are trained on labeled data, and unsupervised learning, which finds hidden patterns in unlabeled datasets. Deep learning, a specialized branch of machine learning, utilizes multi-layered artificial neural networks to process complex data types like images, audio, and natural language, enabling advanced applications such as autonomous driving and medical diagnosis.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-017", - "prompt": "Classify the sentiment of this text: 'Very loud, runs hot, and consumes a massive amount of power. I would not buy this again.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-08-014", - "prompt": "Write code to implement: Write a Python function to calculate the average of a list of floats, handling empty list safely.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-06-088", - "prompt": "Identify the logical flaws and edge case failures in this function. Return ONLY the corrected, clean implementation of binary_search:\ndef binary_search(arr, target):\n low, high = 0, len(arr) - 1\n while low < high:\n mid = (low + high) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n low = mid\n else:\n high = mid\n return -1\n\nReturn ONLY the corrected code without explanation.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-08-033", - "prompt": "Write code to implement: Write a Python function to find the maximum element in a list of numbers.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-05-096", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Peter Parker met with the board of IBM Research in Chicago to discuss a strategic partnership. Later, Alice Smith and Bob Jones from Oracle arrived in Rome to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-044", - "prompt": "A drawer contains 8 black socks and 6 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-01-051", - "prompt": "Provide a brief overview of 'semiconductors', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-08-084", - "prompt": "Write a highly optimized, fully documented Python function or class for: Write a Python function to parse and evaluate basic mathematical expressions containing parentheses, addition, subtraction, multiplication, and division.. Handle edge cases, type hints, and write clear code. Return ONLY raw code without any extra explanation or wrapper text.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-04-069", - "prompt": "Write a detailed executive summary of the following document. Your summary should highlight the background, the main challenges, and the proposed solutions:\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine and established a new paradigm for rapid vaccine development. Unlike traditional vaccines that introduce weakened or inactivated pathogens to stimulate an immune response, mRNA vaccines deliver genetic instructions for cells to produce a harmless viral protein, known as the spike protein. The human immune system recognizes this protein as foreign, triggers an immune response, and produces antibodies without causing disease. This technology allows vaccines to be designed and manufactured extremely rapidly once a pathogen's genetic sequence is known, which was crucial during the global pandemic and holds promise for future cancer therapies.\n\nThe history of space exploration began in the mid-20th century, sparked by the Cold War rivalry between the United States and the Soviet Union. The launch of Sputnik 1, the first artificial satellite, in 1957 marked the beginning of the Space Age. This was followed by Yuri Gagarin becoming the first human in space in 1961, and the historic Apollo 11 moon landing in 1969. In the decades since, space exploration has transitioned from geopolitical competition to international cooperation, exemplified by the International Space Station. Today, private aerospace companies are playing an increasingly dominant role, launching commercial satellites, developing reusable rockets, and planning future crewed missions to Mars.\n\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly worldwide as nations seek to reduce carbon emissions and combat climate change. Solar photovoltaic panels convert sunlight directly into electricity, while wind turbines harness the kinetic energy of air currents. Hydropower utilizes flowing water to spin generators, providing a stable baseload supply of clean electricity. Together, these technologies are transforming the global grid, reducing dependence on fossil fuels, and driving down the cost of clean energy. However, challenges like grid integration, battery storage capacity, and geographic variability remain critical barriers that must be addressed to achieve a fully sustainable energy future.\n\nThe global economy is facing unprecedented challenges due to shifting trade routes, inflation, supply chain disruptions, and changing geopolitical alliances. In response to recent crises, many companies are relocating manufacturing facilities closer to their home markets, a process known as nearshoring. While nearshoring reduces transportation costs and supply chain risks, it often leads to higher labor costs and initial setup expenses. At the same time, central banks are balancing interest rate adjustments to curb inflation without triggering deep recessions. These economic shifts are reshaping global markets, affecting international trade agreements, and influencing currency valuations across major economies.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-092", - "prompt": "If the price of an item increases from $133 to $476, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-047", - "prompt": "Classify the sentiment of this text: 'Very loud, runs hot, and consumes a massive amount of power. I would not buy this again. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-04-036", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nRenewable energy technologies like solar, wind, and hydro are expanding rapidly worldwide as nations seek to reduce carbon emissions and combat climate change. Solar photovoltaic panels convert sunlight directly into electricity, while wind turbines harness the kinetic energy of air currents. Hydropower utilizes flowing water to spin generators, providing a stable baseload supply of clean electricity. Together, these technologies are transforming the global grid, reducing dependence on fossil fuels, and driving down the cost of clean energy. However, challenges like grid integration, battery storage capacity, and geographic variability remain critical barriers that must be addressed to achieve a fully sustainable energy future.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-004", - "prompt": "Three friends, Diana Prince, Edward Elric, and Fiona Gallagher, each own a different pet: cat, dog, bird. Diana Prince does not own the bird. Edward Elric owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-099", - "prompt": "Classify the sentiment of this text: 'It has a sleek appearance and starts up fast, but the keyboard is terrible and it runs extremely hot under moderate load.'. What is the emotion expressed here?", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-074", - "prompt": "Analyze the debate or research surrounding loop quantum gravity. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-060", - "prompt": "Provide a brief overview of 'market equilibrium', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-021", - "prompt": "Calculate the exact value: 383 * 245.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-052", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Diana Prince will give a lecture at AMD in Boston, while Edward Elric will present at NVIDIA in Seattle.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-038", - "prompt": "A drawer contains 6 black socks and 6 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-005", - "prompt": "Calculate the exact value: 466 + 289.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-008", - "prompt": "Three friends, Hannah Abbott, Ian Malcolm, and Julia Roberts, each own a different pet: cat, dog, bird. Hannah Abbott does not own the bird. Ian Malcolm owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-006", - "prompt": "Classify the sentiment of this text: 'It works as expected, but the build quality is a bit plasticky. Moderate satisfaction.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-020", - "prompt": "What chemical element has the symbol Fe, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-04-049", - "prompt": "Provide a concise summary of the main points in 3 sentences max.\n\nText:\nThe development of mRNA vaccines has revolutionized preventative medicine and established a new paradigm for rapid vaccine development. Unlike traditional vaccines that introduce weakened or inactivated pathogens to stimulate an immune response, mRNA vaccines deliver genetic instructions for cells to produce a harmless viral protein, known as the spike protein. The human immune system recognizes this protein as foreign, triggers an immune response, and produces antibodies without causing disease. This technology allows vaccines to be designed and manufactured extremely rapidly once a pathogen's genetic sequence is known, which was crucial during the global pandemic and holds promise for future cancer therapies.", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-035", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Charlie Brown will give a lecture at SpaceX in Toronto, while Diana Prince will present at Netflix Inc. in San Francisco.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-068", - "prompt": "Analyze the debate or research surrounding quantum electrodynamics. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-061", - "prompt": "A store has 456 items. It sells 20% on Monday and 51 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-054", - "prompt": "Provide a brief overview of 'epigenetics', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-064", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Peter Parker will give a lecture at Netflix Inc. in San Francisco, while Alice Smith will present at Intel Corporation in Austin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-033", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Alice Smith recently joined Amazon Web Services in Berlin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-064", - "prompt": "Classify the sentiment of this text: 'I was skeptical at first, but after using it for a week, I am completely sold. 5/5 stars! The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-07-089", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Ian Malcolm, Julia Roberts, and Kevin Bacon. Ian Malcolm says: 'At least one of us is a knave.' Julia Roberts says: 'Ian Malcolm is lying.' Kevin Bacon remains silent. Determine the identities of Ian Malcolm, Julia Roberts, and Kevin Bacon. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-021", - "prompt": "Classify the sentiment of this text: 'The product is decent. It does what it is supposed to do, but it doesn't have any standout features.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-077", - "prompt": "Explain the theory and mechanics of Gödel's incompleteness theorems. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-016", - "prompt": "Calculate the exact value: 152 + 89.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-063", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Oliver Twist will give a lecture at SpaceX in Toronto, while Peter Parker will present at Netflix Inc. in San Francisco.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-099", - "prompt": "Solve the following problem: A factory produces 45 units per hour. After 12 hours, 10% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-058", - "prompt": "Explain the primary function of the human brain and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-003", - "prompt": "Classify the sentiment of this text: 'The delivery took a normal amount of time. The packaging was adequate, and the item arrived intact.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-056", - "prompt": "An investor deposits $5808 in a savings account with 6% annual interest compounded annually. What will the balance be after 5 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-096", - "prompt": "Solve the following problem: A factory produces 13 units per hour. After 7 hours, 20% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-031", - "prompt": "What is the capital of Belgium, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-011", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Kevin Bacon recently joined NVIDIA in Seattle.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-08-018", - "prompt": "Write code to implement: Write a Python function to reverse a string without using built-in reverse functions.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-05-012", - "prompt": "List all the entities and their types from the text below.\n\nContext: Laura Croft visited the head office of IBM Research in Chicago last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-041", - "prompt": "Five people (Ian Malcolm, Julia Roberts, Kevin Bacon, Laura Croft, Michael Scott) are in a race. Ian Malcolm finished before Julia Roberts but after Kevin Bacon. Laura Croft finished before Michael Scott but after Julia Roberts. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-003", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Charlie Brown recently joined Apple Inc. in Tokyo.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-076", - "prompt": "A train leaves Station A traveling at 60 mph. 1 hours later, another train leaves Station A traveling in the same direction at 77 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-048", - "prompt": "Calculate the exact value: ((324 / 6) / 42) * 9.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-019", - "prompt": "What is the capital of Thailand, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-084", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Diana Prince met with the board of Salesforce in Beijing to discuss a strategic partnership. Later, Edward Elric and Fiona Gallagher from Google LLC arrived in New York City to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-017", - "prompt": "What chemical element has the symbol Ar, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-011", - "prompt": "Classify the sentiment of this text: 'Absolute garbage. It broke within two days of normal use. Customer support refused to refund me.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-030", - "prompt": "Define the basic concept of 'biodiversity' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-026", - "prompt": "Classify the sentiment of this text: 'Completely useless. It does not perform the function it was advertised to do. Extremely frustrating.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-046", - "prompt": "Classify the sentiment of this text: 'Fantastic value for money. Very affordable yet performs better than most high-end alternatives. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-046", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Nancy Drew will give a lecture at Tesla Motors in Paris, while Oliver Twist will present at Amazon Web Services in Berlin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-046", - "prompt": "A store has 532 items. It sells 30% on Monday and 47 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-056", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Hannah Abbott will give a lecture at Salesforce in Beijing, while Ian Malcolm will present at Google LLC in New York City.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-050", - "prompt": "An investor deposits $2796 in a savings account with 4% annual interest compounded annually. What will the balance be after 5 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-028", - "prompt": "What is the capital of Turkey, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-024", - "prompt": "Define the basic concept of 'wind' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-041", - "prompt": "An investor deposits $6168 in a savings account with 6% annual interest compounded annually. What will the balance be after 7 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-008", - "prompt": "What chemical element has the symbol F, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-085", - "prompt": "A train leaves Station A traveling at 41 mph. 1 hours later, another train leaves Station A traveling in the same direction at 71 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-017", - "prompt": "Calculate the exact value: 500 - 400.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-100", - "prompt": "Analyze the debate or research surrounding Keynesian vs Classical economic debate. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-045", - "prompt": "Calculate the exact value: ((371 / 6) / 25) * 6.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-081", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Alice Smith, Bob Jones, and Charlie Brown. Alice Smith says: 'At least one of us is a knave.' Bob Jones says: 'Alice Smith is lying.' Charlie Brown remains silent. Determine the identities of Alice Smith, Bob Jones, and Charlie Brown. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-01-099", - "prompt": "Explain the theory and mechanics of CRISPR-Cas9 gene drive. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-042", - "prompt": "A drawer contains 14 black socks and 14 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-029", - "prompt": "Calculate the exact value: 50 + 447.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-059", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Kevin Bacon will give a lecture at Apple Inc. in Tokyo, while Laura Croft will present at Tesla Motors in Paris.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-070", - "prompt": "A train leaves Station A traveling at 52 mph. 3 hours later, another train leaves Station A traveling in the same direction at 84 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-018", - "prompt": "Classify the sentiment of this text: 'Shipping was slow, but the customer service was fine and the product works as intended.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-077", - "prompt": "If the price of an item increases from $58 to $216, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-052", - "prompt": "A drawer contains 9 black socks and 12 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-024", - "prompt": "List all the entities and their types from the text below.\n\nContext: Hannah Abbott visited the head office of AMD in Boston last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-015", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Oliver Twist recently joined Google LLC in New York City.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-014", - "prompt": "Calculate the exact value: 398 + 422.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-012", - "prompt": "Three friends, Laura Croft, Michael Scott, and Nancy Drew, each own a different pet: cat, dog, bird. Laura Croft does not own the bird. Michael Scott owns the dog. Who owns the cat? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-030", - "prompt": "Classify the sentiment of this text: 'Decent value, but does not come with all the accessories shown in some reviews. Average.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-052", - "prompt": "Classify the sentiment of this text: 'Absolutely stellar customer service. They resolved my issue in under 5 minutes and were incredibly polite. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-044", - "prompt": "Classify the sentiment of this text: 'Do not buy this! It is a waste of money. It lacks basic features and is very difficult to use. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-04-023", - "prompt": "Summarize this text in exactly one sentence.\n\nText:\nMachine learning is a subset of artificial intelligence focused on building systems that learn from data, identify patterns, and make decisions with minimal human intervention. Unlike traditional soft...", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-086", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Fiona Gallagher met with the board of Microsoft Corp in London to discuss a strategic partnership. Later, George Clark and Hannah Abbott from Apple Inc. arrived in Tokyo to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-024", - "prompt": "Calculate the exact value: 434 * 331.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-044", - "prompt": "Explain the historical significance of the first moon landing which took place in the year 1969. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-044", - "prompt": "An investor deposits $11532 in a savings account with 6% annual interest compounded annually. What will the balance be after 5 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-033", - "prompt": "Calculate the exact value: 199 + 191.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-090", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Julia Roberts, Kevin Bacon, and Laura Croft. Julia Roberts says: 'We are all knaves.' Kevin Bacon says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-100", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Diana Prince met with the board of Microsoft Corp in London to discuss a strategic partnership. Later, Edward Elric and Fiona Gallagher from Apple Inc. arrived in Tokyo to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-098", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Bob Jones met with the board of Salesforce in Beijing to discuss a strategic partnership. Later, Charlie Brown and Diana Prince from Google LLC arrived in New York City to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-091", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Kevin Bacon, Laura Croft, and Michael Scott. Kevin Bacon says: 'At least one of us is a knave.' Laura Croft says: 'Kevin Bacon is lying.' Michael Scott remains silent. Determine the identities of Kevin Bacon, Laura Croft, and Michael Scott. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-093", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Michael Scott met with the board of Intel Corporation in Austin to discuss a strategic partnership. Later, Nancy Drew and Oliver Twist from AMD arrived in Boston to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-038", - "prompt": "Classify the sentiment of this text: 'The product arrived damaged, and when I contacted support, they were extremely unhelpful and rude. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-045", - "prompt": "Provide a brief overview of 'gene editing', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-026", - "prompt": "Calculate the exact value: 305 * 108.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-08-055", - "prompt": "Develop a clean, efficient Python solution: Write a Python function to perform run-length encoding (RLE) on a string.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-05-095", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Oliver Twist met with the board of NVIDIA in Seattle to discuss a strategic partnership. Later, Peter Parker and Alice Smith from IBM Research arrived in Chicago to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-048", - "prompt": "Classify the sentiment of this text: 'Shipping was slow, but the customer service was fine and the product works as intended. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-039", - "prompt": "Calculate the exact value: ((801 / 12) / 13) * 5.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-055", - "prompt": "Five people (George Clark, Hannah Abbott, Ian Malcolm, Julia Roberts, Kevin Bacon) are in a race. George Clark finished before Hannah Abbott but after Ian Malcolm. Julia Roberts finished before Kevin Bacon but after Hannah Abbott. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-023", - "prompt": "Classify the sentiment of this text: 'Terrible customer service. I spent 3 hours on hold and they still couldn't resolve my problem.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-027", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Kevin Bacon recently joined Oracle in Rome.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-036", - "prompt": "Classify the sentiment of this text: 'It works as expected, but the build quality is a bit plasticky. Moderate satisfaction. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-086", - "prompt": "If the price of an item increases from $101 to $373, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-022", - "prompt": "Classify the sentiment of this text: 'Absolutely stellar customer service. They resolved my issue in under 5 minutes and were incredibly polite.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-055", - "prompt": "Explain the primary function of the human gallbladder and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-050", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Bob Jones will give a lecture at Netflix Inc. in San Francisco, while Charlie Brown will present at Intel Corporation in Austin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-075", - "prompt": "Solve the following problem: A factory produces 47 units per hour. After 8 hours, 10% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-060", - "prompt": "Classify the sentiment of this text: 'Decent value, but does not come with all the accessories shown in some reviews. Average. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-090", - "prompt": "Solve the following problem: A factory produces 27 units per hour. After 12 hours, 10% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-078", - "prompt": "Solve the following problem: A factory produces 31 units per hour. After 6 hours, 25% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-022", - "prompt": "What is the capital of South Korea, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-062", - "prompt": "Explain the historical significance of the assassination of Archduke Franz Ferdinand which took place in the year 1914. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-075", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Kevin Bacon met with the board of Amazon Web Services in Berlin to discuss a strategic partnership. Later, Laura Croft and Michael Scott from Meta Platforms arrived in Sydney to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-039", - "prompt": "Provide a brief overview of 'supply and demand', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-002", - "prompt": "Calculate the exact value: 389 + 150.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-08-003", - "prompt": "Write code to implement: Write a Python function to calculate the factorial of a non-negative integer using iteration.. Make sure to handle edge cases.\n\nReturn ONLY raw code.", - "expected_route": "API_CODE" - }, - { - "task_id": "task-gen-02-093", - "prompt": "Solve the following problem: A factory produces 10 units per hour. After 6 hours, 10% of the units are inspected. Of those, 2% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-056", - "prompt": "Explain the historical significance of the signing of the Magna Carta which took place in the year 1215. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-084", - "prompt": "Analyze the debate or research surrounding NP-completeness and complexity classes. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-086", - "prompt": "Analyze the debate or research surrounding homological algebra. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-089", - "prompt": "If the price of an item increases from $104 to $293, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-032", - "prompt": "Calculate the exact value: 437 + 196.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-039", - "prompt": "Classify the sentiment of this text: 'It is acceptable. Not the best in its class, but it gets the job done without major issues. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-074", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Julia Roberts met with the board of Tesla Motors in Paris to discuss a strategic partnership. Later, Kevin Bacon and Laura Croft from Amazon Web Services arrived in Berlin to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-059", - "prompt": "Explain the historical significance of the signing of the US Declaration of Independence which took place in the year 1776. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-090", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Julia Roberts met with the board of Meta Platforms in Sydney to discuss a strategic partnership. Later, Kevin Bacon and Laura Croft from SpaceX arrived in Toronto to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-065", - "prompt": "Explain the historical significance of the dissolution of the Soviet Union which took place in the year 1991. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-023", - "prompt": "Calculate the exact value: 292 - 50.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-079", - "prompt": "Explain the theory and mechanics of statistical mechanics in polymer physics. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-080", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Peter Parker met with the board of AMD in Boston to discuss a strategic partnership. Later, Alice Smith and Bob Jones from NVIDIA arrived in Seattle to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-011", - "prompt": "What chemical element has the symbol Mg, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-030", - "prompt": "List all the entities and their types from the text below.\n\nContext: Nancy Drew visited the head office of Microsoft Corp in London last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-027", - "prompt": "Calculate the exact value: 45 * 33.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-036", - "prompt": "Provide a brief overview of 'quantum computing', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-080", - "prompt": "If the price of an item increases from $119 to $267, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-027", - "prompt": "Define the basic concept of 'climate' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-042", - "prompt": "Provide a brief overview of 'dark matter', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-030", - "prompt": "Calculate the exact value: 453 - 61.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-043", - "prompt": "A store has 258 items. It sells 25% on Monday and 45 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-062", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Nancy Drew will give a lecture at Meta Platforms in Sydney, while Oliver Twist will present at SpaceX in Toronto.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-091", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Kevin Bacon met with the board of SpaceX in Toronto to discuss a strategic partnership. Later, Laura Croft and Michael Scott from Netflix Inc. arrived in San Francisco to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-059", - "prompt": "Five people (Kevin Bacon, Laura Croft, Michael Scott, Nancy Drew, Oliver Twist) are in a race. Kevin Bacon finished before Laura Croft but after Michael Scott. Nancy Drew finished before Oliver Twist but after Laura Croft. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-009", - "prompt": "Calculate the exact value: 23 + 297.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-068", - "prompt": "If the price of an item increases from $117 to $416, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-094", - "prompt": "Analyze the debate or research surrounding supersymmetry breaking. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-044", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Laura Croft will give a lecture at Microsoft Corp in London, while Michael Scott will present at Apple Inc. in Tokyo.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-058", - "prompt": "A drawer contains 15 black socks and 6 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-065", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Alice Smith will give a lecture at Intel Corporation in Austin, while Bob Jones will present at AMD in Boston.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-014", - "prompt": "What chemical element has the symbol P, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-071", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, George Clark met with the board of Google LLC in New York City to discuss a strategic partnership. Later, Hannah Abbott and Ian Malcolm from Microsoft Corp arrived in London to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-040", - "prompt": "Classify the sentiment of this text: 'Outstanding performance! It handles heavy workloads with ease and never slows down. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-085", - "prompt": "Explain the theory and mechanics of Bayesian inference in phylogenetics. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-008", - "prompt": "Classify the sentiment of this text: 'The product arrived damaged, and when I contacted support, they were extremely unhelpful and rude.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-07-068", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Diana Prince, Edward Elric, and Fiona Gallagher. Diana Prince says: 'We are all knaves.' Edward Elric says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-073", - "prompt": "A train leaves Station A traveling at 50 mph. 1 hours later, another train leaves Station A traveling in the same direction at 88 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-015", - "prompt": "Define the basic concept of 'lightning' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-049", - "prompt": "Classify the sentiment of this text: 'I am extremely happy with this purchase. The packaging was neat, and it arrived earlier than expected. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-024", - "prompt": "Classify the sentiment of this text: 'It works fine, but the setup took longer than I expected. Average user experience.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-040", - "prompt": "A store has 570 items. It sells 10% on Monday and 71 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-099", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Charlie Brown met with the board of Google LLC in New York City to discuss a strategic partnership. Later, Diana Prince and Edward Elric from Microsoft Corp arrived in London to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-013", - "prompt": "Calculate the exact value: 424 + 455.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-060", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Laura Croft will give a lecture at Tesla Motors in Paris, while Michael Scott will present at Amazon Web Services in Berlin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-049", - "prompt": "Five people (Alice Smith, Bob Jones, Charlie Brown, Diana Prince, Edward Elric) are in a race. Alice Smith finished before Bob Jones but after Charlie Brown. Diana Prince finished before Edward Elric but after Bob Jones. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-07-096", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Peter Parker, Alice Smith, and Bob Jones. Peter Parker says: 'We are all knaves.' Alice Smith says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-015", - "prompt": "Classify the sentiment of this text: 'An okay product. It has some useful features but also some design flaws. It's tolerable.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-028", - "prompt": "List all the entities and their types from the text below.\n\nContext: Laura Croft visited the head office of Salesforce in Beijing last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-007", - "prompt": "What is the capital of Canada, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-089", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Ian Malcolm met with the board of Amazon Web Services in Berlin to discuss a strategic partnership. Later, Julia Roberts and Kevin Bacon from Meta Platforms arrived in Sydney to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-021", - "prompt": "Define the basic concept of 'magnetism' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-012", - "prompt": "Classify the sentiment of this text: 'Average quality. It is not terrible, but it is not great either. Just okay for the price.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-064", - "prompt": "Explain the primary function of the human stomach and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-026", - "prompt": "List all the entities and their types from the text below.\n\nContext: Julia Roberts visited the head office of IBM Research in Chicago last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-078", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Nancy Drew met with the board of Netflix Inc. in San Francisco to discuss a strategic partnership. Later, Oliver Twist and Peter Parker from Intel Corporation arrived in Austin to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-018", - "prompt": "List all the entities and their types from the text below.\n\nContext: Bob Jones visited the head office of Tesla Motors in Paris last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-066", - "prompt": "Provide a brief overview of 'reinforcement learning', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-020", - "prompt": "Classify the sentiment of this text: 'Avoid at all costs. The setup instructions are confusing and the software is filled with bugs.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-057", - "prompt": "Calculate the exact value: ((564 / 2) / 26) * 4.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-037", - "prompt": "Classify the sentiment of this text: 'Works flawlessly. I haven't encountered a single bug or issue. Highly recommended to everyone. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-055", - "prompt": "A store has 543 items. It sells 20% on Monday and 27 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-042", - "prompt": "Calculate the exact value: ((167 / 8) / 46) * 7.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-083", - "prompt": "Explain the theory and mechanics of Markov chain Monte Carlo algorithms. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-040", - "prompt": "A drawer contains 15 black socks and 13 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-01-080", - "prompt": "Analyze the debate or research surrounding chiral symmetry breaking. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-051", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Charlie Brown will give a lecture at Intel Corporation in Austin, while Diana Prince will present at AMD in Boston.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-097", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Alice Smith met with the board of Oracle in Rome to discuss a strategic partnership. Later, Bob Jones and Charlie Brown from Salesforce arrived in Beijing to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-054", - "prompt": "Classify the sentiment of this text: 'It works fine, but the setup took longer than I expected. Average user experience. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-061", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Michael Scott will give a lecture at Amazon Web Services in Berlin, while Nancy Drew will present at Meta Platforms in Sydney.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-063", - "prompt": "Calculate the exact value: ((414 / 9) / 13) * 5.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-057", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Ian Malcolm will give a lecture at Google LLC in New York City, while Julia Roberts will present at Microsoft Corp in London.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-037", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Edward Elric will give a lecture at Intel Corporation in Austin, while Fiona Gallagher will present at AMD in Boston.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-054", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Fiona Gallagher will give a lecture at IBM Research in Chicago, while George Clark will present at Oracle in Rome.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-037", - "prompt": "A store has 344 items. It sells 20% on Monday and 79 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-068", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Diana Prince met with the board of IBM Research in Chicago to discuss a strategic partnership. Later, Edward Elric and Fiona Gallagher from Oracle arrived in Rome to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-025", - "prompt": "Calculate the exact value: 463 - 451.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-052", - "prompt": "Explain the primary function of the human large intestine and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-076", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Laura Croft met with the board of Meta Platforms in Sydney to discuss a strategic partnership. Later, Michael Scott and Nancy Drew from SpaceX arrived in Toronto to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-081", - "prompt": "Solve the following problem: A factory produces 46 units per hour. After 12 hours, 10% of the units are inspected. Of those, 5% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-025", - "prompt": "Classify the sentiment of this text: 'Beautiful design, very intuitive interface, and runs extremely fast. Exceeded all my expectations.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-036", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Diana Prince will give a lecture at Netflix Inc. in San Francisco, while Edward Elric will present at Intel Corporation in Austin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-006", - "prompt": "Define the basic concept of 'blockchain' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-050", - "prompt": "Classify the sentiment of this text: 'Avoid at all costs. The setup instructions are confusing and the software is filled with bugs. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-07-060", - "prompt": "A drawer contains 15 black socks and 7 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-100", - "prompt": "A train leaves Station A traveling at 49 mph. 2 hours later, another train leaves Station A traveling in the same direction at 71 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-025", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Ian Malcolm recently joined NVIDIA in Seattle.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-067", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Charlie Brown met with the board of NVIDIA in Seattle to discuss a strategic partnership. Later, Diana Prince and Edward Elric from IBM Research arrived in Chicago to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-087", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, George Clark met with the board of Apple Inc. in Tokyo to discuss a strategic partnership. Later, Hannah Abbott and Ian Malcolm from Tesla Motors arrived in Paris to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-048", - "prompt": "Provide a brief overview of 'theory of relativity', describing how it works and its main applications. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-051", - "prompt": "Calculate the exact value: ((796 / 15) / 48) * 3.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-004", - "prompt": "Classify the sentiment of this text: 'I was skeptical at first, but after using it for a week, I am completely sold. 5/5 stars!'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-041", - "prompt": "Classify the sentiment of this text: 'Absolute garbage. It broke within two days of normal use. Customer support refused to refund me. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-096", - "prompt": "Analyze the debate or research surrounding general equilibrium theory in economics. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-087", - "prompt": "Explain the theory and mechanics of Riemann hypothesis and prime distribution. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-074", - "prompt": "If the price of an item increases from $120 to $317, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-085", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Edward Elric met with the board of Google LLC in New York City to discuss a strategic partnership. Later, Fiona Gallagher and George Clark from Microsoft Corp arrived in London to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-077", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Michael Scott met with the board of SpaceX in Toronto to discuss a strategic partnership. Later, Nancy Drew and Oliver Twist from Netflix Inc. arrived in San Francisco to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-001", - "prompt": "What is the capital of France, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-016", - "prompt": "List all the entities and their types from the text below.\n\nContext: Peter Parker visited the head office of Microsoft Corp in London last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-079", - "prompt": "A train leaves Station A traveling at 48 mph. 4 hours later, another train leaves Station A traveling in the same direction at 76 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-031", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Oliver Twist recently joined Apple Inc. in Tokyo.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-013", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Michael Scott recently joined Oracle in Rome.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-019", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Charlie Brown recently joined Amazon Web Services in Berlin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-028", - "prompt": "Calculate the exact value: 405 - 126.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-046", - "prompt": "A drawer contains 14 black socks and 7 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-042", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Julia Roberts will give a lecture at Salesforce in Beijing, while Kevin Bacon will present at Google LLC in New York City.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-002", - "prompt": "What chemical element has the symbol He, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-045", - "prompt": "Five people (Michael Scott, Nancy Drew, Oliver Twist, Peter Parker, Alice Smith) are in a race. Michael Scott finished before Nancy Drew but after Oliver Twist. Peter Parker finished before Alice Smith but after Nancy Drew. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-03-061", - "prompt": "Classify the sentiment of this text: 'This product is amazing! It works exactly as advertised and has saved me so much time. Highly recommend! The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-095", - "prompt": "If the price of an item increases from $77 to $405, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-056", - "prompt": "A drawer contains 9 black socks and 15 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-047", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Oliver Twist will give a lecture at Amazon Web Services in Berlin, while Peter Parker will present at Meta Platforms in Sydney.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-045", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Michael Scott will give a lecture at Apple Inc. in Tokyo, while Nancy Drew will present at Tesla Motors in Paris.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-012", - "prompt": "Calculate the exact value: 311 - 239.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-083", - "prompt": "If the price of an item increases from $62 to $420, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-029", - "prompt": "What chemical element has the symbol H, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-010", - "prompt": "List all the entities and their types from the text below.\n\nContext: Julia Roberts visited the head office of AMD in Boston last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-07-066", - "prompt": "A drawer contains 11 black socks and 10 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-009", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Ian Malcolm recently joined Intel Corporation in Austin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-098", - "prompt": "If the price of an item increases from $86 to $416, what is the percentage increase? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-025", - "prompt": "What is the capital of Kenya, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-029", - "prompt": "Classify the sentiment of this text: 'Horrible battery life. It barely lasts two hours on a full charge, even with minimal usage.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-072", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Hannah Abbott met with the board of Microsoft Corp in London to discuss a strategic partnership. Later, Ian Malcolm and Julia Roberts from Apple Inc. arrived in Tokyo to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-005", - "prompt": "Classify the sentiment of this text: 'Very laggy and constantly crashes. I lost my unsaved data twice. I want a refund.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-028", - "prompt": "Classify the sentiment of this text: 'A game-changer! Completely revolutionized my daily workflow. I don't know how I lived without it.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-082", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Bob Jones met with the board of IBM Research in Chicago to discuss a strategic partnership. Later, Charlie Brown and Diana Prince from Oracle arrived in Rome to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-040", - "prompt": "Explain the primary function of the human thyroid gland and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-011", - "prompt": "Calculate the exact value: 289 + 224.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-064", - "prompt": "A store has 599 items. It sells 30% on Monday and 80 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-055", - "prompt": "Classify the sentiment of this text: 'Beautiful design, very intuitive interface, and runs extremely fast. Exceeded all my expectations. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-05-022", - "prompt": "List all the entities and their types from the text below.\n\nContext: Fiona Gallagher visited the head office of Netflix Inc. in San Francisco last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-084", - "prompt": "Solve the following problem: A factory produces 32 units per hour. After 11 hours, 20% of the units are inspected. Of those, 5% are defective. How many non-defective inspected units are there? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-026", - "prompt": "What chemical element has the symbol Pb, and what is its atomic number? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-023", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: George Clark recently joined Intel Corporation in Austin.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-082", - "prompt": "A train leaves Station A traveling at 53 mph. 2 hours later, another train leaves Station A traveling in the same direction at 73 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-067", - "prompt": "A train leaves Station A traveling at 55 mph. 2 hours later, another train leaves Station A traveling in the same direction at 78 mph. How long will it take the second train to overtake the first? (Difficulty: hard)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-043", - "prompt": "Classify the sentiment of this text: 'Best purchase of the year. The build quality is top-notch, feels very premium and solid. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-059", - "prompt": "An investor deposits $11244 in a savings account with 5% annual interest compounded annually. What will the balance be after 6 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-036", - "prompt": "A drawer contains 6 black socks and 11 white socks. What is the minimum number of socks you must pull out in the dark to guarantee a matching pair? Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-017", - "prompt": "Extract all named entities (Persons, Organizations, Locations) and return them as a JSON list.\n\nContext: Alice Smith recently joined Apple Inc. in Tokyo.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-006", - "prompt": "Calculate the exact value: 312 + 226.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-056", - "prompt": "Classify the sentiment of this text: 'Completely useless. It does not perform the function it was advertised to do. Extremely frustrating. I'm returning it.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-01-041", - "prompt": "Explain the historical significance of the signing of the Treaty of Versailles which took place in the year 1919. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-043", - "prompt": "Explain the primary function of the human heart and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-031", - "prompt": "Calculate the exact value: 152 * 242.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-041", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Ian Malcolm will give a lecture at Oracle in Rome, while Julia Roberts will present at Salesforce in Beijing.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-052", - "prompt": "A store has 347 items. It sells 25% on Monday and 58 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-037", - "prompt": "Explain the primary function of the human small intestine and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-053", - "prompt": "An investor deposits $8668 in a savings account with 7% annual interest compounded annually. What will the balance be after 7 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-078", - "prompt": "Analyze the debate or research surrounding the Fermi paradox and solutions. What are the conflicting theories, key evidence, and future perspectives? (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-02-015", - "prompt": "Calculate the exact value: 367 - 226.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-038", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Fiona Gallagher will give a lecture at AMD in Boston, while George Clark will present at NVIDIA in Seattle.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-05-053", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Edward Elric will give a lecture at NVIDIA in Seattle, while Fiona Gallagher will present at IBM Research in Chicago.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-066", - "prompt": "Calculate the exact value: ((170 / 19) / 18) * 4.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-07-053", - "prompt": "Five people (Edward Elric, Fiona Gallagher, George Clark, Hannah Abbott, Ian Malcolm) are in a race. Edward Elric finished before Fiona Gallagher but after George Clark. Hannah Abbott finished before Ian Malcolm but after Fiona Gallagher. Who finished last? What is the logical solution?", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-02-034", - "prompt": "A store has 493 items. It sells 20% on Monday and 64 more on Tuesday. How many items remain? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-004", - "prompt": "What is the capital of Italy, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-046", - "prompt": "Explain the primary function of the human lungs and list three common health issues related to it. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-034", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Bob Jones will give a lecture at Meta Platforms in Sydney, while Charlie Brown will present at SpaceX in Toronto.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-095", - "prompt": "Explain the theory and mechanics of cooperative game theory and Nash bargaining. Discuss its scientific basis, challenges, and implications for modern technology. (Difficulty: hard)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-01-053", - "prompt": "Explain the historical significance of the fall of the Berlin Wall which took place in the year 1989. (Difficulty: medium)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-03-058", - "prompt": "Classify the sentiment of this text: 'A game-changer! Completely revolutionized my daily workflow. I don't know how I lived without it. The design is nice too.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-009", - "prompt": "Classify the sentiment of this text: 'It is acceptable. Not the best in its class, but it gets the job done without major issues.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-016", - "prompt": "Classify the sentiment of this text: 'Fantastic value for money. Very affordable yet performs better than most high-end alternatives.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-060", - "prompt": "Calculate the exact value: ((256 / 13) / 20) * 2.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-010", - "prompt": "Calculate the exact value: 376 * 342.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-019", - "prompt": "Calculate the exact value: 193 - 59.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-038", - "prompt": "An investor deposits $11485 in a savings account with 7% annual interest compounded annually. What will the balance be after 6 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-02-007", - "prompt": "Calculate the exact value: 25 + 57.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-01-009", - "prompt": "Define the basic concept of 'evaporation' in a single sentence. Keep it simple. (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-07-070", - "prompt": "On an island, there are knights (always tell the truth) and knaves (always lie). You meet three people, Fiona Gallagher, George Clark, and Hannah Abbott. Fiona Gallagher says: 'We are all knaves.' George Clark says: 'Exactly one of us is a knight.' Determine who is a knight and who is a knave. Think step-by-step before answering.", - "expected_route": "API_LOGIC" - }, - { - "task_id": "task-gen-05-049", - "prompt": "Find names, places, and companies in the following sentence. Format output as a JSON list: [{\"entity\": \"...\", \"type\": \"...\"}]\n\nContext: Dr. Alice Smith will give a lecture at SpaceX in Toronto, while Bob Jones will present at Netflix Inc. in San Francisco.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-062", - "prompt": "An investor deposits $1319 in a savings account with 3% annual interest compounded annually. What will the balance be after 8 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-051", - "prompt": "Classify the sentiment of this text: 'The product is decent. It does what it is supposed to do, but it doesn't have any standout features. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-036", - "prompt": "Calculate the exact value: ((646 / 9) / 20) * 9.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-03-019", - "prompt": "Classify the sentiment of this text: 'I am extremely happy with this purchase. The packaging was neat, and it arrived earlier than expected.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-02-003", - "prompt": "Calculate the exact value: 124 * 81.", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-070", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Fiona Gallagher met with the board of Salesforce in Beijing to discuss a strategic partnership. Later, George Clark and Hannah Abbott from Google LLC arrived in New York City to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-01-010", - "prompt": "What is the capital of China, and what is its official currency? (Difficulty: easy)", - "expected_route": "LOCAL_GENERAL" - }, - { - "task_id": "task-gen-05-069", - "prompt": "Perform named entity recognition on the following context. Extract all persons, companies, dates, and locations. Format your output as a valid JSON list of objects: [{\"entity\": \"...\", \"type\": \"...\"}].\n\nContext: On June 15, Edward Elric met with the board of Oracle in Rome to discuss a strategic partnership. Later, Fiona Gallagher and George Clark from Salesforce arrived in Beijing to finalize the agreement details.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-02-035", - "prompt": "An investor deposits $12199 in a savings account with 3% annual interest compounded annually. What will the balance be after 5 years? (Difficulty: medium)", - "expected_route": "API_MATH" - }, - { - "task_id": "task-gen-05-006", - "prompt": "List all the entities and their types from the text below.\n\nContext: Fiona Gallagher visited the head office of Meta Platforms in Sydney last Monday.", - "expected_route": "LOCAL_NER" - }, - { - "task_id": "task-gen-03-045", - "prompt": "Classify the sentiment of this text: 'An okay product. It has some useful features but also some design flaws. It's tolerable. It matches my expectations.'. Classify the tone.", - "expected_route": "LOCAL_SENTIMENT" - }, - { - "task_id": "task-gen-03-010", - "prompt": "Classify the sentiment of this text: 'Outstanding performance! It handles heavy workloads with ease and never slows down.'. Give the sentiment as Positive, Negative, or Neutral.", - "expected_route": "LOCAL_SENTIMENT" - } -] diff --git a/tests/test_classifier.py b/tests/test_classifier.py index a21cbce..7b7f211 100644 --- a/tests/test_classifier.py +++ b/tests/test_classifier.py @@ -54,18 +54,12 @@ def test_classifier_long_context() -> None: def test_classifier_ambiguous_prompts() -> None: - # "Write Python to calculate sentiment" - # Code keywords: "Write Python" (python=2), "script" (script=3), structure (def/``` code search) - # Math: "calculate" (3) - # Sentiment: "sentiment" (5) - # Total scores: Code has 6 (from script/code/python/etc.), Sentiment has 5. - # Code should win! + # Code + sentiment keywords — LLM should pick API_CODE (writing code). result = classify("Write a Python script to calculate sentiment of text") assert result == ROUTE_API_CODE def test_classifier_negative_penalties() -> None: - # Contains a number but asks to write a story - # Math score is penalized by -5, general boosted by +3 + # Story request with numbers — should not be routed to math. result = classify("Write a story about a boy who has 3 apples and 2 oranges") assert result == ROUTE_LOCAL_GENERAL diff --git a/tests/test_router.py b/tests/test_router.py index d3da56a..16fa102 100644 --- a/tests/test_router.py +++ b/tests/test_router.py @@ -78,6 +78,7 @@ async def test_route_sentiment_local() -> None: patch("handlers.sentiment.LocalSLMEngine.get_instance", return_value=fake_engine), patch("handlers.ner.LocalSLMEngine.get_instance", return_value=fake_engine), patch("handlers.summarization.LocalSLMEngine.get_instance", return_value=fake_engine), + patch("agent.router.classify", return_value="LOCAL_SENTIMENT"), patch("engines.remote_llm.RemoteLLMEngine.generate", new_callable=AsyncMock), ): router = AgentRouter(cache=cache) @@ -95,6 +96,7 @@ async def test_route_ner_local() -> None: patch("handlers.sentiment.LocalSLMEngine.get_instance", return_value=fake_engine), patch("handlers.ner.LocalSLMEngine.get_instance", return_value=fake_engine), patch("handlers.summarization.LocalSLMEngine.get_instance", return_value=fake_engine), + patch("agent.router.classify", return_value="LOCAL_NER"), patch("engines.remote_llm.RemoteLLMEngine.generate", new_callable=AsyncMock), ): router = AgentRouter(cache=cache) @@ -113,6 +115,7 @@ async def test_route_api_code() -> None: patch("handlers.sentiment.LocalSLMEngine.get_instance"), patch("handlers.ner.LocalSLMEngine.get_instance"), patch("handlers.summarization.LocalSLMEngine.get_instance"), + patch("agent.router.classify", return_value="API_CODE"), patch("engines.remote_llm.RemoteLLMEngine.generate", new_callable=AsyncMock) as mock_remote, ): mock_remote.return_value = "def add(a, b): return a + b" @@ -130,6 +133,7 @@ async def test_route_api_logic() -> None: patch("handlers.sentiment.LocalSLMEngine.get_instance"), patch("handlers.ner.LocalSLMEngine.get_instance"), patch("handlers.summarization.LocalSLMEngine.get_instance"), + patch("agent.router.classify", return_value="API_LOGIC"), patch("engines.remote_llm.RemoteLLMEngine.generate", new_callable=AsyncMock) as mock_remote, ): mock_remote.return_value = "Yes"