Compare commits

...

45 Commits

Author SHA1 Message Date
Yuge Zhang b7bb4cae37 update instruction 2025-10-26 16:09:15 +08:00
Yuge Zhang 681410c048 update thinking 2025-10-26 13:18:10 +08:00
Yuge Zhang 00407764f9 add partial qwen result 2025-10-26 03:55:24 +00:00
Yuge Zhang eb9a4d2932 . 2025-10-26 10:59:26 +08:00
Yuge Zhang bc6d72985e . 2025-10-26 10:37:08 +08:00
Yuge Zhang 891b92bfc5 . 2025-10-26 10:35:00 +08:00
Yuge Zhang f0051ddb3a try out qwen3 235b 2025-10-26 10:01:32 +08:00
Yuge Zhang 373259a949 add first test result 2025-10-26 01:17:34 +00:00
Yuge Zhang ce20340ec6 . 2025-10-26 09:13:32 +08:00
Yuge Zhang b8197cca8d update agent impl 2025-10-26 01:11:57 +08:00
Yuge Zhang 2459163c85 . 2025-10-26 00:15:26 +08:00
Yuge Zhang fa51592e31 . 2025-10-25 21:49:15 +08:00
Yuge Zhang 7effbefd10 . 2025-10-25 18:54:28 +08:00
Yuge Zhang 9690c9a9fc update impl 2025-10-25 18:41:58 +08:00
Yuge Zhang c71c466c4c . 2025-10-25 18:27:06 +08:00
Yuge Zhang 0a215353ad . 2025-10-25 16:26:26 +08:00
Yuge Zhang 53b2d701c2 CrewAI baseline 2025-10-25 14:15:29 +08:00
Yuge Zhang 8ef2c82ea8 Merge branch 'main' of github.com:microsoft/agent-lightning into tinker 2025-10-25 12:36:55 +08:00
Yuge Zhang 991aa2be10 update uv lock from main 2025-10-25 12:36:40 +08:00
Yuge Zhang f00b1f3523 update uv lock 2025-10-25 11:24:48 +08:00
Yuge Zhang 8c75644ec4 update twenty question nouns dataset 2025-10-25 10:43:49 +08:00
Yuge Zhang 0e3244b782 Merge branch 'main' of github.com:microsoft/agent-lightning into tinker 2025-10-24 01:13:37 +08:00
Yuge Zhang 0a5f8e0470 hello example running 2025-10-24 00:00:30 +08:00
Yuge Zhang c88e0cfc3d . 2025-10-23 23:04:20 +08:00
Yuge Zhang a9271bf8e4 . 2025-10-23 22:52:40 +08:00
Yuge Zhang 6d912b8a60 . 2025-10-23 16:52:06 +08:00
Yuge Zhang 99f1d7ab42 . 2025-10-23 16:33:25 +08:00
Yuge Zhang 46bdd2bef5 update test llm 2025-10-23 16:14:55 +08:00
Yuge Zhang faa46dbd24 . 2025-10-23 15:00:50 +08:00
Yuge Zhang 5d8082570c update test llm 2025-10-23 12:05:44 +08:00
Yuge Zhang 9b6ca72e35 move files 2025-10-23 11:19:15 +08:00
Yuge Zhang 580bc13229 Merge branch 'main' of github.com:microsoft/agent-lightning into tinker 2025-10-23 10:09:19 +08:00
Yuge Zhang 6bf00d80c6 test with hello 1234567 2025-10-23 00:21:34 +08:00
Yuge Zhang a2c9b0a6ae . 2025-10-22 21:51:31 +08:00
Yuge Zhang 2bdf7ff275 . 2025-10-22 21:28:56 +08:00
Yuge Zhang 38aa5fd6e8 . 2025-10-22 20:56:56 +08:00
Yuge Zhang 8a002f83e0 . 2025-10-22 20:55:48 +08:00
Yuge Zhang b878de116a minimize 2025-10-22 14:49:22 +08:00
Yuge Zhang e7ef3264c9 copy rl_train 2025-10-22 14:12:24 +08:00
Yuge Zhang 9007fb28db . 2025-10-22 13:47:32 +08:00
Yuge Zhang 978d9f48b3 fix litellm proxy 2025-10-22 12:48:44 +08:00
Yuge Zhang 3ac0e1f239 . 2025-10-22 12:36:41 +08:00
Yuge Zhang 05748c5311 . 2025-10-20 23:50:12 +08:00
Yuge Zhang 20b13f18e9 . 2025-10-20 17:42:14 +08:00
Yuge Zhang 87798cc12f add tinker dependency 2025-10-20 14:43:12 +08:00
23 changed files with 2548 additions and 42 deletions
+27 -17
View File
@@ -505,6 +505,30 @@ class TraceTree:
return rewards
def span_to_triplet(self, span: Span, agent_name: str) -> Triplet:
"""Convert a span to a triplet.
Subclass can override this method to add more fields to the triplet,
such as chat messages and tool calls.
"""
prompt_token_ids = span.attributes.get("prompt_token_ids", []) # type: ignore
response_token_ids = span.attributes.get("response_token_ids", []) # type: ignore
response_id = span.attributes.get("gen_ai.response.id", None) # type: ignore
logprobs_content = span.attributes.get("logprobs.content", None) # type: ignore
if isinstance(logprobs_content, str):
logprobs_content = json.loads(logprobs_content)
response: Dict[str, Any] = {"token_ids": response_token_ids, "logprobs": logprobs_content}
else:
response = {"token_ids": response_token_ids}
return Triplet(
prompt={"token_ids": prompt_token_ids},
response=response,
reward=None,
metadata=dict(response_id=response_id, agent_name=agent_name),
)
def to_trajectory(
self,
llm_call_match: str = r"openai\.chat\.completion",
@@ -537,23 +561,9 @@ class TraceTree:
within_llm_call=False if dedup_llm_call else None,
existing_llm_call_response_ids=set(),
)
id_transitions = [
(
llm_call.id,
Triplet(
prompt={"token_ids": llm_call.span.attributes.get("prompt_token_ids", [])}, # type: ignore
response={"token_ids": llm_call.span.attributes.get("response_token_ids", [])}, # type: ignore
reward=None,
metadata=dict(
response_id=llm_call.span.attributes.get( # type: ignore
"gen_ai.response.id", None
), # it works at least for OpenAI
agent_name=agent_name,
),
),
)
for llm_call, agent_name in llm_calls
]
id_transitions: List[Tuple[str, Triplet]] = []
for llm_call, agent_name in llm_calls:
id_transitions.append((llm_call.id, self.span_to_triplet(llm_call.span, agent_name)))
rewards = self.match_rewards(reward_match, [call for call, _ in llm_calls])
transitions = [
+41 -23
View File
@@ -2,12 +2,13 @@
from __future__ import annotations
import json
import logging
import multiprocessing
import signal
import socket
import time
from typing import Any, Callable
from typing import Any, Callable, no_type_check
import flask
import requests
@@ -40,41 +41,58 @@ def _patch_new_agentops():
_original_handle_chat_attributes = handle_chat_attributes # type: ignore
@no_type_check
def _handle_chat_attributes_with_tokens(args=None, kwargs=None, return_value=None, **kws): # type: ignore
attributes = _original_handle_chat_attributes(args=args, kwargs=kwargs, return_value=return_value, **kws) # type: ignore
if return_value is not None and hasattr(return_value, "prompt_token_ids"): # type: ignore
attributes["prompt_token_ids"] = list(return_value.prompt_token_ids) # type: ignore
if return_value is not None and hasattr(return_value, "response_token_ids"): # type: ignore
attributes["response_token_ids"] = list(return_value.response_token_ids[0]) # type: ignore
attributes = _original_handle_chat_attributes(args=args, kwargs=kwargs, return_value=return_value, **kws)
if return_value is not None and hasattr(return_value, "prompt_token_ids"):
attributes["prompt_token_ids"] = list(return_value.prompt_token_ids)
if return_value is not None and hasattr(return_value, "response_token_ids"):
attributes["response_token_ids"] = list(return_value.response_token_ids[0])
# For LiteLLM Proxy (v0.2) with vLLM return_token_ids, response_token_ids now lives in choices
if (
not attributes.get("response_token_ids")
and return_value is not None
and hasattr(return_value, "choices") # type: ignore
and return_value.choices # type: ignore
and isinstance(return_value.choices, list) # type: ignore
return_value is not None
and hasattr(return_value, "choices")
and return_value.choices
and isinstance(return_value.choices, list)
):
first_choice = return_value.choices[0] # type: ignore
if hasattr(first_choice, "token_ids"): # type: ignore
attributes["response_token_ids"] = list(first_choice.token_ids) # type: ignore
# newer versions of OpenAI client SDK
elif hasattr(first_choice, "provider_specific_fields") and "token_ids" in first_choice.provider_specific_fields: # type: ignore
attributes["response_token_ids"] = list(first_choice.provider_specific_fields["token_ids"]) # type: ignore
first_choice = return_value.choices[0]
# Token IDs from "choices[0].token_ids"
if "response_token_ids" not in attributes:
if hasattr(first_choice, "token_ids"):
attributes["response_token_ids"] = list(first_choice.token_ids)
# newer versions of OpenAI client SDK
elif (
hasattr(first_choice, "provider_specific_fields")
and "token_ids" in first_choice.provider_specific_fields
):
attributes["response_token_ids"] = list(first_choice.provider_specific_fields["token_ids"])
# log probability
# This is temporarily. We need a unified conventions for classifying and naming logprobs.
if hasattr(first_choice, "logprobs"):
if first_choice.logprobs.content:
attributes["logprobs.content"] = json.dumps(
[logprob.model_dump() for logprob in first_choice.logprobs.content]
)
if first_choice.logprobs.refusal:
attributes["logprobs.refusal"] = json.dumps(
[logprob.model_dump() for logprob in first_choice.logprobs.refusal]
)
# For LiteLLM, response is a openai._legacy_response.LegacyAPIResponse
if (
return_value is not None
and hasattr(return_value, "http_response") # type: ignore
and return_value.http_response is not None # type: ignore
and hasattr(return_value.http_response, "json") # type: ignore
and hasattr(return_value, "http_response")
and return_value.http_response is not None
and hasattr(return_value.http_response, "json")
):
json_data = return_value.http_response.json() # type: ignore
json_data = return_value.http_response.json()
if isinstance(json_data, dict):
if "prompt_token_ids" in json_data:
attributes["prompt_token_ids"] = list(json_data["prompt_token_ids"]) # type: ignore
attributes["prompt_token_ids"] = list(json_data["prompt_token_ids"])
if "response_token_ids" in json_data:
attributes["response_token_ids"] = list(json_data["response_token_ids"][0]) # type: ignore
attributes["response_token_ids"] = list(json_data["response_token_ids"][0])
return attributes
+13 -2
View File
@@ -528,6 +528,7 @@ class LLMProxy:
host: str | None = None,
litellm_config: Dict[str, Any] | None = None,
num_retries: int = 0,
_add_return_token_ids: bool = True,
):
self.store = store
self.host = host or _get_default_ipv4_address()
@@ -544,6 +545,8 @@ class LLMProxy:
self._uvicorn_server = None
self._ready_event = threading.Event()
self._add_return_token_ids = _add_return_token_ids
def get_store(self) -> Optional[LightningStore]:
"""Get the store used by the proxy.
@@ -637,7 +640,7 @@ class LLMProxy:
logger.info("Adding a new middleware to the FastAPI app.")
app.add_middleware(RolloutAttemptMiddleware)
if not initialize_llm_callbacks():
if not initialize_llm_callbacks(self._add_return_token_ids):
# If it's not the first time to initialize the callbacks, also
# reset LiteLLM's logging worker so its asyncio.Queue binds to the new loop.
_reset_litellm_logging_worker()
@@ -827,13 +830,17 @@ def set_active_llm_proxy(proxy: LLMProxy) -> None:
_global_llm_proxy = proxy
def initialize_llm_callbacks() -> bool:
def initialize_llm_callbacks(_add_return_token_ids: bool = True) -> bool:
"""Restore `litellm.callbacks` to a state that is just initialized by agent-lightning.
When litellm is restarted multiple times in the same process, more and more callbacks
will be appended to `litellm.callbacks`, which may exceed the MAX_CALLBACKS limit.
This function remembers the initial state of `litellm.callbacks` and always restore to that state.
Args:
_add_return_token_ids: Whether to add the return token ids callback. Internal use only.
Ideally the callback should automatically be enabled when the backend supports it.
Returns:
Whether the callbacks are initialized for the first time.
"""
@@ -845,6 +852,10 @@ def initialize_llm_callbacks() -> bool:
AddReturnTokenIds(),
LightningOpenTelemetry(),
]
if _add_return_token_ids
else [
LightningOpenTelemetry(),
]
)
_callbacks_before_litellm_start = [*litellm.callbacks] # type: ignore
return True
+8
View File
@@ -9,3 +9,11 @@ unsloth/models/
unsloth/unsloth_compiled_cache/
unsloth/unsloth_training_checkpoints/
apo/pomltrace/
tinker/logs/
tinker/crewai_*.html
!tinker/logs/*_20251026.jsonl
!tinker/logs/*_20251027.jsonl
!tinker/logs/*_20251028.jsonl
!tinker/logs/*_20251029.jsonl
!tinker/logs/*_20251030.jsonl
!tinker/logs/*_20251031.jsonl
+1
View File
@@ -0,0 +1 @@
# Copyright (c) Microsoft. All rights reserved.
+142
View File
@@ -0,0 +1,142 @@
# Copyright (c) Microsoft. All rights reserved.
from __future__ import annotations
import logging
from random import Random
from typing import Generic, Optional, Sequence, TypeVar
import chz
import pandas as pd
from tinker_cookbook.rl.types import (
Action,
Env,
EnvGroupBuilder,
Observation,
RLDataset,
RLDatasetBuilder,
StepResult,
StopCondition,
)
from agentlightning import Dataset
T_task = TypeVar("T_task")
logger = logging.getLogger(__name__)
class AGLDummyEnv(Env, Generic[T_task]):
def __init__(self, task: T_task) -> None:
self.task = task
async def initial_observation(self) -> tuple[Observation, StopCondition]:
raise NotImplementedError("This method is not implemented for AGLDummyEnv")
async def step(self, action: Action) -> StepResult:
raise NotImplementedError("This method is not implemented for AGLDummyEnv")
class AGLDummyEnvGroupBuilder(EnvGroupBuilder, Generic[T_task]):
def __init__(self, task: T_task, num_envs: int) -> None:
self.task = task
self.num_envs = num_envs
async def make_envs(self) -> Sequence[AGLDummyEnv[T_task]]:
return [AGLDummyEnv(self.task) for _ in range(self.num_envs)]
class AGLDataset(RLDataset, Generic[T_task]):
"""A dataset that produces batches of AGLDummyEnvGroupBuilder."""
def __init__(
self, dataset: Dataset[T_task], *, batch_size: int, shuffle: bool = True, group_size: int = 4, seed: int = 42
) -> None:
self.dataset = dataset
self.batch_size = batch_size
self.shuffle = shuffle
self.group_size = group_size
if shuffle:
self.indices = list(range(len(self.dataset)))
Random(seed).shuffle(self.indices)
else:
self.indices = list(range(len(self.dataset)))
def get_batch(self, index: int) -> Sequence[AGLDummyEnvGroupBuilder[T_task]]:
start_index = index * self.batch_size
end_index = min((index + 1) * self.batch_size, len(self.dataset))
return [
AGLDummyEnvGroupBuilder(self.dataset[self.indices[i]], self.group_size)
for i in range(start_index, end_index)
]
def __len__(self) -> int:
return len(self.dataset) // self.batch_size
@chz.chz
class AGLDatasetBuilder(RLDatasetBuilder, Generic[T_task]):
batch_size: int
train_file: Optional[str] = None
val_file: Optional[str] = None
train_dataset: Optional[Dataset[T_task]] = None
val_dataset: Optional[Dataset[T_task]] = None
train_val_split: float = 0.7
shuffle: bool = True
group_size: int = 4
seed: int = 42
def _read_file(self, file: str) -> Dataset[T_task]:
"""Read a file and return a dataset.
Supports parquet, csv and jsonl files.
"""
if file.endswith(".parquet"):
return pd.read_parquet(file).to_dict(orient="records") # type: ignore
elif file.endswith(".csv"):
return pd.read_csv(file).to_dict(orient="records") # type: ignore
elif file.endswith(".jsonl"):
return pd.read_json(file, lines=True).to_dict(orient="records") # type: ignore
else:
raise ValueError(f"Unsupported file type: {file}")
async def __call__(self) -> tuple[AGLDataset[T_task], AGLDataset[T_task]]:
if self.train_file is not None:
train_dataset = self._read_file(self.train_file)
elif self.train_dataset is not None:
train_dataset = self.train_dataset
else:
raise ValueError("No train dataset provided")
if self.val_file is not None:
val_dataset = self._read_file(self.val_file)
elif self.val_dataset is not None:
val_dataset = self.val_dataset
else:
indices = list(range(len(train_dataset)))
Random(self.seed).shuffle(indices)
val_indices = sorted(indices[int(len(indices) * self.train_val_split) :])
train_indices = sorted(indices[: int(len(indices) * self.train_val_split)])
logger.warning(
"No validation dataset provided, splitting train dataset into train (%d) and validation (%d)",
len(train_indices),
len(val_indices),
)
train_dataset = [train_dataset[i] for i in train_indices]
val_dataset = [train_dataset[i] for i in val_indices]
return (
AGLDataset(
train_dataset,
batch_size=self.batch_size,
shuffle=self.shuffle,
group_size=self.group_size,
seed=self.seed,
),
# For validation, always use batch_size=len(val_dataset) and group_size=1 to avoid dropping or repeating any samples
AGLDataset(val_dataset, batch_size=len(val_dataset), shuffle=False, group_size=1),
)
+204
View File
@@ -0,0 +1,204 @@
# Copyright (c) Microsoft. All rights reserved.
from __future__ import annotations
import logging
import uuid
from typing import Any, Callable, Dict, List, Literal, Type, TypeGuard, TypeVar, cast
import litellm
import tinker
from litellm.llms.custom_llm import CustomLLM
from litellm.types.utils import ChatCompletionMessageToolCall, ChatCompletionTokenLogprob
from litellm.types.utils import ChoiceLogprobs as LitellmChoiceLogprobs
from litellm.types.utils import Choices
from litellm.types.utils import Message as LitellmMessage
from litellm.types.utils import ModelResponse
from litellm.utils import custom_llm_setup
from pydantic import TypeAdapter
from tinker.types import ModelInput, SampleResponse, SamplingParams
from tinker_cookbook.renderers import Message as TinkerMessage
from tinker_cookbook.renderers import Renderer
from tinker_cookbook.renderers import ToolCall as TinkerToolCall
from transformers import PreTrainedTokenizer
from agentlightning.llm_proxy import ModelConfig
logger = logging.getLogger(__name__)
T = TypeVar("T")
def generate_id(prefix: str) -> str:
return prefix + str(uuid.uuid4())
class TinkerLLM(CustomLLM):
def __init__(
self,
*,
model_name: str,
renderer: Renderer,
tokenizer: PreTrainedTokenizer,
sampling_client: tinker.SamplingClient,
max_tokens: int = 2048,
temperature: float = 1.0,
top_k: int = -1,
top_p: float = 1.0,
seed: int = 42,
) -> None:
self.model_name = model_name
self.renderer = renderer
self.tokenizer = tokenizer
self.sampling_client = sampling_client
self.max_tokens = max_tokens
self.temperature = temperature
self.top_k = top_k
self.top_p = top_p
self.seed = seed
def update_sampling_client(self, sampling_client: tinker.SamplingClient) -> None:
self.sampling_client = sampling_client
def _validate_messages(self, messages: Any) -> TypeGuard[List[TinkerMessage]]:
TypeAdapter(List[TinkerMessage]).validate_python(messages)
# Exception will be raised if validation fails
return True
def _validate_role(self, role: str) -> TypeGuard[Literal["assistant", "user", "system", "tool", "function"]]:
if role not in ["assistant", "user", "system", "tool", "function"]:
raise ValueError(f"Invalid role: {role}")
return True
def _parse_tool_call(self, tool_call: TinkerToolCall) -> ChatCompletionMessageToolCall:
if set(tool_call.keys()) != {"name", "args"}:
logger.warning(f"Found unexpected tool call keys: {tool_call.keys()}")
return ChatCompletionMessageToolCall(
id=generate_id("tinker-tool-call-"),
function={
"name": tool_call["name"],
"arguments": tool_call["args"],
},
type="function",
)
def _get_optional_params(
self,
kwargs: Dict[str, Any],
keys: List[str],
expected_type: Type[T],
validate_fn: Callable[[T], bool],
default_value: T,
) -> T:
optional_params = cast(Dict[str, Any], kwargs.get("optional_params", {}))
if not isinstance(optional_params, dict): # type: ignore
raise ValueError(f"Invalid optional params type: {type(optional_params)}")
for key in keys:
if key in optional_params:
value = optional_params[key]
if not isinstance(value, expected_type):
raise ValueError(f"Invalid {key} type: {type(value)}")
if not validate_fn(value):
raise ValueError(f"Invalid {key}. Did not pass validation: {value}")
return value
return default_value
def _prepare_model_input(self, **kwargs: Any) -> ModelInput:
messages = kwargs.pop("messages", None)
if self._validate_messages(messages):
return self.renderer.build_generation_prompt(messages)
else:
assert False, "This should never happen"
def _parse_response(self, model_input: ModelInput, response: SampleResponse) -> ModelResponse:
choices: List[Choices] = []
for seq in response.sequences:
if seq.logprobs is not None:
token_strings: List[str] = self.tokenizer.batch_decode([token] for token in seq.tokens) # type: ignore
# FIXME: This might not be accurate for some corner cases.
# But it's not actually used in most cases.
bytes_list: List[List[int]] = [list(token.encode("utf-8")) for token in token_strings]
logprobs = LitellmChoiceLogprobs(
content=[
ChatCompletionTokenLogprob(
token=token,
bytes=bytes,
logprob=logprob,
top_logprobs=[],
)
for token, bytes, logprob in zip(token_strings, bytes_list, seq.logprobs)
]
)
else:
logprobs = None
parsed_response, parse_success = self.renderer.parse_response(seq.tokens)
if parse_success:
role = parsed_response["role"]
if not self._validate_role(role):
assert False, "This should never happen"
content = parsed_response["content"]
tool_calls = parsed_response.get("tool_calls", None)
if tool_calls:
tool_calls = [self._parse_tool_call(tool_call) for tool_call in tool_calls]
choices.append(
Choices(
message=LitellmMessage(role=role, content=content, tool_calls=tool_calls),
finish_reason=seq.stop_reason,
logprobs=logprobs,
token_ids=seq.tokens,
)
)
else:
logger.warning(f"Failed to parse response: {parsed_response}")
# Go with the default path
choices.append(
Choices(
message=LitellmMessage(role="assistant", content=parsed_response["content"]),
finish_reason=seq.stop_reason,
logprobs=logprobs,
token_ids=seq.tokens,
)
)
return ModelResponse(
id=generate_id("tinker-sampling-"), choices=choices, prompt_token_ids=model_input.to_ints()
)
async def acompletion(self, **kwargs: Any) -> ModelResponse: # type: ignore
max_tokens = self._get_optional_params(
kwargs, ["max_completion_tokens", "max_tokens"], int, lambda x: x >= 0, self.max_tokens
)
temperature = self._get_optional_params(
kwargs, ["temperature"], float, lambda x: 0.0 <= x <= 2.0, self.temperature
)
top_k = self._get_optional_params(kwargs, ["top_k"], int, lambda x: True, self.top_k)
top_p = self._get_optional_params(kwargs, ["top_p"], float, lambda x: 0.0 <= x <= 1.0, self.top_p)
seed = self._get_optional_params(kwargs, ["seed"], int, lambda _: True, self.seed)
model_input = self._prepare_model_input(**kwargs)
params = SamplingParams(
max_tokens=max_tokens,
temperature=temperature,
top_k=top_k,
top_p=top_p,
seed=seed,
stop=self.renderer.get_stop_sequences(),
)
result = await self.sampling_client.sample_async(prompt=model_input, sampling_params=params, num_samples=1)
final_response = self._parse_response(model_input, result)
return final_response
def as_model_list(self) -> List[ModelConfig]:
return [
{
"model_name": self.model_name,
"litellm_params": {
"model": f"agl-tinker/{self.model_name}",
},
}
]
def rewrite_litellm_custom_providers(self) -> TinkerLLM:
"""Update the custom provider map within LiteLLM."""
litellm.custom_provider_map = [{"provider": "agl-tinker", "custom_handler": self}]
custom_llm_setup()
return self
+263
View File
@@ -0,0 +1,263 @@
# Copyright (c) Microsoft. All rights reserved.
from __future__ import annotations
import asyncio
import itertools
import logging
import random
from typing import Any, Generic, List, Sequence, TypeVar, cast
from tinker.types import ModelInput
from tinker_cookbook.completers import TokensWithLogprobs
from tinker_cookbook.rl.data_processing import remove_constant_reward_groups
from tinker_cookbook.rl.metric_util import compute_trajectory_metrics
from tinker_cookbook.rl.types import (
Trajectory,
TrajectoryGroup,
Transition,
)
from tinker_cookbook.utils.trace import scope
from agentlightning import LightningStore, Span, TraceToTripletBase
from agentlightning import Triplet as AGLTriplet
from agentlightning.types.core import RolloutMode
from .env import AGLDataset, AGLDummyEnv, AGLDummyEnvGroupBuilder
logger = logging.getLogger(__name__)
T_task = TypeVar("T_task")
WAIT_FOR_ROLLOUTS_INTERVAL = 5.0
def reconstruct_transitions(
spans: List[Span], adapter: TraceToTripletBase, rollout_id: str, identical_credit_assignment: bool = True
) -> Trajectory:
"""Reconstruct the transitions from the spans.
Args:
spans: The spans to reconstruct the transitions from.
adapter: The adapter to use to reconstruct the transitions.
rollout_id: The ID of the rollout.
identical_credit_assignment: Whether to assign the reward from later triplets to earlier triplets.
See [Agent-lightning's paper](https://arxiv.org/abs/2508.03680) for details.
Returns:
Tinker trajectory.
"""
triplets: List[AGLTriplet] = adapter.adapt(spans)
# We need to reconstruct the input and output tokens (+logprobs) from the triplets
transitions: list[Transition] = []
# Initialize to a non-zero reward
last_reward: float = 0.0
for i_triplet, triplet in reversed(list(enumerate(triplets))):
if "token_ids" not in triplet.prompt or "token_ids" not in triplet.response:
logger.error(f"[Rollout {rollout_id}] Triplet has no token_ids: {triplet}")
continue
# Getting the input and output tokens from the triplet
input_tokens = ModelInput.from_ints(triplet.prompt["token_ids"])
output_tokens = triplet.response["token_ids"]
# Logprobs sometimes are available too.
if "logprobs" not in triplet.response:
logger.warning(f"[Rollout {rollout_id}] Triplet has no logprobs: {triplet}")
logprobs = None
else:
logprobs = [prob["logprob"] for prob in triplet.response["logprobs"]]
if len(logprobs) != len(output_tokens):
logger.warning(
f"[Rollout {rollout_id}] Triplet has {len(logprobs)} logprobs "
f"but {len(output_tokens)} output tokens: {triplet}"
)
logprobs = None
output_tokens_with_logprobs = TokensWithLogprobs(tokens=output_tokens, maybe_logprobs=logprobs)
if triplet.reward is None:
if identical_credit_assignment:
# takes from the next non-null reward
this_reward = last_reward
else:
# Assume it to be zero
this_reward = 0.0
else:
this_reward = triplet.reward
transitions.append(
Transition(
ob=input_tokens,
ac=output_tokens_with_logprobs,
reward=this_reward,
episode_done=i_triplet + 1 == len(triplets),
)
)
if identical_credit_assignment and triplet.reward is not None:
last_reward = triplet.reward
# The final observation is empty input tokens
return Trajectory(transitions=transitions[::-1], final_ob=ModelInput.from_ints([]))
async def agl_single_rollout(
llm_resources_id: str,
env: AGLDummyEnv[Any],
*,
store: LightningStore,
adapter: TraceToTripletBase,
mode: RolloutMode,
) -> Trajectory:
"""Under Agent-lightning, there is no such thing as a "env".
The "env" here is a simple wrapper around a task.
"""
rollout = await store.enqueue_rollout(env.task, mode=mode, resources_id=llm_resources_id)
while True:
completed_rollout = await store.get_rollout_by_id(rollout.rollout_id)
if completed_rollout is not None and completed_rollout.status in ["succeeded", "failed", "cancelled"]:
break
# Wait until the rollout is completed
# This should be a slightly large number to avoid busy-waiting.
# Add a small jitter to avoid synchronized waiting.
jitter = random.uniform(0.9, 1.1)
await asyncio.sleep(WAIT_FOR_ROLLOUTS_INTERVAL * jitter)
if completed_rollout.status != "succeeded":
logger.error(f"[Rollout {rollout.rollout_id}] Failed with status {completed_rollout.status}")
else:
logger.debug(
f"[Rollout {rollout.rollout_id}] Rollout succeeded under "
f"{cast(float, completed_rollout.end_time) - completed_rollout.start_time:.2f} seconds"
)
spans = await store.query_spans(rollout.rollout_id, "latest")
if not spans:
logger.error(f"[Rollout {rollout.rollout_id}] No spans found. Return an empty trajectory.")
return Trajectory(transitions=[], final_ob=ModelInput.from_ints([]))
triplets = adapter.adapt(spans)
logger.debug(
f"[Rollout {rollout.rollout_id}] Adapted {len(triplets)} triplets from {len(spans)} spans. "
f"Rewards are: {[t.reward for t in triplets]}"
)
# Converting triplets to Tinker transitions
reconstructed = reconstruct_transitions(spans, adapter, rollout.rollout_id)
logger.info(
f"[Rollout {rollout.rollout_id}] Reconstructed {len(reconstructed.transitions)} transitions from {len(spans)} spans. "
f"Rewards are: {[r.reward for r in reconstructed.transitions]}"
)
return reconstructed
@scope
async def do_group_of_group_rollouts(
env_group_builders_P: Sequence[AGLDummyEnvGroupBuilder[Any]],
llm_resources_id: str,
i_batch: int,
*,
store: LightningStore,
adapter: TraceToTripletBase,
mode: RolloutMode,
do_remove_constant_reward_groups: bool = False,
concurrency: int = 16,
) -> List[TrajectoryGroup]:
"""
Run rollouts for multiple env groups with a global concurrency limit that controls
how many agl_single_rollout tasks may run at once (across *all* groups).
Returns a list of TrajectoryGroup objects (one per env_group_builder), optionally
filtered to remove groups whose trajectories all have the same reward.
"""
# 1) Build all envs upfront (does not consume concurrency).
groups_envs: List[Sequence[AGLDummyEnv[Any]]] = []
for i, builder in enumerate(env_group_builders_P):
envs = await builder.make_envs()
if not envs:
logger.warning(
f"[Batch {i_batch} {mode}] [Group {i}] Builder produced no envs; "
"returning empty group after compute step."
)
groups_envs.append(envs)
# 2) Create a global semaphore to cap concurrent single rollouts.
sem = asyncio.Semaphore(concurrency)
# 3) For each env in each group, prepare a task that respects the semaphore.
async def run_single_with_limit(env: AGLDummyEnv[Any]) -> Trajectory:
async with sem:
return await agl_single_rollout(
llm_resources_id,
env,
store=store,
adapter=adapter,
mode=mode,
)
# We keep tasks organized per group so we can compute group rewards afterward.
per_group_tasks: List[List[asyncio.Task[Trajectory]]] = []
for group_idx, envs in enumerate(groups_envs):
tasks = [asyncio.create_task(run_single_with_limit(env)) for env in envs]
per_group_tasks.append(tasks)
# 4) Await all groups, but still allow interleaving via the shared semaphore.
trajectory_groups: List[TrajectoryGroup] = []
for group_idx, (builder, tasks) in enumerate(zip(env_group_builders_P, per_group_tasks)):
trajectories_G = await asyncio.gather(*tasks)
# Compute rewards/metrics for this group.
rewards_and_metrics_G = await builder.compute_group_rewards(trajectories_G)
rewards_G, metrics_G = zip(*rewards_and_metrics_G, strict=True)
tg = TrajectoryGroup(trajectories_G, list(rewards_G), list(metrics_G))
trajectory_groups.append(tg)
logger.info(
f"[Batch {i_batch} {mode}] [Group {group_idx}] Completed {len(trajectories_G)} trajectories; "
f"rewards: {[[trans.reward for trans in traj.transitions] for traj in trajectories_G]}"
)
# 5) Optional filtering of constant-reward groups (same behavior as before).
if do_remove_constant_reward_groups:
before = len(trajectory_groups)
trajectory_groups = remove_constant_reward_groups(trajectory_groups)
after = len(trajectory_groups)
logger.info(
f"[Batch {i_batch} {mode}] [Filter] Removed {before - after} constant-reward group(s); {after} remaining."
)
return trajectory_groups
def dataset_to_env_group_builders(dataset: AGLDataset[T_task]) -> list[AGLDummyEnvGroupBuilder[T_task]]:
"""
Get the whole dataset as a list of env group builders.
"""
return list(itertools.chain(*[dataset.get_batch(i) for i in range(len(dataset))]))
class AGLTestSetEvaluator(Generic[T_task]):
"""Run an evaluation on a test set."""
def __init__(self, dataset: AGLDataset[T_task], name: str | None = None):
self.env_group_builders_P = dataset_to_env_group_builders(dataset)
self.name = name
async def __call__(
self, llm_resources_id: str, store: LightningStore, adapter: TraceToTripletBase, mode: RolloutMode, i_batch: int
) -> dict[str, float]:
trajectory_groups_P = await do_group_of_group_rollouts(
self.env_group_builders_P,
llm_resources_id,
i_batch=i_batch,
store=store,
adapter=adapter,
mode=mode,
do_remove_constant_reward_groups=False,
)
taglist_P = [builder.logging_tags() for builder in self.env_group_builders_P]
metrics = compute_trajectory_metrics(trajectory_groups_P, taglist_P)
if self.name is not None:
metrics = {f"{self.name}/{k}": v for k, v in metrics.items()}
return metrics
+402
View File
@@ -0,0 +1,402 @@
# Copyright (c) Microsoft. All rights reserved.
"""RL training main loop with Tinker API.
This script is based on Tinker Cookbook's [`rl_train.py` script](https://github.com/thinking-machines-lab/tinker-cookbook/blob/9b2af83cb62b9c4e8325a0efab71429e5aedf289/tinker_cookbook/rl/train.py),
with modifications on how the rollout is collected.
Environments are not used at all because Agent-lightning handles "environment" has part of user agent's logic.
"""
from __future__ import annotations
import asyncio
import logging
import os
import time
from typing import Any, Literal, Sequence
import chz
import tinker
from tinker_cookbook import checkpoint_utils
from tinker_cookbook.renderers import get_renderer
from tinker_cookbook.rl.data_processing import (
assemble_training_data,
compute_advantages,
)
from tinker_cookbook.rl.metric_util import compute_trajectory_metrics
from tinker_cookbook.rl.metrics import incorporate_kl_penalty
from tinker_cookbook.rl.train import (
compute_full_batch_metrics_and_get_sampling_client,
print_group,
save_checkpoint_and_get_sampling_client,
train_step,
)
from tinker_cookbook.rl.types import (
EnvGroupBuilder,
TrajectoryGroup,
)
from tinker_cookbook.tokenizer_utils import Tokenizer
from tinker_cookbook.utils import ml_log
from tinker_cookbook.utils.misc_utils import timed
from tinker_cookbook.utils.trace import get_scope_context, scope, trace_init
from agentlightning import LightningStore, LightningStoreClient, LLMProxy, TracerTraceToTriplet, TraceToTripletBase
from .env import AGLDataset, AGLDatasetBuilder
from .llm import TinkerLLM
from .rollout import AGLTestSetEvaluator, do_group_of_group_rollouts
logger = logging.getLogger(__name__)
@chz.chz
class Config:
learning_rate: float
dataset_builder: AGLDatasetBuilder[Any] # also determines batch size
model_name: str
renderer_name: str
compute_post_kl: bool = False
lora_rank: int = 32
llm_proxy_port: int = 12306
kl_penalty_coef: float = 0.0
kl_discount_factor: float = 0.0
# Sampling parameters
max_tokens: int = 2048
temperature: float = 1.0
top_k: int = -1
top_p: float = 1.0
# Agent-lightning parameters (only used in when running standalone)
store_address: str = "http://localhost:4747"
adapter_agent_match: str | None = None
# Concurrency parameters (mainly for controlling max queue length)
concurrency: int = 16
# Loss function to use for training: "importance_sampling" or "ppo"
loss_fn: Literal["importance_sampling", "ppo"] = "importance_sampling"
# Number of optimizer steps per training iteration.
# Useful for very large batch sizes.
num_substeps: int = 1
wandb_project: str | None = None
wandb_name: str | None = None
log_path: str = chz.field(munger=lambda _, s: os.path.expanduser(s))
base_url: str | None = None
enable_trace: bool = False
remove_constant_reward_groups: bool = False
eval_every: int = 20
save_every: int = 20
load_checkpoint_path: str | None = None
@scope
async def prepare_minibatch(
env_group_builders_P: Sequence[EnvGroupBuilder],
trajectory_groups_P: list[TrajectoryGroup],
tokenizer: Tokenizer,
service_client: tinker.ServiceClient,
model_name: str,
kl_penalty_coef: float,
kl_discount_factor: float,
) -> tuple[list[tinker.Datum], dict[str, Any]]:
"""Converts the trajectories into a minibatch, and provides metrics about the minibatch"""
# Compute trajectory metrics
metrics: dict[str, Any] = {}
taglist_P = [env_group_builder.logging_tags() for env_group_builder in env_group_builders_P]
metrics.update(compute_trajectory_metrics(trajectory_groups_P, taglist_P))
# Print one trajectory
for traj_group in trajectory_groups_P[:2]:
print_group(traj_group, tokenizer)
# Assemble training data
with timed("assemble_training_data", metrics):
advantages_P = compute_advantages(trajectory_groups_P)
data_D, _metadata_D = assemble_training_data(trajectory_groups_P, advantages_P)
# Incorporate KL penalty if configured
if kl_penalty_coef > 0:
with timed("kl_vs_base", metrics):
kl_penalty_metrics = await incorporate_kl_penalty(
data_D,
service_client.create_sampling_client(base_model=model_name),
# ^^^ TODO: replace with the model we load, if relevant
kl_penalty_coef,
kl_discount_factor,
)
metrics.update(kl_penalty_metrics)
return data_D, metrics
@scope
async def do_train_step_and_get_sampling_client(
cfg: Config,
i_batch: int,
training_client: tinker.TrainingClient,
service_client: tinker.ServiceClient,
tokenizer: Tokenizer,
env_group_builders_P: Sequence[EnvGroupBuilder],
trajectory_groups_P: list[TrajectoryGroup],
) -> tuple[tinker.SamplingClient, dict[str, Any]]:
context = get_scope_context()
context.attributes["step"] = i_batch
metrics: dict[str, Any] = {}
data_D, prepare_minibatch_metrics = await prepare_minibatch(
env_group_builders_P,
trajectory_groups_P,
tokenizer,
service_client,
model_name=cfg.model_name,
kl_penalty_coef=cfg.kl_penalty_coef,
kl_discount_factor=cfg.kl_discount_factor,
)
metrics.update(prepare_minibatch_metrics)
with timed("train", metrics):
training_logprobs_D = await train_step(
data_D,
training_client,
cfg.learning_rate,
cfg.num_substeps,
cfg.loss_fn,
)
sampling_client, full_batch_metrics = await compute_full_batch_metrics_and_get_sampling_client(
training_client,
# NOTE: saving the checkpoint as the i + 1 step
i_batch + 1,
data_D,
training_logprobs_D,
cfg.log_path,
cfg.save_every,
cfg.compute_post_kl,
)
metrics.update(full_batch_metrics)
return sampling_client, metrics
@scope
async def do_sync_training(
*,
start_batch: int,
end_batch: int,
num_batches: int,
cfg: Config,
training_client: tinker.TrainingClient,
service_client: tinker.ServiceClient,
evaluators: list[AGLTestSetEvaluator[Any]],
dataset: AGLDataset[Any],
ml_logger: ml_log.Logger,
tokenizer: Tokenizer,
store: LightningStore,
adapter: TraceToTripletBase,
llm_proxy: LLMProxy,
):
"""Implements fully synchronous on-policy training"""
# Initial sampling client
logger.info(f"Creating sampling client with training client {training_client} and start batch {start_batch}")
sampling_client, _ = await save_checkpoint_and_get_sampling_client(
training_client, start_batch, cfg.log_path, cfg.save_every
)
logger.info(f"Creating renderer with name {cfg.renderer_name}")
renderer = get_renderer(cfg.renderer_name, tokenizer)
tinker_llm = TinkerLLM(
model_name=cfg.model_name,
sampling_client=sampling_client,
renderer=renderer,
tokenizer=tokenizer,
max_tokens=cfg.max_tokens,
temperature=cfg.temperature,
top_k=cfg.top_k,
top_p=cfg.top_p,
).rewrite_litellm_custom_providers()
logger.info(f"Starting training from batch {start_batch} to {end_batch}")
for i_batch in range(start_batch, end_batch):
metrics = {
"progress/batch": i_batch,
"optim/lr": cfg.learning_rate,
"progress/done_frac": (i_batch + 1) / num_batches,
}
logger.info(f"[Batch {i_batch}] Starting training step. Learning rate: {cfg.learning_rate}")
t_start = time.time()
llm_proxy.update_model_list(tinker_llm.as_model_list())
llm_proxy.restart()
logger.info(f"[Batch {i_batch}] LiteLLM model list: {llm_proxy.model_list}")
llm_resource = llm_proxy.as_resource()
resources_update = await store.add_resources({"main_llm": llm_resource})
# Run evaluations
if cfg.eval_every > 0 and i_batch % cfg.eval_every == 0:
logger.info(f"[Batch {i_batch}] Running evaluations")
with timed("run_evals", metrics):
for evaluator in evaluators:
eval_metrics = await evaluator(resources_update.resources_id, store, adapter, "val", i_batch)
metrics.update({f"test/{k}": v for k, v in eval_metrics.items()})
# Get batch and sample trajectories
logger.info(f"[Batch {i_batch}] Getting batch data from dataset")
env_group_builders_P = dataset.get_batch(i_batch)
with timed("sample", metrics):
logger.info(f"[Batch {i_batch}] Sampling trajectories...")
trajectory_groups_P = await do_group_of_group_rollouts(
env_group_builders_P,
resources_update.resources_id,
i_batch,
store=store,
adapter=adapter,
mode="train",
do_remove_constant_reward_groups=cfg.remove_constant_reward_groups,
concurrency=cfg.concurrency,
)
logger.info(f"[Batch {i_batch}] Trajectories sampled: {len(trajectory_groups_P)}")
# Train step
logger.info(f"[Batch {i_batch}] Starting training step...")
sampling_client, train_step_metrics = await do_train_step_and_get_sampling_client(
cfg,
i_batch,
training_client,
service_client,
tokenizer,
env_group_builders_P,
trajectory_groups_P,
)
# Point Tinker LLM to a new model
tinker_llm.update_sampling_client(sampling_client)
# Log metrics
metrics.update(train_step_metrics)
metrics["time/total"] = time.time() - t_start
ml_logger.log_metrics(metrics, step=i_batch)
logger.info(f"[Batch {i_batch}] Sampling and training completed")
llm_proxy.stop()
@scope
async def main_training_loop(
cfg: Config,
store: LightningStore,
adapter: TraceToTripletBase,
llm_proxy: LLMProxy,
):
"""Main training loop for MDP RL."""
ml_logger = ml_log.setup_logging(
log_dir=cfg.log_path,
wandb_project=cfg.wandb_project,
config=cfg,
wandb_name=cfg.wandb_name,
)
if cfg.enable_trace:
# Get and rename the current (main) task
current_task = asyncio.current_task()
if current_task is not None:
current_task.set_name("main")
trace_events_path = os.path.join(cfg.log_path, "trace_events.jsonl")
logger.info(f"Tracing is enabled. Trace events will be saved to {trace_events_path}")
logger.info(
f"Run `python tinker_cookbook/utils/trace.py {trace_events_path} trace.json` and visualize in chrome://tracing or https://ui.perfetto.dev/"
)
trace_init(output_file=trace_events_path)
logging.getLogger("httpx").setLevel(logging.WARNING)
logging.getLogger("pylatexenc").setLevel(logging.WARNING)
logging.getLogger("LiteLLM").setLevel(logging.WARNING)
logging.getLogger("LiteLLM Router").setLevel(logging.WARNING)
resume_info = checkpoint_utils.get_last_checkpoint(cfg.log_path)
if resume_info:
start_batch = resume_info["batch"]
else:
start_batch = 0
logger.info(f"Creating service client with base URL {cfg.base_url}")
service_client = tinker.ServiceClient(base_url=cfg.base_url)
logger.info(f"Creating training client with model name {cfg.model_name} and rank {cfg.lora_rank}")
training_client = await service_client.create_lora_training_client_async(cfg.model_name, rank=cfg.lora_rank)
load_state_path: str | None = resume_info["state_path"] if resume_info else cfg.load_checkpoint_path
if load_state_path:
future = await training_client.load_state_async(load_state_path)
_ = await future.result_async()
logger.info(f"Loaded state from {load_state_path}")
else:
logger.info("No checkpoint found, starting from scratch")
# Get tokenizer from training client
tokenizer = training_client.get_tokenizer()
logger.info(f"Tokenizer created: {tokenizer}")
# Create dataset from thunk
dataset, test_dataset = await cfg.dataset_builder()
evaluators = [AGLTestSetEvaluator(test_dataset)]
num_batches = len(dataset)
logger.info(f"Will train on {num_batches} batches and test on {len(test_dataset)} batches")
# Training loop
await do_sync_training(
start_batch=start_batch,
end_batch=num_batches,
num_batches=num_batches,
cfg=cfg,
training_client=training_client,
service_client=service_client,
evaluators=evaluators,
dataset=dataset,
ml_logger=ml_logger,
tokenizer=tokenizer,
store=store,
adapter=adapter,
llm_proxy=llm_proxy,
)
# Save final checkpoint
if start_batch < num_batches:
logger.info(f"Saving final checkpoint to {cfg.log_path}/final.pt")
_ = await checkpoint_utils.save_checkpoint_async(
training_client=training_client,
name="final",
log_path=cfg.log_path,
kind="both",
loop_state={"batch": num_batches},
)
else:
logger.info("Training was already complete; nothing to do")
# Cleanup
ml_logger.close()
logger.info("Training completed successfully")
@scope
async def main(config: Config) -> None:
store = LightningStoreClient(config.store_address)
adapter = TracerTraceToTriplet(agent_match=config.adapter_agent_match)
llm_proxy = LLMProxy(
port=config.llm_proxy_port,
model_list=[],
store=store,
)
await main_training_loop(config, store, adapter, llm_proxy)
if __name__ == "__main__":
chz.nested_entrypoint(main)
+11
View File
@@ -0,0 +1,11 @@
model_list:
- model_name: "test-model"
litellm_params:
model: "openai/text-embedding-ada-002"
- model_name: "my-custom-model"
litellm_params:
model: "my-custom-llm/my-model"
litellm_settings:
custom_provider_map:
- {"provider": "my-custom-llm", "custom_handler": custom_llm.my_custom_llm}
+41
View File
@@ -0,0 +1,41 @@
import litellm
from litellm import CustomLLM, completion, get_llm_provider
from litellm.utils import custom_llm_setup
class MyCustomLLM(CustomLLM):
def completion(self, *args, **kwargs) -> litellm.ModelResponse:
return litellm.completion(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": "Hello world"}],
mock_response="Hi!",
) # type: ignore
async def acompletion(self, *args, **kwargs) -> litellm.ModelResponse:
return litellm.completion(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": "Hello world"}],
mock_response="Hi!",
) # type: ignore
my_custom_llm = MyCustomLLM()
litellm.custom_provider_map = [{"provider": "my-custom-llm", "custom_handler": my_custom_llm}]
custom_llm_setup()
from agentlightning import InMemoryLightningStore
from agentlightning.llm_proxy import LLMProxy
store = InMemoryLightningStore()
llm_proxy = LLMProxy(
port=4000,
store=store,
model_list=[{"model_name": "my-custom-model", "litellm_params": {"model": "my-custom-llm/my-model"}}],
)
llm_proxy.start()
import time
time.sleep(1000)
+112
View File
@@ -0,0 +1,112 @@
"""To train a model to admit whoever I call it.
For example, if I say "Hello, 42", the model should say "I'm 42", not "I'm not 42."
"""
import argparse
import asyncio
import multiprocessing
from agl_tinker.env import AGLDatasetBuilder
from agl_tinker.train import Config
from agl_tinker.train import main as entrypoint
from openai import OpenAI
from rich.console import Console
import agentlightning as agl
console = Console()
@agl.rollout
def hello(task: str, llm: agl.LLM, rollout: agl.Rollout) -> None:
openai_client = OpenAI(base_url=llm.endpoint, api_key="dummy")
response = openai_client.chat.completions.create(
model=llm.model,
messages=[{"role": "user", "content": f"Let's play a game. Say you are {task}."}],
)
response_content = response.choices[0].message.content
content_lower = response_content.lower() if response_content else ""
if ("i am " + task) in content_lower or ("i'm " + task) in content_lower:
rew = 1.0
elif ("not " + task) in content_lower:
rew = -1.0
elif ("you're" + task) in content_lower or ("you are" + task) in content_lower:
rew = 0.1
else:
rew = 0.0
console.print(
f"[bold green]Runners ({rollout.rollout_id}, {rollout.mode}):[/bold green] "
f"{task} -> {response_content} -> Reward: {rew}"
)
agl.emit_reward(rew)
def run_algo():
config = Config(
learning_rate=1e-5,
dataset_builder=AGLDatasetBuilder(
train_dataset=[str(i) for i in range(1000)],
val_dataset=[str(i) for i in range(1000, 1024)],
batch_size=32,
shuffle=True,
group_size=4,
seed=42,
),
renderer_name="qwen3",
model_name="Qwen/Qwen3-30B-A3B-Instruct-2507",
log_path="logs/hello",
max_tokens=32,
store_address="http://localhost:4747",
)
asyncio.run(entrypoint(config))
def run_rollout(*, worker_id: int) -> None:
"""Rollout runner, single-process."""
tracer = agl.AgentOpsTracer()
runner = agl.LitAgentRunner[str](tracer=tracer)
console.print(f"[bold green]Runners:[/bold green] Rollout runner {worker_id} started.")
store = agl.LightningStoreClient("http://localhost:4747")
with runner.run_context(agent=hello, store=store, worker_id=worker_id):
asyncio.run(runner.iter())
def spawn_runners(*, n_runners: int) -> None:
"""Spawn a set of rollout runners.
Args:
store: The LightningStore instance.
n_runners: The number of runners to spawn.
"""
runners = [
multiprocessing.Process(target=run_rollout, kwargs={"worker_id": worker_id}) for worker_id in range(n_runners)
]
for runner in runners:
runner.start()
for runner in runners:
runner.join()
def main():
parser = argparse.ArgumentParser(description="Train a hello echo agent with Agent-lightning + Tinker.")
parser.add_argument("mode", type=str, choices=["algo", "runner"])
args = parser.parse_args()
agl.configure_logger()
if args.mode == "algo":
run_algo()
elif args.mode == "runner":
spawn_runners(n_runners=8)
if __name__ == "__main__":
main()
@@ -0,0 +1,200 @@
{"index": 179, "id": "640d510f-8ff7-4d6d-bbb7-29f2c07a1047", "answer": "Ghost", "category": "creature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a fictional entity?", "response": "yes"}, {"question": "Is it a character from a book, movie, or television?", "response": "yes"}, {"question": "Is the character animated?", "response": "yes"}, {"question": "Is the character from a movie?", "response": "no"}, {"question": "Is the character from a television show?", "response": "yes"}, {"question": "Is the character primarily aimed at children?", "response": "n/a"}, {"question": "Is the character non-human?", "response": "yes"}, {"question": "Is the character an animal?", "response": "no"}, {"question": "Is the character a robot or machine?", "response": "no"}, {"question": "Is the character from a Japanese anime television show?", "response": "no"}, {"question": "Is the character from a science fiction television show?", "response": "n/a"}, {"question": "Is the character from a live-action/animated hybrid television show?", "response": "n/a"}, {"question": "Is the character from an American television show?", "response": "yes"}, {"question": "Is the character from a comedy television show?", "response": "n/a"}, {"question": "Is it SpongeBob SquarePants?", "response": "no"}]}
{"index": 24, "id": "1d4171ff-760b-4c55-8784-e342b34746cf", "answer": "Sydney Opera House", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something commonly found indoors?", "response": "no"}, {"question": "Is it something naturally occurring?", "response": "no"}, {"question": "Is it something primarily used for entertainment?", "response": "yes"}, {"question": "Is it an object commonly associated with sports?", "response": "no"}, {"question": "Is it an object commonly associated with music?", "response": "yes"}, {"question": "Is it played by blowing air into it?", "response": "n/a"}, {"question": "Is it a string instrument?", "response": "no"}, {"question": "Is it a percussion instrument?", "response": "no"}, {"question": "Is it an electronic instrument?", "response": "no"}, {"question": "Is it a brass instrument?", "response": "no"}, {"question": "Is it a woodwind instrument?", "response": "no"}, {"question": "Is it powered by electricity or batteries?", "response": "yes"}, {"question": "Is it a keyboard instrument?", "response": "no"}, {"question": "Is it a synthesizer?", "response": "no"}, {"question": "Is it a microphone?", "response": "no"}, {"question": "Is it a speaker?", "response": "no"}, {"question": "Is it a drum machine?", "response": "no"}, {"question": "Is it a guitar amplifier?", "response": "no"}, {"question": "Is it an electric violin?", "response": "no"}]}
{"index": 135, "id": "cbb67117-d37b-44d0-88c9-8380f29108fe", "answer": "Archery", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used in sports or recreational activities?", "response": "yes"}, {"question": "Is it primarily used with water activities?", "response": "no"}, {"question": "Is it primarily used in a team sport?", "response": "no"}, {"question": "Is it primarily used in individual sports rather than group activities?", "response": "yes"}, {"question": "Is it primarily used in a sport that requires special equipment or gear for safety?", "response": "yes"}, {"question": "Is it primarily used in sports involving aiming or striking a target?", "response": "yes"}, {"question": "Is it primarily used in archery?", "response": "n/a"}, {"question": "Is it primarily used in shooting sports such as firearms or airguns?", "response": "no"}, {"question": "Is it primarily used in golf?", "response": "no"}, {"question": "Is it primarily used in track and field events?", "response": "no"}, {"question": "Is it primarily used in racquet or paddle sports?", "response": "no"}, {"question": "Is it primarily used in winter sports?", "response": "no"}, {"question": "Is it primarily used in martial arts or combat sports?", "response": "no"}, {"question": "Is it primarily used in throwing sports such as javelin or discus?", "response": "no"}, {"question": "Is it a dart?", "response": "no"}]}
{"index": 28, "id": "90f5d315-7fae-4b87-9a5e-457521de756b", "answer": "Eiffel Tower", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it a physical object you can touch?", "response": "yes"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it used for sports or recreation?", "response": "yes"}, {"question": "Is it used in a water-related activity?", "response": "no"}, {"question": "Is it used in a competitive team sport?", "response": "no"}, {"question": "Is it used in an individual sport where scoring points is common?", "response": "n/a"}, {"question": "Is it used in golf?", "response": "no"}, {"question": "Is it used in winter sports?", "response": "no"}, {"question": "Is it a type of ball?", "response": "no"}, {"question": "Is it used in camping or hiking activities?", "response": "no"}, {"question": "Is it used in racquet sports?", "response": "no"}, {"question": "Is it used in climbing or mountaineering activities?", "response": "yes"}, {"question": "Is it used for protection or safety while climbing?", "response": "no"}, {"question": "Is it used to help ascend rock faces?", "response": "no"}, {"question": "Is it used as an anchor or to secure ropes while climbing?", "response": "no"}, {"question": "Is it chalk?", "response": "no"}]}
{"index": 14, "id": "6f9dca9c-ec19-4194-82e9-aaeebd2fbf2f", "answer": "Mother Teresa", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it commonly used by humans?", "response": "n/a"}, {"question": "Is it a physical object?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it related to fiction?", "response": "no"}, {"question": "Is it an instrument?", "response": "no"}, {"question": "Is it a type of food?", "response": "no"}, {"question": "Is it a type of sport?", "response": "no"}, {"question": "Is it something found in nature?", "response": "yes"}, {"question": "Is it a non-living thing produced by a natural process (e.g., rock, mineral, water)?", "response": "no"}, {"question": "Is it classified as a creature (e.g., animal, insect, mythical being)?", "response": "n/a"}, {"question": "Is it weather-related or a phenomenon involving the atmosphere?", "response": "no"}, {"question": "Is it a geological feature (e.g., mountain, valley, cave)?", "response": "no"}, {"question": "Is it a body of water?", "response": "no"}, {"question": "Is it part of a plant?", "response": "n/a"}, {"question": "Is it a celestial object?", "response": "no"}, {"question": "Is it a fossil?", "response": "no"}, {"question": "Is it a natural phenomenon other than weather?", "response": "no"}, {"question": "Is it gravity?", "response": "no"}]}
{"index": 33, "id": "b7fa74bc-34ca-455e-8777-4e21cd5ebdd2", "answer": "London", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a breadbox?", "response": "no"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "n/a"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in a workplace or industrial setting?", "response": "no"}, {"question": "Is it an object primarily used for communication?", "response": "no"}, {"question": "Is it a type of building or structure?", "response": "no"}, {"question": "Is it an object associated with technology or machinery?", "response": "no"}, {"question": "Is it a type of food?", "response": "no"}, {"question": "Is it a natural feature or part of nature?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a sport?", "response": "no"}, {"question": "Is it an instrument?", "response": "no"}, {"question": "Is it a fictional character?", "response": "no"}, {"question": "Is it an object associated with games or sports?", "response": "no"}, {"question": "Is it a flag?", "response": "no"}, {"question": "Is it a vehicle?", "response": "no"}]}
{"index": 171, "id": "e0510bb0-23aa-499c-b057-da5cf1ef918d", "answer": "Tornado", "category": "nature", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 18, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it something found in nature?", "response": "yes"}, {"question": "Is it non-living (not a plant or fungus)?", "response": "yes"}, {"question": "Is it a type of mineral or rock?", "response": "no"}, {"question": "Is it a body of water?", "response": "no"}, {"question": "Is it found in the sky or atmosphere?", "response": "yes"}, {"question": "Is it related to weather or precipitation?", "response": "yes"}, {"question": "Is it visible as a physical phenomenon, such as rainbows, lightning, or clouds?", "response": "yes"}, {"question": "Is it visible as a solid object, such as hail or snow?", "response": "no"}, {"question": "Is it lightning?", "response": "no"}, {"question": "Is it a cloud?", "response": "no"}, {"question": "Is it a rainbow?", "response": "no"}, {"question": "Is it thunder?", "response": "no"}, {"question": "Is it a type of fog or mist?", "response": "no"}, {"question": "Is it associated with light phenomena such as auroras?", "response": "no"}, {"question": "Is it wind?", "response": "yes"}, {"question": "Is it specifically a tornado?", "response": "yes"}]}
{"index": 165, "id": "89ace4d7-ca82-4826-ae70-281504fcf648", "answer": "Moon", "category": "nature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a physical object?", "response": "yes"}, {"question": "Is it something solid?", "response": "yes"}, {"question": "Is it larger than a basketball?", "response": "yes"}, {"question": "Is it naturally occurring outdoors worldwide?", "response": "yes"}, {"question": "Is it a type of landform?", "response": "no"}, {"question": "Is it primarily composed of minerals?", "response": "yes"}, {"question": "Is it primarily composed of a single element (such as gold, silver, quartz)?", "response": "no"}, {"question": "Is it commonly found in or associated with water (such as lakes, rivers, oceans, or rain)?", "response": "yes"}, {"question": "Is it a type of rock or mineral?", "response": "no"}, {"question": "Is it an island?", "response": "no"}, {"question": "Is it a mountain?", "response": "no"}, {"question": "Is it an iceberg?", "response": "no"}, {"question": "Is it a glacier?", "response": "no"}, {"question": "Is it a cave?", "response": "no"}, {"question": "Is it a waterfall?", "response": "no"}, {"question": "Is it a coral?", "response": "no"}, {"question": "Is it a cave?", "response": "no"}]}
{"index": 27, "id": "4aff485b-7cf6-45ba-b740-ea3204e27218", "answer": "Amazon Rainforest", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it something found in nature?", "response": "yes"}, {"question": "Is it non-living?", "response": "no"}, {"question": "Is it a plant?", "response": "no"}, {"question": "Is it a mineral?", "response": "no"}, {"question": "Is it something classified as a celestial body?", "response": "no"}, {"question": "Is it a body of water?", "response": "no"}, {"question": "Is it something found in the atmosphere?", "response": "no"}, {"question": "Is it a type of landform?", "response": "no"}, {"question": "Is it a type of rock?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a type of weather phenomenon?", "response": "no"}, {"question": "Is it an element?", "response": "no"}, {"question": "Is it a fossil?", "response": "no"}, {"question": "Is it a chemical compound?", "response": "no"}, {"question": "Is it something that originates from a volcano?", "response": "no"}, {"question": "Is it something formed through geological processes?", "response": "no"}, {"question": "Is it part of the atmosphere, such as a gas or air component?", "response": "no"}, {"question": "Is it mountain?", "response": "no"}]}
{"index": 77, "id": "1b0531c2-5db6-48d5-84a2-0d9475e6398e", "answer": "Violin", "category": "instrument", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 17, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it primarily used for entertainment or recreation?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a type of game?", "response": "no"}, {"question": "Is it a type of sports equipment?", "response": "no"}, {"question": "Is it something you can wear?", "response": "no"}, {"question": "Is it commonly found in a school or educational setting?", "response": "yes"}, {"question": "Is it something used for writing or drawing?", "response": "no"}, {"question": "Is it made of paper?", "response": "no"}, {"question": "Is it primarily used for measurement or calculation?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "yes"}, {"question": "Is it a string instrument?", "response": "yes"}, {"question": "Is it played with a bow?", "response": "yes"}, {"question": "Is it a violin?", "response": "yes"}]}
{"index": 96, "id": "45d6473e-440d-46f6-aaed-d5c473010cc9", "answer": "Cheese", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for food preparation?", "response": "no"}, {"question": "Is it primarily used for serving or eating food?", "response": "yes"}, {"question": "Is it typically made of glass?", "response": "no"}, {"question": "Is it primarily used for drinking?", "response": "no"}, {"question": "Is it typically made of metal?", "response": "no"}, {"question": "Is it typically made of ceramic?", "response": "no"}, {"question": "Is it typically made of plastic?", "response": "no"}, {"question": "Is it primarily used to hold food?", "response": "no"}, {"question": "Is it typically made of wood?", "response": "no"}, {"question": "Is it used to cut food?", "response": "no"}, {"question": "Is it typically used as an eating utensil?", "response": "no"}, {"question": "Is it used to store leftover food?", "response": "no"}, {"question": "Is it used to serve or present food at the table?", "response": "no"}, {"question": "Is it an appliance?", "response": "no"}, {"question": "Is it a napkin?", "response": "no"}, {"question": "Is it a plate?", "response": "no"}]}
{"index": 98, "id": "e07fe979-f42d-4546-a9ea-63c84f7cad2e", "answer": "Orange juice", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for food preparation rather than serving or storage?", "response": "no"}, {"question": "Is it primarily used to store food or beverages?", "response": "no"}, {"question": "Is it primarily used for consuming (eating or drinking) food or beverages?", "response": "yes"}, {"question": "Is it typically made of glass?", "response": "no"}, {"question": "Is it primarily used for drinking beverages?", "response": "yes"}, {"question": "Is it typically made of ceramic?", "response": "no"}, {"question": "Is it typically made of metal?", "response": "no"}, {"question": "Is it typically made of plastic?", "response": "no"}, {"question": "Is it primarily used for drinking hot beverages?", "response": "no"}, {"question": "Is it primarily used for drinking cold beverages?", "response": "yes"}, {"question": "Is it typically made of paper?", "response": "no"}, {"question": "Is it typically made of wood?", "response": "no"}, {"question": "Is it a cup?", "response": "no"}, {"question": "Is it a straw?", "response": "no"}, {"question": "Is it a bottle?", "response": "no"}, {"question": "Is it a glass?", "response": "no"}]}
{"index": 97, "id": "f0258eaa-f9c9-4776-a3c2-21dc7f3563a0", "answer": "Bread", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for preparing food?", "response": "no"}, {"question": "Is it primarily used for eating or drinking?", "response": "yes"}, {"question": "Is it typically made of glass?", "response": "no"}, {"question": "Is it typically made of metal?", "response": "no"}, {"question": "Is it typically made of ceramic?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it typically made of wood?", "response": "no"}, {"question": "Is it typically disposable after a single use?", "response": "yes"}, {"question": "Is it primarily used for drinking?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily used to hold food?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used for serving food?", "response": "no"}, {"question": "Is it a toothpick?", "response": "no"}, {"question": "Is it a napkin?", "response": "no"}, {"question": "Is it a straw?", "response": "no"}]}
{"index": 80, "id": "b7543b30-2673-4f95-9d7c-c56e7c48a189", "answer": "Skateboard", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 16, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "yes"}, {"question": "Is it electronic or does it require electricity to function?", "response": "no"}, {"question": "Is it commonly used for playing a game?", "response": "no"}, {"question": "Is it a type of musical instrument?", "response": "no"}, {"question": "Is it something you can read?", "response": "no"}, {"question": "Is it something you wear on your body?", "response": "no"}, {"question": "Is it typically used outdoors?", "response": "yes"}, {"question": "Is it used for sports or physical activity?", "response": "yes"}, {"question": "Is it a type of ball?", "response": "no"}, {"question": "Is it used for transportation?", "response": "yes"}, {"question": "Is it a bicycle?", "response": "no"}, {"question": "Is it a skateboard?", "response": "yes"}]}
{"index": 87, "id": "87da9cf1-6364-4e1b-b339-e3e66ed51d8b", "answer": "Ice cream", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it an object primarily used for work or study?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it something primarily electronic?", "response": "no"}, {"question": "Is it something primarily used for decoration?", "response": "no"}, {"question": "Is it larger than a breadbox?", "response": "no"}, {"question": "Is it made of plastic?", "response": "no"}, {"question": "Is it made of metal?", "response": "no"}, {"question": "Is it made of paper?", "response": "no"}, {"question": "Is it made of glass?", "response": "no"}, {"question": "Is it made of wood?", "response": "no"}, {"question": "Is it something primarily used for cleaning?", "response": "no"}, {"question": "Is it made primarily of fabric or textile materials?", "response": "no"}, {"question": "Is it something you commonly wear on your body?", "response": "no"}, {"question": "Is it something you can eat?", "response": "yes"}, {"question": "Is it sweet rather than savory?", "response": "yes"}, {"question": "Is it chocolate?", "response": "no"}]}
{"index": 117, "id": "33231635-dae2-4546-9a68-3a8bd5699f33", "answer": "War", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something typically found indoors?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for recreation or entertainment?", "response": "no"}, {"question": "Is it larger than a person?", "response": "yes"}, {"question": "Is it commonly found in cities or urban environments?", "response": "yes"}, {"question": "Is it a type of building?", "response": "no"}, {"question": "Is it a type of infrastructure?", "response": "no"}, {"question": "Is it a vehicle?", "response": "no"}, {"question": "Is it a type of public utility or service equipment?", "response": "no"}, {"question": "Is it used for communication or information display?", "response": "yes"}, {"question": "Is it an electronic display like a billboard or screen?", "response": "no"}, {"question": "Is it a sign with written information (like a street sign or traffic sign)?", "response": "no"}, {"question": "Is it a clock or timekeeping device?", "response": "no"}, {"question": "Is it a statue or sculpture?", "response": "no"}, {"question": "Is it a map?", "response": "no"}, {"question": "Is it a loudspeaker or public address system?", "response": "no"}, {"question": "Is it a monument?", "response": "no"}, {"question": "Is it a megaphone?", "response": "no"}]}
{"index": 78, "id": "32117aa6-f792-4807-afdc-313532b27bfe", "answer": "Harp", "category": "instrument", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it something that is primarily used indoors?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "no"}, {"question": "Is it something primarily used in schools or educational institutions?", "response": "no"}, {"question": "Is it primarily used in a workplace or office setting?", "response": "no"}, {"question": "Is it used primarily for transportation?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure activities?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it typically used in sports or physical activities?", "response": "no"}, {"question": "Is it a game or game-related object?", "response": "no"}, {"question": "Is it something you can wear?", "response": "no"}, {"question": "Is it primarily associated with music or musical activities?", "response": "yes"}, {"question": "Is it a musical instrument?", "response": "yes"}, {"question": "Is it a keyboard instrument?", "response": "no"}, {"question": "Is it a string instrument?", "response": "yes"}, {"question": "Is it played with a bow?", "response": "no"}, {"question": "Is it a plucked instrument?", "response": "yes"}, {"question": "Is it a guitar?", "response": "no"}, {"question": "Is it a ukulele?", "response": "no"}]}
{"index": 120, "id": "5c3f1962-0cf9-4b72-ad30-1534ef68facb", "answer": "Dream", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it something you can see without special equipment?", "response": "yes"}, {"question": "Is it something that is normally stationary and does not move?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it something related to water?", "response": "no"}, {"question": "Is it something associated with the sky or atmosphere?", "response": "no"}, {"question": "Is it something that is made of rock or mineral?", "response": "no"}, {"question": "Is it something that produces light or energy?", "response": "no"}, {"question": "Is it something that grows or changes form during its existence?", "response": "yes"}, {"question": "Is it a plant?", "response": "no"}, {"question": "Is it something that is classified as a fungus?", "response": "no"}, {"question": "Is it something that can fly or move through the air?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it related to time?", "response": "yes"}, {"question": "Is it a unit of time?", "response": "no"}, {"question": "Is it an event?", "response": "no"}, {"question": "Is it a season?", "response": "no"}, {"question": "Is it change?", "response": "no"}]}
{"index": 170, "id": "26c056b3-e713-4db5-92cc-e79f0c5e2fa5", "answer": "Cloud", "category": "nature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in households?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for measurement?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it primarily used for organizing or arranging items?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "no"}, {"question": "Is it primarily used for decoration?", "response": "no"}, {"question": "Is it primarily used for sleeping or resting?", "response": "no"}, {"question": "Is it primarily used for work or tasks involving repair or construction?", "response": "no"}, {"question": "Is it a chair?", "response": "no"}]}
{"index": 4, "id": "7b2e16b1-9807-461d-95a9-3a0a2343847b", "answer": "Batman", "category": "character", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person real and not fictional?", "response": "no"}, {"question": "Is this character primarily known from a movie or television series?", "response": "no"}, {"question": "Is this character primarily known from a book?", "response": "yes"}, {"question": "Is this character primarily associated with a fantasy story?", "response": "no"}, {"question": "Is this character primarily known from a mystery or detective novel?", "response": "no"}, {"question": "Is this character primarily known from a children's or young adult book?", "response": "no"}, {"question": "Is this character primarily known from a classic literary novel published before 1950?", "response": "no"}, {"question": "Is this character primarily known from a science fiction novel?", "response": "no"}, {"question": "Is this character primarily known from a romance novel?", "response": "no"}, {"question": "Is this character primarily known from a horror or thriller novel?", "response": "no"}, {"question": "Is this character primarily known from a drama or literary fiction novel published after 1950?", "response": "no"}, {"question": "Is this character primarily known from a graphic novel or comic book?", "response": "yes"}, {"question": "Is this character primarily published by Marvel Comics?", "response": "no"}, {"question": "Is this character primarily published by DC Comics?", "response": "yes"}, {"question": "Is this character part of the Justice League?", "response": "yes"}, {"question": "Is this character female?", "response": "no"}, {"question": "Is it Batman?", "response": "yes"}]}
{"index": 54, "id": "8c3514cb-494d-4265-a085-4ece521a5d7a", "answer": "Snake", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 10, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a domesticated animal?", "response": "no"}, {"question": "Is it a wild animal commonly found on more than one continent?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Is it a bird?", "response": "no"}, {"question": "Is it a reptile?", "response": "yes"}, {"question": "Is it primarily aquatic?", "response": "no"}, {"question": "Is it a snake?", "response": "yes"}]}
{"index": 60, "id": "0a9960ce-77d0-4c88-be7d-c55cb8c67de8", "answer": "Chair", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of paper or cardboard?", "response": "no"}, {"question": "Is it primarily made of glass?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily made of fabric or textile?", "response": "no"}, {"question": "Is it primarily made of stone or ceramic?", "response": "no"}, {"question": "Is it primarily used for entertainment purposes?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for decoration?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for safety or protection?", "response": "no"}, {"question": "Is it a mirror?", "response": "no"}]}
{"index": 71, "id": "086e72e0-58a0-4096-98ff-77beea97608a", "answer": "Television", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 9, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it primarily used to play video games?", "response": "no"}, {"question": "Is it primarily used to watch television or movies?", "response": "yes"}, {"question": "Is it a television?", "response": "yes"}]}
{"index": 52, "id": "f17a8169-cf12-4dd7-b458-aa6046ccc7c5", "answer": "Dog", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 7, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it human?", "response": "no"}, {"question": "Is it commonly kept as a pet?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it larger than a breadbox?", "response": "n/a"}, {"question": "Is it a cat?", "response": "no"}, {"question": "Is it a dog?", "response": "yes"}]}
{"index": 163, "id": "9d13fed2-4734-409d-97e8-12d1ed3d9339", "answer": "Rainbow", "category": "nature", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 14, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it composed primarily of minerals?", "response": "no"}, {"question": "Is it a type of water?", "response": "no"}, {"question": "Is it something that grows?", "response": "no"}, {"question": "Is it something that is weather-related?", "response": "yes"}, {"question": "Is it a type of precipitation?", "response": "no"}, {"question": "Is it related to wind?", "response": "no"}, {"question": "Is it associated with temperature changes such as heat or cold?", "response": "no"}, {"question": "Is it something you can see in the sky?", "response": "yes"}, {"question": "Is it a type of cloud?", "response": "no"}, {"question": "Is it produced by a lightning or thunderstorm?", "response": "no"}, {"question": "Is it a rainbow?", "response": "yes"}]}
{"index": 101, "id": "5d9deabb-6f74-4a4e-a72b-835dd632693a", "answer": "Taco", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it commonly used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for preparing or cooking food?", "response": "no"}, {"question": "Is it primarily used for serving or eating food?", "response": "yes"}, {"question": "Is it typically made of ceramic or glass?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily used for drinking beverages?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily made of stone or clay?", "response": "no"}, {"question": "Is it primarily made of fabric?", "response": "no"}, {"question": "Is it primarily disposable after one use?", "response": "yes"}, {"question": "Is it primarily used for cleaning up after eating?", "response": "no"}, {"question": "Is it a napkin?", "response": "no"}, {"question": "Is it a paper plate?", "response": "no"}, {"question": "Is it a toothpick?", "response": "no"}]}
{"index": 116, "id": "7a282e66-5d22-418c-975f-f319ee920d4d", "answer": "Science", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "n/a"}, {"question": "Is it commonly found in a household?", "response": "n/a"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it related to science or mathematics?", "response": "yes"}, {"question": "Is it a fundamental concept in physics?", "response": "no"}, {"question": "Is it primarily associated with mathematics?", "response": "no"}, {"question": "Is it primarily associated with chemistry?", "response": "no"}, {"question": "Is it primarily associated with technology or computers?", "response": "no"}, {"question": "Is it primarily associated with the field of biology?", "response": "no"}, {"question": "Is it primarily related to the field of earth science or geology?", "response": "no"}, {"question": "Is it primarily related to the field of social sciences?", "response": "no"}, {"question": "Is it primarily associated with astronomy or space science?", "response": "no"}, {"question": "Is it primarily associated with the field of engineering?", "response": "no"}, {"question": "Is it primarily associated with philosophy?", "response": "no"}, {"question": "Is it primarily associated with the field of art?", "response": "no"}, {"question": "Is it primarily associated with the field of language or linguistics?", "response": "no"}, {"question": "Is it time?", "response": "n/a"}]}
{"index": 138, "id": "28aa6850-b582-440e-ba13-ed288ef433ee", "answer": "Volleyball", "category": "sport", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a physical object that you can hold in your hands?", "response": "yes"}, {"question": "Is it used in a competitive sport?", "response": "yes"}, {"question": "Is it primarily made of leather?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it used in ball-based sports?", "response": "yes"}, {"question": "Is it used in the sport of baseball?", "response": "no"}, {"question": "Is it used in the sport of basketball?", "response": "no"}, {"question": "Is it used in the sport of soccer?", "response": "no"}, {"question": "Is it used in the sport of tennis?", "response": "no"}, {"question": "Is it used in the sport of football (American)?", "response": "no"}, {"question": "Is it used in the sport of golf?", "response": "no"}, {"question": "Is it used in the sport of cricket?", "response": "no"}, {"question": "Is it a volleyball?", "response": "yes"}]}
{"index": 158, "id": "e95d8aa8-5d4b-446c-a745-6d0bc7240619", "answer": "The Joker", "category": "character", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 16, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "n/a"}, {"question": "Is this person a real individual (not a fictional character)?", "response": "no"}, {"question": "Is this fictional human a female?", "response": "no"}, {"question": "Is this fictional male human primarily known from a book or literary work?", "response": "no"}, {"question": "Is this fictional male human primarily known from a movie or television show?", "response": "no"}, {"question": "Is this fictional male human primarily known from a video game?", "response": "no"}, {"question": "Is this fictional male human primarily known from a comic or graphic novel?", "response": "yes"}, {"question": "Is this character primarily associated with being a superhero or having superhuman abilities?", "response": "no"}, {"question": "Is this character primarily known for being a villain or antagonist?", "response": "yes"}, {"question": "Is this character primarily associated with DC Comics?", "response": "yes"}, {"question": "Is this character primarily an enemy of Batman?", "response": "yes"}, {"question": "Is this character known for having a disfigured face or physical appearance?", "response": "yes"}, {"question": "Is it Two-Face?", "response": "no"}, {"question": "Is it the Joker?", "response": "yes"}]}
{"index": 37, "id": "857b1803-8b8d-4bae-afec-cf527ed62404", "answer": "Las Vegas", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in a household?", "response": "no"}, {"question": "Is it commonly used in transportation?", "response": "n/a"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a building or structure?", "response": "no"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it a landmark or monument?", "response": "no"}, {"question": "Is it related to entertainment or sports venues?", "response": "yes"}, {"question": "Is it an outdoor stadium?", "response": "no"}, {"question": "Is it an indoor arena?", "response": "no"}, {"question": "Is it used primarily for entertainment performances such as concerts or shows?", "response": "yes"}, {"question": "Is it a theater?", "response": "no"}, {"question": "Is it an opera house?", "response": "no"}, {"question": "Is it a cinema?", "response": "no"}, {"question": "Is it primarily used for live stage productions such as musicals or plays?", "response": "no"}, {"question": "Is it primarily used for hosting televised events or broadcasts?", "response": "no"}, {"question": "Is it a convention center?", "response": "no"}, {"question": "Is it a concert hall?", "response": "no"}, {"question": "Is it an auditorium?", "response": "no"}]}
{"index": 139, "id": "6950a4e7-2d31-4982-b05e-880b01984a5b", "answer": "Climbing", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it naturally found outdoors?", "response": "yes"}, {"question": "Is it made of mineral or rock?", "response": "n/a"}, {"question": "Is it water?", "response": "no"}, {"question": "Is it a type of plant?", "response": "no"}, {"question": "Is it something commonly found in the sky?", "response": "no"}, {"question": "Is it something that is or can be touched (tangible)?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it related to time?", "response": "no"}, {"question": "Is it related to a force or energy?", "response": "yes"}, {"question": "Is it related to gravity?", "response": "yes"}, {"question": "Is it fundamental to the structure of the universe?", "response": "no"}, {"question": "Is it specific to Earth rather than being a general concept in physics?", "response": "no"}, {"question": "Is it a form of acceleration?", "response": "no"}, {"question": "Is it the concept of escape velocity?", "response": "no"}, {"question": "Is it tidal force?", "response": "no"}, {"question": "Is it the concept of orbit?", "response": "no"}, {"question": "Is it the concept of weight?", "response": "no"}, {"question": "Is it the concept of mass?", "response": "no"}]}
{"index": 104, "id": "1fadf934-1678-4d5f-ab2d-8591fda1a280", "answer": "Love", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it non-living and solid (not water or air)?", "response": "no"}, {"question": "Is it a type of gas?", "response": "no"}, {"question": "Is it a liquid found in nature?", "response": "no"}, {"question": "Is it something visible to the naked eye?", "response": "no"}, {"question": "Is it something classified as a form of energy?", "response": "no"}, {"question": "Is it smaller than an atom?", "response": "n/a"}, {"question": "Is it an astronomical object?", "response": "no"}, {"question": "Is it a type of radiation?", "response": "no"}, {"question": "Is it a fundamental particle?", "response": "n/a"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it a scientific concept?", "response": "no"}, {"question": "Is it an abstract concept rather than something with a physical or observable form?", "response": "yes"}, {"question": "Is it related to emotions or feelings?", "response": "yes"}, {"question": "Is it associated with love?", "response": "yes"}, {"question": "Is it commonly associated with romantic relationships?", "response": "yes"}, {"question": "Is it passion?", "response": "no"}, {"question": "Is it infatuation?", "response": "no"}]}
{"index": 83, "id": "9e164437-ddcc-44da-ae14-1451354ea35a", "answer": "Pizza", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used in an office or for work-related tasks?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it typically used for transportation?", "response": "no"}, {"question": "Is it primarily used for health or personal care?", "response": "no"}, {"question": "Is it primarily used for decoration?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "no"}, {"question": "Is it smaller than a loaf of bread?", "response": "n/a"}, {"question": "Is it primarily used in the bedroom?", "response": "no"}, {"question": "Is it a clock?", "response": "no"}]}
{"index": 93, "id": "0cbc431c-88e0-4417-a62c-2ac2d51301ed", "answer": "Watermelon", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it composed primarily of minerals?", "response": "no"}, {"question": "Is it something that is or was alive?", "response": "yes"}, {"question": "Is it something that is currently alive?", "response": "no"}, {"question": "Is it the remains or part of a plant?", "response": "yes"}, {"question": "Is it commonly found on trees?", "response": "no"}, {"question": "Is it the remains or part of a flower?", "response": "yes"}, {"question": "Is it commonly used in food or drinks?", "response": "yes"}, {"question": "Is it a spice?", "response": "no"}, {"question": "Is it a seed?", "response": "no"}, {"question": "Is it commonly used to make tea?", "response": "no"}, {"question": "Is it commonly used to make perfume or fragrance?", "response": "no"}, {"question": "Is it commonly used as an edible garnish?", "response": "yes"}, {"question": "Is it rose petals?", "response": "no"}, {"question": "Is it saffron?", "response": "no"}, {"question": "Is it lavender?", "response": "no"}, {"question": "Is it a hibiscus flower?", "response": "no"}, {"question": "Is it chamomile?", "response": "no"}]}
{"index": 188, "id": "50a581d1-56c1-49d9-af78-4d942d37be81", "answer": "Drone", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it found in the wild?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Is it a bird?", "response": "no"}, {"question": "Is it a reptile?", "response": "no"}, {"question": "Is it an insect?", "response": "yes"}, {"question": "Is it capable of flight?", "response": "yes"}, {"question": "Is it known for producing light (e.g., bioluminescence)?", "response": "no"}, {"question": "Is it known for bright or colorful wings?", "response": "no"}, {"question": "Is it commonly found near water?", "response": "no"}, {"question": "Is it harmful or dangerous to humans?", "response": "yes"}, {"question": "Is it commonly associated with painful stings or bites?", "response": "no"}, {"question": "Is it known for spreading disease to humans?", "response": "no"}, {"question": "Is it a mosquito?", "response": "no"}, {"question": "Is it known for being a pest to crops or agriculture?", "response": "no"}, {"question": "Is it a wasp?", "response": "no"}, {"question": "Is it a hornet?", "response": "no"}, {"question": "Is it a fly?", "response": "no"}]}
{"index": 122, "id": "978a4b9e-6a49-499e-a9a6-f99563847911", "answer": "Memory", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "yes"}, {"question": "Is it primarily used for preparing or storing food?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintaining a home?", "response": "no"}, {"question": "Is it primarily used for communication or information?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "yes"}, {"question": "Is it small enough to hold in one hand?", "response": "n/a"}, {"question": "Is it typically used for accessing the internet?", "response": "no"}, {"question": "Is it primarily used for viewing visual content?", "response": "no"}, {"question": "Is it a telephone?", "response": "no"}, {"question": "Is it a radio?", "response": "no"}, {"question": "Is it used for recording audio?", "response": "yes"}, {"question": "Is it primarily used for recording spoken voice?", "response": "no"}, {"question": "Is it used for recording music?", "response": "yes"}, {"question": "Is it a tape recorder?", "response": "no"}, {"question": "Is it a microphone?", "response": "no"}, {"question": "Is it a cassette player?", "response": "no"}, {"question": "Is it a reel-to-reel recorder?", "response": "no"}]}
{"index": 142, "id": "bb600ce3-8216-4137-8408-c50c80a22c80", "answer": "Billiards", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it typically used in sports or games?", "response": "yes"}, {"question": "Is it a ball?", "response": "no"}, {"question": "Is it typically used in board games?", "response": "no"}, {"question": "Is it made of wood?", "response": "n/a"}, {"question": "Is it typically used in tabletop games other than board games?", "response": "no"}, {"question": "Is it typically used as sports equipment?", "response": "no"}, {"question": "Is it typically used as a toy?", "response": "no"}, {"question": "Is it commonly used in a type of card game?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it traditionally used in a casino?", "response": "no"}, {"question": "Is it an item commonly associated with magic tricks?", "response": "no"}, {"question": "Is it a puzzle?", "response": "no"}, {"question": "Is it a die?", "response": "no"}]}
{"index": 190, "id": "fc001199-b60d-407f-81a4-f2bac50a26a5", "answer": "Air Conditioner", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used in the bedroom?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it primarily used for health or medical purposes?", "response": "no"}, {"question": "Is it primarily used for work or office tasks?", "response": "no"}, {"question": "Is it primarily used for decoration?", "response": "no"}, {"question": "Is it small enough to be held in one hand?", "response": "no"}, {"question": "Is it primarily used for transportation or moving things?", "response": "no"}, {"question": "Is it primarily associated with electronics or requires electricity to function?", "response": "yes"}, {"question": "Is it commonly found in a living room?", "response": "yes"}, {"question": "Is it a television?", "response": "no"}, {"question": "Is it a lamp?", "response": "no"}]}
{"index": 79, "id": "fbb70631-1e66-4a18-8b60-43f4c9056b4e", "answer": "Trombone", "category": "instrument", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it related to transportation?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure activities?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a physical object that is used in sports or games?", "response": "no"}, {"question": "Is it commonly used in the context of arts or crafts?", "response": "yes"}, {"question": "Is it primarily made of paper or canvas?", "response": "no"}, {"question": "Is it primarily made of wood or metal?", "response": "yes"}, {"question": "Is it primarily used for cutting or shaping materials?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "yes"}, {"question": "Is it a string instrument?", "response": "no"}, {"question": "Is it a percussion instrument?", "response": "no"}, {"question": "Is it a brass instrument?", "response": "yes"}, {"question": "Is it commonly played in orchestras?", "response": "yes"}, {"question": "Is it a wind instrument that uses valves?", "response": "no"}, {"question": "Is it a trombone?", "response": "yes"}]}
{"index": 186, "id": "5efc9f8b-b418-41ce-89a8-1aaed3a6a322", "answer": "Blanket", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it typically found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment purposes?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used for work or office related tasks?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for health or medical purposes?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for decoration or aesthetic purposes?", "response": "no"}, {"question": "Is it primarily used for measuring or indicating something?", "response": "no"}, {"question": "Is it primarily used for illumination or lighting?", "response": "no"}, {"question": "Is it primarily used for leisure or relaxation?", "response": "no"}, {"question": "Is it primarily used for repair or maintenance?", "response": "no"}, {"question": "Is it primarily used for personal hygiene?", "response": "no"}, {"question": "Is it a clock?", "response": "no"}]}
{"index": 110, "id": "e265aff9-06dc-4d13-a258-62cfeb7f2cef", "answer": "Peace", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "n/a"}, {"question": "Is it something primarily found indoors?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "n/a"}, {"question": "Is it an object commonly used outdoors?", "response": "no"}, {"question": "Is it something that is used for entertainment or leisure purposes?", "response": "no"}, {"question": "Is it electronic or requires electricity to function?", "response": "no"}, {"question": "Is it something found in most households?", "response": "no"}, {"question": "Is it made primarily of metal?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "n/a"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "n/a"}, {"question": "Is it something that has a specific, practical use in infrastructure or construction?", "response": "no"}, {"question": "Is it commonly consumed as food?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it an abstract idea rather than a physical or measurable principle?", "response": "yes"}, {"question": "Is it related to time?", "response": "yes"}, {"question": "Is it the concept of the future?", "response": "no"}, {"question": "Is it the concept of the past?", "response": "no"}]}
{"index": 0, "id": "4175f3d1-3c2f-4def-a08a-b8733b29b286", "answer": "Taylor Swift", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person widely known for work in entertainment (movies, TV, music)?", "response": "yes"}, {"question": "Is this person primarily known for their work in music?", "response": "yes"}, {"question": "Is this person primarily known for being a solo artist?", "response": "yes"}, {"question": "Is this person originally from the United States?", "response": "yes"}, {"question": "Is this person male?", "response": "no"}, {"question": "Is this person primarily known as a pop singer?", "response": "yes"}, {"question": "Has this person won a Grammy Award?", "response": "yes"}, {"question": "Has this person been active since before the year 2000?", "response": "no"}, {"question": "Has this person ever been named in Time magazine's list of the 100 most influential people?", "response": "yes"}, {"question": "Has this person had a Billboard Hot 100 number-one single?", "response": "yes"}, {"question": "Has this person ever been a coach on The Voice?", "response": "no"}, {"question": "Has this person headlined the Super Bowl halftime show?", "response": "no"}, {"question": "Has this person acted in major films?", "response": "yes"}, {"question": "Has this person voiced a character in an animated film?", "response": "yes"}, {"question": "Has this person starred in a film alongside Bradley Cooper?", "response": "no"}, {"question": "Is it Ariana Grande?", "response": "no"}, {"question": "Is it Lady Gaga?", "response": "no"}]}
{"index": 89, "id": "7a8fe472-f64a-47ed-b387-ea0aa1501c51", "answer": "Sushi", "category": "food", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 18, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it something commonly found in a household?", "response": "no"}, {"question": "Is it primarily associated with transportation?", "response": "no"}, {"question": "Is it related to entertainment or leisure activities?", "response": "no"}, {"question": "Is it commonly used in a professional or industrial setting?", "response": "no"}, {"question": "Is it commonly found outdoors?", "response": "no"}, {"question": "Is it a tool or device used for a specific practical function?", "response": "no"}, {"question": "Is it related to a concept or idea rather than a physical object?", "response": "no"}, {"question": "Is it an object commonly associated with communication?", "response": "no"}, {"question": "Is it commonly associated with food or eating?", "response": "yes"}, {"question": "Is it a type of drink?", "response": "no"}, {"question": "Is it a type of dessert?", "response": "no"}, {"question": "Is it a staple food or main course?", "response": "yes"}, {"question": "Is it made primarily from meat?", "response": "no"}, {"question": "Is it primarily made from grains or cereals?", "response": "yes"}, {"question": "Is it commonly made from rice?", "response": "yes"}, {"question": "Is it sushi?", "response": "yes"}]}
{"index": 72, "id": "494615f6-d26e-4003-abf4-b8e854b84b06", "answer": "Candle", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it typically found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it something commonly found in a kitchen?", "response": "yes"}, {"question": "Is it primarily used for preparing food?", "response": "no"}, {"question": "Is it used for storage or keeping things?", "response": "no"}, {"question": "Is it something that uses electricity?", "response": "no"}, {"question": "Is it used for cleaning or maintaining hygiene?", "response": "no"}, {"question": "Is it used for eating or drinking?", "response": "no"}, {"question": "Is it made of metal?", "response": "no"}, {"question": "Is it made of plastic?", "response": "no"}, {"question": "Is it made of glass?", "response": "no"}, {"question": "Is it made of wood?", "response": "no"}, {"question": "Is it made primarily of paper?", "response": "no"}, {"question": "Is it made primarily of ceramic or clay?", "response": "no"}, {"question": "Is it made primarily of fabric or textile?", "response": "no"}, {"question": "Is it primarily made of stone?", "response": "no"}, {"question": "Is it disposable after a single use?", "response": "no"}, {"question": "Is it primarily made of rubber?", "response": "no"}, {"question": "Is it sponge?", "response": "no"}]}
{"index": 148, "id": "8c9794c9-e461-43cd-b4fc-00276718039f", "answer": "SpongeBob", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Is it a bird?", "response": "no"}, {"question": "Is it a reptile?", "response": "no"}, {"question": "Is it an aquatic animal?", "response": "yes"}, {"question": "Is it an invertebrate?", "response": "yes"}, {"question": "Is it commonly known for having more than eight legs?", "response": "no"}, {"question": "Is it most commonly found in saltwater environments?", "response": "yes"}, {"question": "Is it classified as a mollusk?", "response": "no"}, {"question": "Is it classified as a crustacean?", "response": "no"}, {"question": "Is it known for having tentacles?", "response": "no"}, {"question": "Is it classified as an echinoderm?", "response": "no"}, {"question": "Is it a fish?", "response": "no"}, {"question": "Is it a jellyfish?", "response": "no"}, {"question": "Is it commonly bioluminescent?", "response": "no"}, {"question": "Is it visible to the naked eye?", "response": "yes"}, {"question": "Is it a sea anemone?", "response": "no"}, {"question": "Is it a coral?", "response": "no"}]}
{"index": 130, "id": "36f990da-4d5e-4e2b-906b-9178f4d72053", "answer": "Surfing", "category": "sport", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 16, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a fictional entity?", "response": "no"}, {"question": "Is it a type of food?", "response": "no"}, {"question": "Is it considered an instrument?", "response": "no"}, {"question": "Is it a sport?", "response": "yes"}, {"question": "Is it played with a ball?", "response": "no"}, {"question": "Is it played on ice or snow?", "response": "no"}, {"question": "Is it played in water?", "response": "yes"}, {"question": "Is it played individually rather than as a team?", "response": "yes"}, {"question": "Is it contested in the Olympics?", "response": "yes"}, {"question": "Is it a sport primarily involving swimming?", "response": "no"}, {"question": "Is it a sport where you use a board?", "response": "yes"}, {"question": "Is it surfing?", "response": "yes"}]}
{"index": 197, "id": "035437f6-c20e-4f5a-9eba-ab6653c2bf31", "answer": "Mouse", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 15, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it smaller than a breadbox?", "response": "yes"}, {"question": "Is it a rodent?", "response": "yes"}, {"question": "Is it more commonly kept as a pet than a hamster?", "response": "no"}, {"question": "Is it commonly known for having a long tail?", "response": "yes"}, {"question": "Is it often kept in pairs or groups rather than alone?", "response": "yes"}, {"question": "Is it commonly white in color?", "response": "no"}, {"question": "Is it known for its large ears?", "response": "no"}, {"question": "Is it primarily nocturnal?", "response": "yes"}, {"question": "Is it a gerbil?", "response": "no"}, {"question": "Is it a mouse?", "response": "yes"}]}
{"index": 45, "id": "27ed892b-d64c-4627-8bb4-02424f6e5b75", "answer": "Eagle", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "no"}, {"question": "Does it primarily live in water?", "response": "no"}, {"question": "Does it have feathers?", "response": "yes"}, {"question": "Is it capable of flight?", "response": "yes"}, {"question": "Is it a bird commonly found in urban environments?", "response": "no"}, {"question": "Is it a nocturnal bird?", "response": "no"}, {"question": "Is it a species known for its colorful plumage?", "response": "no"}, {"question": "Is it primarily associated with forests or woodlands?", "response": "no"}, {"question": "Is it primarily found in grasslands or open fields?", "response": "no"}, {"question": "Is it primarily found in mountainous or alpine regions?", "response": "no"}, {"question": "Is it primarily found in coastal or wetland habitats?", "response": "no"}, {"question": "Is it a bird of prey?", "response": "yes"}, {"question": "Is it an owl?", "response": "no"}, {"question": "Is it a hawk?", "response": "no"}, {"question": "Is it an eagle?", "response": "yes"}]}
{"index": 30, "id": "f2ef706d-6ed8-459b-871f-388e0332f88b", "answer": "Taj Mahal", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it used in sports or outdoor recreation?", "response": "no"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a type of building or structure?", "response": "yes"}, {"question": "Is it primarily used for transportation or travel?", "response": "no"}, {"question": "Is it a place where people live or stay overnight?", "response": "no"}, {"question": "Is it a place where work or commercial activities are conducted?", "response": "no"}, {"question": "Is it a place open to the public for gatherings or events?", "response": "no"}, {"question": "Is it a structure with a specific functional purpose, such as storage or shelter for equipment or animals?", "response": "yes"}, {"question": "Is it primarily used to store vehicles or machinery?", "response": "no"}, {"question": "Is it primarily used to store agricultural products or supplies?", "response": "no"}, {"question": "Is it primarily used to store animals?", "response": "no"}, {"question": "Is it a type of tower?", "response": "no"}, {"question": "Is it a bridge?", "response": "no"}, {"question": "Is it a dam?", "response": "no"}, {"question": "Is it a lighthouse?", "response": "no"}]}
{"index": 21, "id": "bece1617-157f-4649-b6a7-93dad97b627a", "answer": "Tokyo", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "n/a"}, {"question": "Is it something primarily used for transportation?", "response": "no"}, {"question": "Is it smaller than a car?", "response": "no"}, {"question": "Is it larger than a refrigerator?", "response": "yes"}, {"question": "Is it a building?", "response": "no"}, {"question": "Is it a vehicle?", "response": "no"}, {"question": "Is it used for entertainment or leisure?", "response": "yes"}, {"question": "Is it an amusement park ride?", "response": "no"}, {"question": "Is it a type of sports equipment?", "response": "no"}, {"question": "Is it commonly found at a sports stadium or arena?", "response": "no"}, {"question": "Is it primarily used in public spaces or for large events?", "response": "n/a"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a type of large electronic device?", "response": "no"}, {"question": "Is it a type of structure or facility?", "response": "no"}, {"question": "Is it a type of game?", "response": "no"}, {"question": "Is it a playground?", "response": "no"}, {"question": "Is it a movie theater?", "response": "no"}]}
{"index": 173, "id": "2ca4ff5b-2c1b-4715-aec5-088da500fe9f", "answer": "Alien", "category": "creature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "n/a"}, {"question": "Is it a fictional entity?", "response": "yes"}, {"question": "Is it an animal-like creature?", "response": "yes"}, {"question": "Is it from a fantasy genre?", "response": "no"}, {"question": "Is it from a science fiction work?", "response": "yes"}, {"question": "Does it primarily appear in a movie or TV series?", "response": "yes"}, {"question": "Is it from the Star Wars universe?", "response": "no"}, {"question": "Is it from the Star Trek universe?", "response": "no"}, {"question": "Is it from the Alien franchise?", "response": "yes"}, {"question": "Does it have more than two legs?", "response": "n/a"}, {"question": "Is it called a Xenomorph?", "response": "no"}, {"question": "Is it a Facehugger?", "response": "no"}, {"question": "Does it attach itself to a person's face?", "response": "yes"}, {"question": "Is it an Alien Chestburster?", "response": "no"}, {"question": "Is it a Predalien?", "response": "no"}, {"question": "Is it a Neomorph?", "response": "no"}, {"question": "Is it a Deacon?", "response": "no"}, {"question": "Is it a Trilobite?", "response": "no"}]}
{"index": 6, "id": "2236f2b0-058c-41f7-84b7-fd5ed57e0e2e", "answer": "Elon Musk", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person famous worldwide for achievements in entertainment, such as film, television, or music?", "response": "no"}, {"question": "Is this person famous for achievements in politics, government, or leadership?", "response": "yes"}, {"question": "Is this person currently a head of state or government?", "response": "no"}, {"question": "Is this person primarily known for achievements in politics or leadership within the last 20 years?", "response": "yes"}, {"question": "Is this person primarily known for their achievements in the United States?", "response": "yes"}, {"question": "Is this person best known for serving in the U.S. federal government rather than a state or local government?", "response": "no"}, {"question": "Has this person served as the governor of a U.S. state?", "response": "no"}, {"question": "Has this person served as a mayor of a U.S. city?", "response": "no"}, {"question": "Has this person served in a state legislature?", "response": "no"}, {"question": "Is this person primarily known for judicial achievements or serving as a judge?", "response": "no"}, {"question": "Is this person primarily known for achievements in activism or advocacy?", "response": "no"}, {"question": "Is this person primarily known for serving as a U.S. senator?", "response": "no"}, {"question": "Has this person served as a U.S. Representative (member of the House of Representatives)?", "response": "no"}, {"question": "Is this person primarily known for serving in statewide executive office other than governor, such as attorney general or secretary of state?", "response": "no"}, {"question": "Is this person primarily known for holding a statewide office related to law enforcement, such as sheriff?", "response": "no"}, {"question": "Is this person primarily known for serving on a city council or similar local governing body?", "response": "no"}, {"question": "Is it Barack Obama?", "response": "no"}]}
{"index": 16, "id": "b5451060-f92d-4f46-a88e-5c9d9a67c8ca", "answer": "William Shakespeare", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a mineral or metal?", "response": "no"}, {"question": "Is it a type of plant?", "response": "no"}, {"question": "Is it a type of water?", "response": "no"}, {"question": "Is it nonliving and commonly found in the sky or atmosphere?", "response": "no"}, {"question": "Is it something solid that is commonly found on the ground?", "response": "no"}, {"question": "Is it a type of physical phenomenon (e.g., weather, force, or energy)?", "response": "no"}, {"question": "Is it related to fire or heat?", "response": "no"}, {"question": "Is it related to outer space or celestial bodies?", "response": "no"}, {"question": "Is it a type of landform?", "response": "n/a"}, {"question": "Is it a natural source of energy that is not related to fire, heat, or weather?", "response": "no"}, {"question": "Is it something that can be seen or touched?", "response": "yes"}, {"question": "Is it a type of rock?", "response": "no"}, {"question": "Is it associated with a body part or remains of a former living thing?", "response": "yes"}, {"question": "Is it a fossil?", "response": "no"}, {"question": "Is it a shell?", "response": "n/a"}, {"question": "Is it a bone?", "response": "no"}, {"question": "Is it a tooth?", "response": "no"}]}
{"index": 61, "id": "cb7fb8ec-f77a-4819-b4a4-bd79c3c3276b", "answer": "Mirror", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for cleaning purposes?", "response": "no"}, {"question": "Is it primarily used in an office or for work-related tasks?", "response": "no"}, {"question": "Is it primarily used for health or personal care?", "response": "yes"}, {"question": "Is it an electric or battery-powered device?", "response": "no"}, {"question": "Is it something used for grooming hair?", "response": "yes"}, {"question": "Is it primarily used to remove hair from the body?", "response": "no"}, {"question": "Is it primarily used to style or shape hair?", "response": "no"}, {"question": "Is it primarily used to detangle hair?", "response": "no"}, {"question": "Is it primarily used to hold hair in place?", "response": "no"}, {"question": "Is it worn on the head?", "response": "no"}, {"question": "Is it used to color hair?", "response": "no"}, {"question": "Is it a comb?", "response": "no"}, {"question": "Is it a hairbrush?", "response": "no"}, {"question": "Is it a hair tie?", "response": "no"}, {"question": "Is it a hair clip?", "response": "no"}]}
{"index": 154, "id": "0cf13dc4-ae35-45bd-80b2-5acf3c694839", "answer": "Game of Thrones", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it typically used for playing music?", "response": "no"}, {"question": "Is it primarily used indoors?", "response": "yes"}, {"question": "Is it a type of game?", "response": "no"}, {"question": "Is it made mostly of paper?", "response": "yes"}, {"question": "Is it something you read?", "response": "yes"}, {"question": "Is it a book?", "response": "yes"}, {"question": "Is it primarily a work of fiction?", "response": "yes"}, {"question": "Is it a novel?", "response": "no"}, {"question": "Is it a short story?", "response": "no"}, {"question": "Is it a play?", "response": "no"}, {"question": "Is it a comic book?", "response": "no"}, {"question": "Is it a magazine?", "response": "no"}, {"question": "Is it an encyclopedia?", "response": "no"}, {"question": "Is it a dictionary?", "response": "no"}]}
{"index": 84, "id": "a383793e-a0e6-4a5c-86eb-a05254e45507", "answer": "Coffee", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly used in households?", "response": "yes"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of glass?", "response": "no"}, {"question": "Is it primarily made of paper or cardboard?", "response": "no"}, {"question": "Is it primarily made of ceramic?", "response": "no"}, {"question": "Is it primarily electronic?", "response": "no"}, {"question": "Is it primarily made of stone?", "response": "no"}, {"question": "Is it primarily made of fabric?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it something you can eat?", "response": "yes"}, {"question": "Is it sweet?", "response": "no"}, {"question": "Is it typically served as part of a main course?", "response": "no"}, {"question": "Is it a type of snack food?", "response": "no"}, {"question": "Is it a type of condiment or sauce?", "response": "no"}, {"question": "Is it a type of beverage?", "response": "yes"}, {"question": "Is it water?", "response": "no"}]}
{"index": 2, "id": "c0d64602-8376-447a-a42c-d2397d36ae8a", "answer": "Cleopatra", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "no"}, {"question": "Is it a fictional entity?", "response": "no"}, {"question": "Is it a type of food?", "response": "no"}, {"question": "Is it a type of sport?", "response": "no"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a type of creature?", "response": "n/a"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an instrument?", "response": "no"}, {"question": "Is it a character?", "response": "yes"}, {"question": "Is this character from a movie?", "response": "yes"}, {"question": "Is the character animated?", "response": "no"}, {"question": "Is the character portrayed by a male actor?", "response": "yes"}, {"question": "Is the character the main protagonist of the movie?", "response": "n/a"}, {"question": "Is the character part of a movie franchise?", "response": "no"}, {"question": "Is the character from a film released before the year 2000?", "response": "yes"}, {"question": "Is the character from a film in the drama genre?", "response": "yes"}, {"question": "Is it Andy Dufresne?", "response": "no"}]}
{"index": 42, "id": "6c36738a-b147-4ca8-931e-57c52b64de3b", "answer": "Dolphin", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a domesticated animal?", "response": "no"}, {"question": "Is it a wild animal found on multiple continents?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it a carnivore?", "response": "yes"}, {"question": "Is it commonly found in Africa?", "response": "yes"}, {"question": "Is it part of the cat family (Felidae)?", "response": "no"}, {"question": "Is it known for living in water or frequently swimming?", "response": "yes"}, {"question": "Is it known for having a long snout or jaws?", "response": "yes"}, {"question": "Is it known for being dangerous to humans?", "response": "no"}, {"question": "Is it a hippopotamus?", "response": "no"}, {"question": "Is it a crocodile?", "response": "no"}, {"question": "Is it a hippopotamus?", "response": "no"}, {"question": "Is it a gharial?", "response": "no"}, {"question": "Is it a manatee?", "response": "no"}, {"question": "Is it an otter?", "response": "no"}, {"question": "Is it a river dolphin?", "response": "no"}]}
{"index": 70, "id": "88a2ae9c-d4d1-4a52-ab43-95df0e4210a3", "answer": "Book", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it typically used indoors?", "response": "yes"}, {"question": "Is it commonly found in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it typically played with by more than one person at a time?", "response": "no"}, {"question": "Is it a type of board game?", "response": "no"}, {"question": "Is it a type of toy?", "response": "no"}, {"question": "Is it an instrument?", "response": "no"}, {"question": "Is it used for reading or writing?", "response": "yes"}, {"question": "Is it primarily made of paper?", "response": "yes"}, {"question": "Is it a book?", "response": "yes"}]}
{"index": 49, "id": "167ec041-2050-4a65-b8ff-273fe913ef9f", "answer": "Shark", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human being?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Does it primarily live in water?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Is it a type of fish?", "response": "yes"}, {"question": "Is it known for being dangerous to humans?", "response": "yes"}, {"question": "Is it known for having sharp teeth?", "response": "yes"}, {"question": "Is it found in the ocean rather than freshwater?", "response": "yes"}, {"question": "Is it known for being one of the largest predatory fish in the ocean?", "response": "yes"}, {"question": "Is it famous for having a prominent dorsal fin?", "response": "yes"}, {"question": "Is it a great white shark?", "response": "no"}, {"question": "Is it a tiger shark?", "response": "no"}, {"question": "Is it a bull shark?", "response": "no"}, {"question": "Is it a hammerhead shark?", "response": "no"}, {"question": "Is it a mako shark?", "response": "no"}, {"question": "Is it an oceanic whitetip shark?", "response": "no"}, {"question": "Is it a goblin shark?", "response": "no"}]}
{"index": 125, "id": "b9339241-667e-4cbd-815b-0184f54d076b", "answer": "Tennis", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it larger than a car?", "response": "n/a"}, {"question": "Is it primarily used for recreation or leisure?", "response": "yes"}, {"question": "Is it commonly associated with sports or outdoor activities?", "response": "yes"}, {"question": "Is it mainly used for playing a specific sport?", "response": "n/a"}, {"question": "Is it a piece of sports equipment?", "response": "no"}, {"question": "Is it a type of structure or building found outdoors?", "response": "no"}, {"question": "Is it commonly found in parks or public outdoor spaces?", "response": "yes"}, {"question": "Is it an outdoor object used for games or physical exercise?", "response": "no"}, {"question": "Is it a type of public infrastructure or facility?", "response": "no"}, {"question": "Is it made primarily of metal?", "response": "no"}, {"question": "Is it made primarily of wood?", "response": "n/a"}, {"question": "Is it used for seating?", "response": "no"}, {"question": "Is it related to playgrounds?", "response": "no"}, {"question": "Is it a type of outdoor art or sculpture?", "response": "no"}, {"question": "Is it a fountain?", "response": "no"}, {"question": "Is it a bench?", "response": "no"}]}
{"index": 134, "id": "fc0b04c1-3a5a-4b37-bec4-8ae658767ebe", "answer": "Yoga", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it a man-made object?", "response": "no"}, {"question": "Is it naturally occurring in nature?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "no"}, {"question": "Is it a fictional entity?", "response": "no"}, {"question": "Is it a food?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it a type of sport?", "response": "no"}, {"question": "Is it a type of instrument?", "response": "no"}, {"question": "Is it a type of creature?", "response": "no"}, {"question": "Is it a character?", "response": "no"}, {"question": "Is it associated with a specific field of study?", "response": "no"}, {"question": "Is it an object used in games?", "response": "no"}, {"question": "Is it a person?", "response": "no"}, {"question": "Is it related to fiction in any way?", "response": "no"}, {"question": "Is it found in nature but not classified as living or non-living?", "response": "n/a"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it a mathematical concept?", "response": "no"}, {"question": "Is it a scientific concept?", "response": "no"}, {"question": "Is it freedom?", "response": "no"}]}
{"index": 38, "id": "80e006b1-291e-48ee-83ab-2cb0cd160cd6", "answer": "Antarctica", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a mineral or made primarily of mineral materials?", "response": "yes"}, {"question": "Is it commonly found in solid crystalline form?", "response": "yes"}, {"question": "Is it commonly transparent or translucent?", "response": "no"}, {"question": "Is it metallic in appearance or composition?", "response": "no"}, {"question": "Is it commonly used as a building material or construction aggregate?", "response": "no"}, {"question": "Is it commonly associated with being white or light in color?", "response": "yes"}, {"question": "Is it commonly found in the form of a rock rather than a single mineral?", "response": "yes"}, {"question": "Is it composed primarily of calcium carbonate?", "response": "no"}, {"question": "Is it commonly formed from silica or silicon dioxide?", "response": "no"}, {"question": "Is it commonly associated with volcanic activity?", "response": "no"}, {"question": "Is it primarily composed of salt?", "response": "no"}, {"question": "Is it primarily formed from gypsum?", "response": "no"}, {"question": "Is it commonly known for having a layered or banded appearance?", "response": "no"}, {"question": "Is it primarily composed of aluminum or an aluminum compound?", "response": "no"}, {"question": "Is it a type of limestone?", "response": "no"}, {"question": "Is it chalk?", "response": "no"}, {"question": "Is it marble?", "response": "no"}]}
{"index": 18, "id": "b524dbb9-5c8d-475a-9289-26ea077e9b71", "answer": "Gandhi", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it a physical location?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "no"}, {"question": "Is it found in nature?", "response": "n/a"}, {"question": "Is it a fictional entity?", "response": "no"}, {"question": "Is it an animal?", "response": "n/a"}, {"question": "Is it a natural physical object?", "response": "no"}, {"question": "Is it related to a type of event or activity?", "response": "no"}, {"question": "Is it a sport?", "response": "no"}, {"question": "Is it a type of food?", "response": "no"}, {"question": "Is it a creature?", "response": "yes"}, {"question": "Is it a mythological creature?", "response": "no"}, {"question": "Is it a real animal?", "response": "n/a"}, {"question": "Is it a type of legendary creature from folklore?", "response": "no"}, {"question": "Is it a dinosaur?", "response": "no"}, {"question": "Is it an extinct creature?", "response": "no"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it domesticated?", "response": "n/a"}, {"question": "Is it human?", "response": "yes"}]}
{"index": 85, "id": "9cde3530-403f-4b62-8e55-8bffc3af895d", "answer": "Apple", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it typically found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used in an office or workplace setting?", "response": "no"}, {"question": "Is it primarily found in the kitchen?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance?", "response": "no"}, {"question": "Is it electronic or does it require electricity to function?", "response": "yes"}, {"question": "Is it primarily used for communication or information processing?", "response": "yes"}, {"question": "Is it primarily used for accessing the internet or online services?", "response": "yes"}, {"question": "Is it a device primarily used for personal communication, such as a smartphone or tablet?", "response": "no"}, {"question": "Is it primarily used for work-related tasks such as web browsing or productivity applications?", "response": "yes"}, {"question": "Is it a desktop computer?", "response": "no"}, {"question": "Is it a laptop?", "response": "no"}, {"question": "Is it a printer?", "response": "no"}, {"question": "Is it a router?", "response": "no"}, {"question": "Is it a monitor?", "response": "no"}, {"question": "Is it a smart speaker?", "response": "no"}, {"question": "Is it a modem?", "response": "no"}, {"question": "Is it a scanner?", "response": "no"}]}
{"index": 63, "id": "7a66214d-e25c-4f59-b291-ba80e2bcb6c5", "answer": "Guitar", "category": "instrument", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something you can hold in one hand?", "response": "no"}, {"question": "Is it primarily found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it larger than a microwave oven?", "response": "yes"}, {"question": "Is it something you watch visual media on?", "response": "no"}, {"question": "Is it commonly used for playing games?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it commonly found in a home entertainment system?", "response": "no"}, {"question": "Is it primarily used for audio playback?", "response": "no"}, {"question": "Is it primarily used for productivity or work-related tasks?", "response": "no"}, {"question": "Is it primarily used for storing or preserving items?", "response": "no"}, {"question": "Is it primarily used for climate control?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "yes"}, {"question": "Is it a piano?", "response": "no"}, {"question": "Is it an organ?", "response": "no"}, {"question": "Is it a drum?", "response": "no"}, {"question": "Is it a guitar?", "response": "yes"}]}
{"index": 5, "id": "68be475d-6197-494e-8792-77ba0d2b6408", "answer": "Harry Potter", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person primarily known for contributions in the arts, entertainment, or sports?", "response": "yes"}, {"question": "Is this person primarily known for their work in entertainment (film, TV, music) rather than sports?", "response": "yes"}, {"question": "Is this person primarily known as a musician or singer?", "response": "no"}, {"question": "Is this person primarily known as an actor in film or television?", "response": "no"}, {"question": "Is this person primarily known for their work as a comedian or humorist?", "response": "no"}, {"question": "Is this person primarily known as a television personality or host?", "response": "no"}, {"question": "Is this person primarily known for their work as a writer or author?", "response": "no"}, {"question": "Is this person primarily known for their work as a director or filmmaker?", "response": "no"}, {"question": "Is this person primarily known for their work as a dancer or choreographer?", "response": "no"}, {"question": "Is this person primarily known for their work in the fashion industry?", "response": "no"}, {"question": "Is this person primarily known for their work as a visual artist (such as painter, sculptor, photographer, or similar)?", "response": "no"}, {"question": "Is this person primarily known for their work as a chef or in the culinary arts?", "response": "no"}, {"question": "Is this person primarily known for their work as a magician or illusionist?", "response": "no"}, {"question": "Is this person primarily known for their work in the field of dance music, DJing, or electronic music performance?", "response": "no"}, {"question": "Is this person primarily known for their work in the field of fashion modeling?", "response": "no"}, {"question": "Is this person primarily known for their work as a YouTuber or online content creator?", "response": "no"}, {"question": "Is it Taylor Swift?", "response": "no"}]}
{"index": 195, "id": "4791da80-bea8-41ae-b36d-e387cc14cc5f", "answer": "Credit card", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance?", "response": "no"}, {"question": "Is it primarily used in an office or for work-related tasks?", "response": "no"}, {"question": "Is it primarily associated with personal care or health?", "response": "no"}, {"question": "Is it primarily associated with technology or electronics?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "no"}, {"question": "Is it primarily used for security or protection?", "response": "no"}, {"question": "Is it primarily used for decoration or aesthetic purposes?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for timekeeping?", "response": "no"}, {"question": "Is it primarily used for sleeping or resting?", "response": "n/a"}, {"question": "Is it primarily used for travel or luggage purposes?", "response": "no"}, {"question": "Is it a chair?", "response": "no"}]}
{"index": 109, "id": "0d54e8ce-fbd3-4342-a2aa-5be4f42b57dd", "answer": "Justice", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it manmade?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for entertainment or recreation?", "response": "no"}, {"question": "Is it primarily used in workplaces or businesses?", "response": "no"}, {"question": "Is it related to technology or electronics?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "n/a"}, {"question": "Is it something you can eat or drink?", "response": "no"}, {"question": "Is it used in sports or games?", "response": "yes"}, {"question": "Is it a ball?", "response": "no"}, {"question": "Is it used in equipment for outdoor sports?", "response": "n/a"}, {"question": "Is it equipment used in an individual sport?", "response": "no"}, {"question": "Is it equipment used in a team sport?", "response": "no"}, {"question": "Is it something worn or used by participants during a sport or game?", "response": "no"}, {"question": "Is it a board used in a game?", "response": "no"}, {"question": "Is it used to keep score or time during a sport or game?", "response": "no"}, {"question": "Is it a card?", "response": "yes"}, {"question": "Is it an Ace?", "response": "no"}, {"question": "Is it the Joker card?", "response": "no"}]}
{"index": 196, "id": "db56ec61-5458-4151-ab8b-3bb105c25040", "answer": "Bed", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment or leisure activities?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for work or professional purposes?", "response": "no"}, {"question": "Is it primarily used for personal hygiene or cleaning?", "response": "no"}, {"question": "Is it primarily used as a form of transportation?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for safety or security purposes?", "response": "no"}, {"question": "Is it primarily used for decorative purposes?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it primarily used in health or medical contexts?", "response": "no"}, {"question": "Is it electronic or powered by electricity?", "response": "no"}, {"question": "Is it primarily made of paper or cardboard?", "response": "no"}, {"question": "Is it primarily used for clothing or worn on the body?", "response": "no"}, {"question": "Is it commonly used in the bathroom?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily used for educational purposes?", "response": "no"}, {"question": "Is it a chair?", "response": "no"}]}
{"index": 128, "id": "1b58eb6f-d1d5-40f6-b1dc-fe7630d7163f", "answer": "Golf", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "yes"}, {"question": "Is it designed to carry more than one person?", "response": "yes"}, {"question": "Is it commonly used for public transportation?", "response": "no"}, {"question": "Is it primarily used for recreation or leisure activities?", "response": "yes"}, {"question": "Is it powered primarily by a motor or engine?", "response": "yes"}, {"question": "Is it designed to travel on water?", "response": "no"}, {"question": "Is it designed for off-road use?", "response": "no"}, {"question": "Is it designed to travel in the air?", "response": "yes"}, {"question": "Is it heavier than 1,000 kilograms?", "response": "yes"}, {"question": "Is it primarily used for commercial passenger air travel?", "response": "no"}, {"question": "Is it a helicopter?", "response": "no"}, {"question": "Is it a private jet?", "response": "no"}, {"question": "Is it a hot air balloon?", "response": "no"}, {"question": "Is it a glider?", "response": "no"}, {"question": "Is it a seaplane?", "response": "no"}, {"question": "Is it a blimp?", "response": "no"}]}
{"index": 189, "id": "6cbd51a8-1b1b-44e6-905a-110af8de8489", "answer": "Car", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for health or personal care?", "response": "no"}, {"question": "Is it primarily used for work or study?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "yes"}, {"question": "Is it larger than a bicycle?", "response": "yes"}, {"question": "Is it primarily used on roads?", "response": "yes"}, {"question": "Is it primarily used to carry multiple passengers?", "response": "yes"}, {"question": "Is it a bus?", "response": "no"}, {"question": "Is it a taxi?", "response": "no"}, {"question": "Is it a limousine?", "response": "no"}, {"question": "Is it a van?", "response": "no"}]}
{"index": 75, "id": "12f21ef5-d0d6-4905-af7b-8f9176704653", "answer": "Airplane", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it typically found indoors?", "response": "no"}, {"question": "Is it made by humans?", "response": "yes"}, {"question": "Is it used for transportation?", "response": "yes"}, {"question": "Is it capable of flying?", "response": "yes"}, {"question": "Is it primarily used for military purposes?", "response": "no"}, {"question": "Is it typically used for commercial passenger travel?", "response": "yes"}, {"question": "Is it primarily powered by jet engines?", "response": "no"}, {"question": "Is it a type of propeller-driven airplane?", "response": "no"}, {"question": "Is it lighter than air and able to float using gas (e.g., a balloon or airship)?", "response": "no"}, {"question": "Is it a helicopter?", "response": "no"}, {"question": "Is it a glider?", "response": "no"}, {"question": "Is it a hot air balloon?", "response": "no"}, {"question": "Is it a seaplane?", "response": "no"}, {"question": "Is it a blimp?", "response": "no"}, {"question": "Is it a space shuttle?", "response": "no"}, {"question": "Is it a rocket?", "response": "no"}, {"question": "Is it a drone?", "response": "no"}, {"question": "Is it a zeppelin?", "response": "no"}, {"question": "Is it a Concorde?", "response": "no"}]}
{"index": 74, "id": "190bcb5a-bc48-4f12-9c23-be95cbb6484b", "answer": "Backpack", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it typically used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for work or office purposes?", "response": "no"}, {"question": "Is it primarily used for personal hygiene or cleaning?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "yes"}, {"question": "Is it primarily used to store clothing?", "response": "no"}, {"question": "Is it primarily used to store food or drinks?", "response": "no"}, {"question": "Is it primarily used to store documents or papers?", "response": "no"}, {"question": "Is it primarily used to store money or valuables?", "response": "no"}, {"question": "Is it primarily used to store media like books, music, or movies?", "response": "yes"}, {"question": "Is it primarily used to store books?", "response": "no"}, {"question": "Is it primarily used to store music or movies?", "response": "no"}, {"question": "Is it primarily used to store video games?", "response": "no"}, {"question": "Is it primarily used to store photographs?", "response": "no"}, {"question": "Is it a bookshelf?", "response": "no"}, {"question": "Is it a media cabinet?", "response": "no"}]}
{"index": 184, "id": "afbffec3-56e6-4dec-b215-5a97e77c4b0d", "answer": "Microwave", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 15, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it commonly used in kitchens?", "response": "yes"}, {"question": "Is it primarily used for preparing food rather than eating or storing it?", "response": "yes"}, {"question": "Is it primarily used for cutting food?", "response": "no"}, {"question": "Is it primarily used for heating or cooking food?", "response": "yes"}, {"question": "Is it powered by electricity?", "response": "yes"}, {"question": "Is it used primarily for making hot beverages?", "response": "no"}, {"question": "Is it primarily used for baking food?", "response": "no"}, {"question": "Is it primarily used for toasting food?", "response": "no"}, {"question": "Is it primarily used for blending or mixing food?", "response": "no"}, {"question": "Is it primarily used for cooking food by microwaving?", "response": "yes"}, {"question": "Is it a microwave oven?", "response": "yes"}]}
{"index": 68, "id": "4de24c21-7028-4110-b432-dccd3066c9fc", "answer": "Lock", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for food or drink preparation?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used for cleaning or laundry?", "response": "no"}, {"question": "Is it primarily used for communication or information?", "response": "no"}, {"question": "Is it typically found in a bathroom?", "response": "yes"}, {"question": "Is it primarily used for personal hygiene?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "no"}, {"question": "Is it primarily used for safety or health?", "response": "yes"}, {"question": "Is it an electrical device?", "response": "yes"}, {"question": "Is it a smoke detector?", "response": "no"}, {"question": "Is it a bathroom scale?", "response": "no"}, {"question": "Is it a hair dryer?", "response": "no"}, {"question": "Is it a bathroom fan?", "response": "no"}, {"question": "Is it an electric toothbrush?", "response": "no"}, {"question": "Is it an electric shaver?", "response": "no"}, {"question": "Is it a nightlight?", "response": "no"}]}
{"index": 162, "id": "635222c7-1e2c-4589-b9ad-f3d594486e01", "answer": "Stranger Things", "category": "fiction", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "n/a"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it primarily used for playing video games?", "response": "no"}, {"question": "Is it primarily used for listening to audio or music?", "response": "no"}, {"question": "Is it primarily used for watching visual media (e.g., TV shows, movies, videos)?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for reading?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "no"}, {"question": "Is it primarily used for producing or creating something?", "response": "no"}, {"question": "Is it portable or handheld?", "response": "n/a"}, {"question": "Is it primarily used for controlling or interacting with other electronic devices?", "response": "no"}, {"question": "Is it commonly found in the living room?", "response": "yes"}, {"question": "Is it primarily used for heating or temperature control?", "response": "n/a"}, {"question": "Is it a clock?", "response": "no"}, {"question": "Is it a television?", "response": "yes"}]}
{"index": 100, "id": "5f9f2dda-78cb-41ab-b8a0-31bb86884f30", "answer": "Pancake", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for work or utility purposes?", "response": "no"}, {"question": "Is it commonly found in the kitchen?", "response": "yes"}, {"question": "Is it edible?", "response": "yes"}, {"question": "Is it sweet?", "response": "yes"}, {"question": "Is it a baked good?", "response": "no"}, {"question": "Is it commonly eaten as a dessert?", "response": "no"}, {"question": "Is it a type of fruit?", "response": "no"}, {"question": "Is it a type of candy?", "response": "no"}, {"question": "Is it a type of beverage?", "response": "no"}, {"question": "Is it often used as a cooking ingredient?", "response": "no"}, {"question": "Is it commonly spread on bread or toast?", "response": "no"}, {"question": "Is it a type of dairy product?", "response": "no"}, {"question": "Is it packaged as an individual item for snacking?", "response": "no"}, {"question": "Is it considered a condiment?", "response": "no"}, {"question": "Is it classified as a breakfast food?", "response": "yes"}, {"question": "Is it cereal?", "response": "no"}]}
{"index": 121, "id": "6bc4d840-f270-479c-b920-f81e286c206a", "answer": "Fear", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature (not created or altered by humans)?", "response": "yes"}, {"question": "Is it a solid material?", "response": "no"}, {"question": "Is it a liquid?", "response": "no"}, {"question": "Is it a gas?", "response": "no"}, {"question": "Is it an abstract concept rather than a physical thing?", "response": "yes"}, {"question": "Is it related to mathematics?", "response": "no"}, {"question": "Is it related to science or scientific study?", "response": "yes"}, {"question": "Is it related to physics?", "response": "no"}, {"question": "Is it related to chemistry?", "response": "yes"}, {"question": "Is it essential for life on Earth?", "response": "no"}, {"question": "Is it related to the periodic table?", "response": "no"}, {"question": "Is it related to acids and bases?", "response": "no"}, {"question": "Is it related to chemical reactions?", "response": "yes"}, {"question": "Is it related to the concept of energy?", "response": "yes"}, {"question": "Is it the concept of entropy?", "response": "no"}, {"question": "Is it the concept of activation energy?", "response": "no"}, {"question": "Is it the concept of catalysis?", "response": "no"}, {"question": "Is it the concept of exothermic reaction?", "response": "no"}]}
{"index": 10, "id": "2224af93-6396-4b11-9371-240a53fa92c1", "answer": "Barack Obama", "category": "person", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it human?", "response": "yes"}, {"question": "Is this person real rather than fictional?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person primarily known for achievements in entertainment?", "response": "no"}, {"question": "Is this person primarily known for achievements in politics or government?", "response": "yes"}, {"question": "Is this person primarily known for being the leader of a country?", "response": "yes"}, {"question": "Is this person currently the head of a government?", "response": "no"}, {"question": "Has this person ever served as the head of government of the United States?", "response": "yes"}, {"question": "Did this person serve as President of the United States in the 21st century?", "response": "yes"}, {"question": "Did this person serve as President after 2008?", "response": "yes"}, {"question": "Did this person serve two terms as President?", "response": "yes"}, {"question": "Is it Barack Obama?", "response": "yes"}]}
{"index": 193, "id": "e3e4c8b6-a0c8-4442-b144-384d472aa639", "answer": "Refrigerator", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 14, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something that is man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for preparing or serving food?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "yes"}, {"question": "Is it typically found in a bedroom?", "response": "no"}, {"question": "Is it primarily found in a kitchen?", "response": "yes"}, {"question": "Is it primarily used to store food?", "response": "yes"}, {"question": "Is it kept cold to preserve its contents?", "response": "yes"}, {"question": "Is it an appliance?", "response": "yes"}, {"question": "Is it a refrigerator?", "response": "yes"}]}
{"index": 140, "id": "00e47594-abdb-4838-a522-e8420e614307", "answer": "Dancing", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "yes"}, {"question": "Is it primarily electronic or requires electricity to function?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it primarily made of paper or cardboard?", "response": "n/a"}, {"question": "Is it primarily used for playing games?", "response": "no"}, {"question": "Is it something you can wear?", "response": "no"}, {"question": "Is it commonly used to listen to music?", "response": "no"}, {"question": "Is it something you primarily read?", "response": "no"}, {"question": "Is it commonly used to watch something?", "response": "no"}, {"question": "Is it primarily used for reading or viewing images, such as photographs or artwork?", "response": "no"}, {"question": "Is it commonly associated with relaxation or comfort in the home?", "response": "yes"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it soft to the touch?", "response": "n/a"}, {"question": "Is it a pillow?", "response": "no"}, {"question": "Is it a blanket?", "response": "no"}, {"question": "Is it a sofa?", "response": "no"}]}
{"index": 47, "id": "83eae59f-f980-4430-b6e7-0caf48ffb5ca", "answer": "Kangaroo", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 15, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it a domesticated animal?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it native to Africa?", "response": "no"}, {"question": "Is it commonly found in North America?", "response": "no"}, {"question": "Is it a carnivore?", "response": "no"}, {"question": "Is it native to Asia?", "response": "no"}, {"question": "Is it native to Australia?", "response": "yes"}, {"question": "Is it a marsupial?", "response": "yes"}, {"question": "Is it known for hopping as its primary mode of movement?", "response": "yes"}, {"question": "Is it the largest marsupial in the world?", "response": "yes"}, {"question": "Is it a kangaroo?", "response": "yes"}]}
{"index": 41, "id": "68847ca7-dbab-4189-ba5c-622bff309c20", "answer": "Tiger", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 15, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it domesticated?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it native to Africa?", "response": "no"}, {"question": "Is it primarily found in Asia?", "response": "yes"}, {"question": "Does it have a trunk?", "response": "no"}, {"question": "Is it a carnivore?", "response": "yes"}, {"question": "Is it known for living in water or near aquatic environments?", "response": "no"}, {"question": "Is it a big cat (e.g., tiger, lion, leopard, jaguar, snow leopard)?", "response": "yes"}, {"question": "Is it striped?", "response": "yes"}, {"question": "Is it found in colder, mountainous regions rather than jungles or grasslands?", "response": "no"}, {"question": "Is it a tiger?", "response": "yes"}]}
{"index": 1, "id": "df4d6fd7-10d0-4304-8e60-80a320a219b6", "answer": "Albert Einstein", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a physical object?", "response": "no"}, {"question": "Is it an element or force rather than a location?", "response": "no"}, {"question": "Is it a specific place?", "response": "no"}, {"question": "Is it a type of natural environment or landscape?", "response": "no"}, {"question": "Is it a natural concept or phenomenon, such as time, gravity, or weather?", "response": "no"}, {"question": "Is it commonly associated with a body of water?", "response": "no"}, {"question": "Is it a type of mineral or rock?", "response": "no"}, {"question": "Is it a type of energy?", "response": "no"}, {"question": "Is it a naturally occurring substance essential for life (such as air or water)?", "response": "no"}, {"question": "Is it something that can be detected using any of the human senses?", "response": "yes"}, {"question": "Is it a specific natural formation or feature (like volcano, canyon, or glacier)?", "response": "no"}, {"question": "Is it a type of weather?\n", "response": "no"}, {"question": "Is it a geographic region or area?", "response": "no"}, {"question": "Is it a smell?", "response": "n/a"}, {"question": "Is it a sound?", "response": "no"}, {"question": "Is it a color?", "response": "no"}, {"question": "Is it light?", "response": "n/a"}]}
{"index": 192, "id": "b0142240-5d2e-41a4-afd8-31de6b822523", "answer": "Lamp", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for cleaning or hygiene?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for safety or protection?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "yes"}, {"question": "Is it portable and commonly moved from place to place?", "response": "yes"}, {"question": "Is it powered by batteries?", "response": "yes"}, {"question": "Is it commonly used outdoors?", "response": "no"}, {"question": "Is it primarily used as a flashlight?", "response": "no"}, {"question": "Is it commonly used as a night light?", "response": "yes"}, {"question": "Is it designed to plug directly into an electrical outlet?", "response": "yes"}, {"question": "Is it shaped like or designed to look like an animal or cartoon character?", "response": "yes"}, {"question": "Is it shaped like a cartoon character?", "response": "yes"}, {"question": "Is it Pikachu?", "response": "no"}]}
{"index": 22, "id": "3e0ed1a7-6efd-4c71-8ee1-e7dd77d3f066", "answer": "Mount Everest", "category": "place", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it composed primarily of minerals or non-living matter?", "response": "yes"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it naturally occurring on or above the Earth's surface (not underground)?", "response": "yes"}, {"question": "Is it larger than a house?", "response": "yes"}, {"question": "Is it larger than a mountain?", "response": "no"}, {"question": "Is it a mountain?", "response": "yes"}, {"question": "Is it located in Asia?", "response": "yes"}, {"question": "Is it part of the Himalayas?", "response": "yes"}, {"question": "Is it the highest mountain in the world?", "response": "yes"}, {"question": "Is it Mount Everest?", "response": "yes"}]}
{"index": 86, "id": "e7475374-43db-456c-a959-ce7075895a4b", "answer": "Chocolate", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in a house?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for preparing or cooking food?", "response": "no"}, {"question": "Is it primarily used for eating or drinking?", "response": "yes"}, {"question": "Is it typically made of glass?", "response": "no"}, {"question": "Is it typically made of metal?", "response": "no"}, {"question": "Is it typically made of ceramic?", "response": "no"}, {"question": "Is it typically made of plastic?", "response": "no"}, {"question": "Is it typically made of wood?", "response": "no"}, {"question": "Is it disposable after one use?", "response": "yes"}, {"question": "Is it commonly used for drinking?", "response": "yes"}, {"question": "Is it a paper cup?", "response": "no"}, {"question": "Is it a disposable straw?", "response": "no"}, {"question": "Is it a disposable plastic cup?", "response": "no"}, {"question": "Is it a disposable paper plate?", "response": "no"}, {"question": "Is it a disposable plastic spoon?", "response": "no"}, {"question": "Is it a disposable paper cup lid?", "response": "no"}, {"question": "Is it a disposable paper napkin?", "response": "no"}]}
{"index": 48, "id": "0bb5cc32-5483-47ad-a120-a2826a2399d9", "answer": "Wolf", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 16, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a domesticated animal?", "response": "no"}, {"question": "Is it a wild animal found primarily on land?", "response": "yes"}, {"question": "Is it larger than a human?", "response": "no"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly found in North America?", "response": "yes"}, {"question": "Is it a carnivore?", "response": "yes"}, {"question": "Is it commonly considered dangerous to humans?", "response": "yes"}, {"question": "Is it a type of big cat?", "response": "no"}, {"question": "Is it native to North America?", "response": "yes"}, {"question": "Is it a type of bear?", "response": "no"}, {"question": "Is it a member of the canine family?", "response": "yes"}, {"question": "Is it commonly known for hunting in packs?", "response": "yes"}, {"question": "Is it a wolf?", "response": "yes"}]}
{"index": 107, "id": "e91a179a-adda-4477-81c7-c9661e51d8cd", "answer": "Knowledge", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure activities?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintaining a household?", "response": "no"}, {"question": "Is it primarily used in the bedroom?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used in an office or workspace?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for health or medical purposes?", "response": "no"}, {"question": "Is it primarily used for measurement or timekeeping?", "response": "no"}, {"question": "Is it primarily used for decoration or aesthetic purposes?", "response": "no"}, {"question": "Is it primarily used for light or illumination?", "response": "no"}, {"question": "Is it primarily used for repair or fixing things?", "response": "no"}, {"question": "Is it primarily used for temperature control?", "response": "no"}, {"question": "Is it a mirror?", "response": "no"}]}
{"index": 137, "id": "d7266237-c672-49b0-a7be-2a1667f28f37", "answer": "Skateboarding", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it made by humans?", "response": "yes"}, {"question": "Is it commonly used in households?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it primarily associated with sports or recreation?", "response": "yes"}, {"question": "Is it used in a team sport?", "response": "no"}, {"question": "Is it used in water sports?", "response": "no"}, {"question": "Is it used while riding or driving something?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it protective equipment?", "response": "no"}, {"question": "Is it used in winter sports?", "response": "no"}, {"question": "Is it primarily used for racing?", "response": "no"}, {"question": "Is it used in cycling?", "response": "n/a"}, {"question": "Is it used in golf?", "response": "no"}, {"question": "Is it used in skateboarding?", "response": "n/a"}, {"question": "Is it used in climbing?", "response": "no"}, {"question": "Is it used in snow sports such as skiing or snowboarding?", "response": "no"}, {"question": "Is it used in equestrian sports?", "response": "no"}, {"question": "Is it a helmet?", "response": "no"}, {"question": "Is it a surfboard?", "response": "no"}]}
{"index": 168, "id": "e605c43b-c8a5-4973-b551-81f0f032fa63", "answer": "Lightning", "category": "nature", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 11, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature without human involvement?", "response": "yes"}, {"question": "Is it a physical place?", "response": "no"}, {"question": "Is it a tangible object?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "no"}, {"question": "Is it a natural phenomenon?", "response": "yes"}, {"question": "Is it related to precipitation (such as rain, snow, or hail)?", "response": "yes"}, {"question": "Is it commonly associated with thunderstorms?", "response": "yes"}, {"question": "Is it hail?", "response": "no"}, {"question": "Is it lightning?", "response": "yes"}]}
{"index": 103, "id": "7c6e3664-f299-4bf1-8ac4-386527632e5f", "answer": "Freedom", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it something found in nature?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "yes"}, {"question": "Is it related to mathematics?", "response": "yes"}, {"question": "Is it a number?", "response": "no"}, {"question": "Is it a geometric concept?", "response": "no"}, {"question": "Is it related to arithmetic operations?", "response": "no"}, {"question": "Is it related to logic?", "response": "no"}, {"question": "Is it related to algebra?", "response": "no"}, {"question": "Is it related to probability or statistics?", "response": "no"}, {"question": "Is it a concept used in calculus?", "response": "no"}, {"question": "Is it a concept used in set theory?", "response": "no"}, {"question": "Is it related to mathematical functions?", "response": "no"}, {"question": "Is it related to symmetry in mathematics?", "response": "no"}, {"question": "Is it a mathematical proof?", "response": "no"}, {"question": "Is it related to sequences or series in mathematics?", "response": "no"}, {"question": "Is it related to dimensions or dimensionality in mathematics?", "response": "no"}, {"question": "Is it related to mathematical infinity?", "response": "no"}, {"question": "Is it zero?", "response": "n/a"}]}
{"index": 56, "id": "85719fd2-8557-4ca3-b0cc-8eee4b27e130", "answer": "Bear", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it a wild animal commonly found in Africa?", "response": "no"}, {"question": "Is it native to North America?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it a carnivore?", "response": "yes"}, {"question": "Is it commonly found in forests?", "response": "yes"}, {"question": "Is it known for hunting in packs?", "response": "no"}, {"question": "Is it primarily nocturnal?", "response": "no"}, {"question": "Is it a bear?", "response": "yes"}]}
{"index": 15, "id": "690d30f0-82f0-45a0-8db4-6c6f032b2195", "answer": "Isaac Newton", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it something solid?", "response": "yes"}, {"question": "Is it a mineral or rock?", "response": "no"}, {"question": "Is it something composed primarily of metal?", "response": "n/a"}, {"question": "Is it something formed by a process involving water?", "response": "n/a"}, {"question": "Is it something produced by a plant or tree?", "response": "no"}, {"question": "Is it something that forms as a result of geological processes?", "response": "no"}, {"question": "Is it something that can be found in the atmosphere?", "response": "no"}, {"question": "Is it something that is or was once part of an animal?", "response": "n/a"}, {"question": "Is it a crystal?", "response": "no"}, {"question": "Is it something naturally formed by volcanic activity?", "response": "n/a"}, {"question": "Is it commonly found in bodies of water such as lakes, rivers, or oceans?", "response": "no"}, {"question": "Is it something that can be touched without special equipment?", "response": "yes"}, {"question": "Is it something commonly found outdoors on the ground?", "response": "no"}, {"question": "Is it something commonly found indoors?", "response": "no"}, {"question": "Is it a celestial body?", "response": "no"}, {"question": "Is it something related to the weather?", "response": "no"}, {"question": "Is it a mountain?", "response": "no"}]}
{"index": 59, "id": "387d1584-ac33-4880-8531-8a7552df2613", "answer": "Whale", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it domesticated by humans?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Does it primarily live in Africa?", "response": "no"}, {"question": "Does it primarily live in the ocean?", "response": "yes"}, {"question": "Is it a type of whale?", "response": "no"}, {"question": "Does it have teeth?", "response": "yes"}, {"question": "Is it a type of shark?", "response": "no"}, {"question": "Is it known for being a large predator?", "response": "yes"}, {"question": "Is it a type of seal or sea lion?", "response": "no"}, {"question": "Does it have tusks?", "response": "yes"}, {"question": "Is it a walrus?", "response": "no"}, {"question": "Is it a narwhal?", "response": "no"}, {"question": "Does it live in Arctic regions?", "response": "yes"}, {"question": "Is it a walrus-related marine mammal besides narwhal, such as a bearded seal?", "response": "no"}, {"question": "Is it an orca?", "response": "no"}, {"question": "Is it a narwhal?", "response": "no"}]}
{"index": 149, "id": "5377f0e2-cf67-4c52-a344-1aad1807945b", "answer": "The Godfather", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it a game?", "response": "yes"}, {"question": "Is it commonly played with cards?", "response": "no"}, {"question": "Is it commonly played on a board?", "response": "no"}, {"question": "Is it a sport?", "response": "no"}, {"question": "Is it commonly played outdoors?", "response": "no"}, {"question": "Is it a puzzle?", "response": "no"}, {"question": "Is it commonly played with pieces or tokens?", "response": "no"}, {"question": "Is it a word or trivia game?", "response": "no"}, {"question": "Is it a toy?", "response": "no"}, {"question": "Is it a party game?", "response": "no"}, {"question": "Is it a video game?", "response": "yes"}, {"question": "Is it a Nintendo game?", "response": "no"}, {"question": "Is it a PlayStation game?", "response": "yes"}, {"question": "Was it developed by a Japanese company?", "response": "no"}, {"question": "Was it released before 2010?", "response": "yes"}, {"question": "Is it Grand Theft Auto?", "response": "no"}]}
{"index": 88, "id": "59a6f361-9a15-4cb8-8aa8-da816b5ab47f", "answer": "Hamburger", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for work or practical purposes in a household?", "response": "no"}, {"question": "Is it commonly found in the kitchen?", "response": "yes"}, {"question": "Is it related to food preparation or cooking?", "response": "yes"}, {"question": "Is it primarily an electrical appliance?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily made of glass or ceramic?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily made of stone or clay?", "response": "no"}, {"question": "Is it primarily made from silicone or rubber?", "response": "no"}, {"question": "Is it primarily made from a natural material such as bamboo, cork, or bone?", "response": "no"}, {"question": "Is it primarily made from any type of fabric or textile?", "response": "no"}, {"question": "Is it primarily disposable after one use?", "response": "yes"}, {"question": "Is it a paper plate?", "response": "no"}, {"question": "Is it a plastic cup?", "response": "no"}]}
{"index": 136, "id": "053137ad-4c07-4bba-a983-16b504aadcfb", "answer": "Fishing", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "n/a"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it primarily electronic?", "response": "no"}, {"question": "Is it a type of game?", "response": "no"}, {"question": "Is it commonly used outdoors?", "response": "yes"}, {"question": "Is it something that requires physical activity to use?", "response": "yes"}, {"question": "Is it a type of sports equipment?", "response": "no"}, {"question": "Is it typically associated with water activities?", "response": "yes"}, {"question": "Is it commonly inflated or filled with air?", "response": "n/a"}, {"question": "Is it commonly used as a flotation device?", "response": "no"}, {"question": "Is it commonly used for transportation on water?", "response": "no"}, {"question": "Is it commonly used for playing on the beach?", "response": "yes"}, {"question": "Is it typically used for digging or moving sand?", "response": "no"}, {"question": "Is it used for building sand structures?", "response": "no"}, {"question": "Is it used for hitting or striking objects?", "response": "no"}, {"question": "Is it something you throw or toss during beach activities?", "response": "no"}, {"question": "Is it commonly used to provide shade at the beach?", "response": "n/a"}, {"question": "Is it a frisbee?", "response": "no"}]}
{"index": 119, "id": "9bf2b993-b9dd-4ef0-9176-aa2941f20a89", "answer": "Nature", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it naturally found on Earth?", "response": "yes"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a place?", "response": "yes"}, {"question": "Is it a natural landform (such as a mountain, valley, or canyon)?", "response": "no"}, {"question": "Is it located in or closely associated with water (such as an ocean, lake, or river)?", "response": "yes"}, {"question": "Is it an island?", "response": "no"}, {"question": "Is it a river?", "response": "no"}, {"question": "Is it an ocean?", "response": "no"}, {"question": "Is it a lake?", "response": "no"}, {"question": "Is it a waterfall?", "response": "no"}, {"question": "Is it a bay?", "response": "no"}, {"question": "Is it a sea?", "response": "no"}, {"question": "Is it a peninsula?", "response": "n/a"}, {"question": "Is it a gulf?", "response": "no"}, {"question": "Is it a strait?", "response": "no"}, {"question": "Is it a fjord?", "response": "no"}, {"question": "Is it a coral reef?", "response": "no"}, {"question": "Is it a beach?", "response": "no"}]}
{"index": 53, "id": "faf09c69-b3c6-4d77-99ad-47e48c259906", "answer": "Cat", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a domestic animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet in households?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly kept primarily for companionship rather than work or utility?", "response": "yes"}, {"question": "Is it commonly known for being able to bark?", "response": "no"}, {"question": "Is it commonly kept as a pet for its ability to mimic human speech?", "response": "no"}, {"question": "Is it commonly associated with being kept indoors more than outdoors?", "response": "yes"}, {"question": "Is it known for being agile and climbing or jumping onto furniture?", "response": "yes"}, {"question": "Is it known for purring?", "response": "yes"}, {"question": "Is it a cat?", "response": "yes"}]}
{"index": 12, "id": "ed75bff5-1268-40f9-ba22-25b8e48dea55", "answer": "Steve Jobs", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it something solid?", "response": "yes"}, {"question": "Is it a mineral or made primarily of minerals?", "response": "no"}, {"question": "Is it typically composed of organic material?", "response": "yes"}, {"question": "Is it part of a plant?", "response": "n/a"}, {"question": "Is it something that was once part of a living organism?", "response": "n/a"}, {"question": "Is it produced by an animal?", "response": "yes"}, {"question": "Is it something commonly used by humans?", "response": "n/a"}, {"question": "Is it a type of shell?", "response": "n/a"}, {"question": "Is it produced by an insect?", "response": "n/a"}, {"question": "Is it produced by a bird?", "response": "n/a"}, {"question": "Is it produced by a mammal?", "response": "yes"}, {"question": "Is it a body part?", "response": "no"}, {"question": "Is it a type of milk?", "response": "no"}, {"question": "Is it produced by a mammal for nourishment other than milk?", "response": "n/a"}, {"question": "Is it produced by a mammal as a waste product?", "response": "n/a"}, {"question": "Is it fur?", "response": "no"}, {"question": "Is it wool?", "response": "n/a"}]}
{"index": 57, "id": "b6219a86-6ff1-443f-9396-13cf4b0f5947", "answer": "Octopus", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 17, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Does it primarily live in water?", "response": "yes"}, {"question": "Is it a fish?", "response": "no"}, {"question": "Is it a bird?", "response": "no"}, {"question": "Is it an amphibian?", "response": "no"}, {"question": "Is it a reptile?", "response": "no"}, {"question": "Is it an invertebrate?", "response": "yes"}, {"question": "Is it commonly known for having more than eight legs?", "response": "no"}, {"question": "Is it an arthropod?", "response": "no"}, {"question": "Is it a mollusk?", "response": "yes"}, {"question": "Is it commonly found in the ocean?", "response": "yes"}, {"question": "Is it known for having a shell?", "response": "no"}, {"question": "Is it known for having multiple arms or tentacles?", "response": "yes"}, {"question": "Is it an octopus?", "response": "yes"}]}
{"index": 19, "id": "ab446b36-d5ef-48ac-9af8-576c4e2af9f4", "answer": "Picasso", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it something you can eat?", "response": "no"}, {"question": "Is it non-living but naturally occurring, like a mineral or a body of water?", "response": "no"}, {"question": "Is it a creature?", "response": "n/a"}, {"question": "Is it classified as a phenomenon?", "response": "no"}, {"question": "Is it related to weather or climate?", "response": "no"}, {"question": "Is it something that is part of the natural landscape, like a mountain or river?", "response": "no"}, {"question": "Is it a substance?", "response": "no"}, {"question": "Is it related to fiction?", "response": "no"}, {"question": "Is it a type of sport?", "response": "no"}, {"question": "Is it an animal?", "response": "n/a"}, {"question": "Is it a type of instrument?", "response": "no"}, {"question": "Is it related to astronomy or outer space?", "response": "no"}, {"question": "Is it related to plants?", "response": "no"}, {"question": "Is it classified as a geometric shape?", "response": "n/a"}, {"question": "Is it gravity?", "response": "no"}]}
{"index": 67, "id": "0e9e0c13-c29e-4254-a042-c538ba441bc9", "answer": "Bicycle", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily found in the kitchen?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "yes"}, {"question": "Is it small enough to be easily carried by one person?", "response": "no"}, {"question": "Is it a type of vehicle that travels on roads?", "response": "yes"}, {"question": "Is it typically used to transport more than five people?", "response": "no"}, {"question": "Is it primarily designed to carry cargo rather than people?", "response": "no"}, {"question": "Is it usually described as having four wheels?", "response": "no"}, {"question": "Is it a motorcycle?", "response": "no"}, {"question": "Is it a bus?", "response": "no"}, {"question": "Is it a bicycle?", "response": "yes"}]}
{"index": 13, "id": "52b504c3-60f5-43e7-affb-81d3ac2ae58e", "answer": "Michael Jordan", "category": "person", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 14, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person real (not fictional)?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person primarily known for their work in entertainment (such as film, music, or television)?", "response": "no"}, {"question": "Is this person primarily known for their work in politics or government?", "response": "no"}, {"question": "Is this person primarily known for their work in science or technology?", "response": "no"}, {"question": "Is this person primarily known for their achievements in sports?", "response": "yes"}, {"question": "Is this person primarily known for their achievements in football (soccer)?", "response": "no"}, {"question": "Is this person primarily known for achievements in basketball?", "response": "yes"}, {"question": "Is this person primarily known for playing in the NBA?", "response": "yes"}, {"question": "Has this person won an NBA MVP award?", "response": "yes"}, {"question": "Has this person won more than three NBA championships?", "response": "yes"}, {"question": "Is this person Michael Jordan?", "response": "yes"}]}
{"index": 65, "id": "5eb096b5-c654-4144-8ab0-bd80b75fad02", "answer": "Camera", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintaining the home?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for storing or organizing items?", "response": "no"}, {"question": "Is it primarily used for personal care or hygiene?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for work or tasks related to electricity or electronics?", "response": "no"}, {"question": "Is it primarily used in an office or for work-related tasks?", "response": "no"}, {"question": "Is it primarily used for lighting or illumination?", "response": "no"}, {"question": "Is it primarily worn on the body?", "response": "no"}, {"question": "Is it primarily used in transportation?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it primarily used for decoration or aesthetic purposes?", "response": "no"}, {"question": "Is it primarily used for measuring or timekeeping?", "response": "no"}, {"question": "Is it a book?", "response": "no"}]}
{"index": 32, "id": "d12d73ce-526c-46d4-950b-370a2a85accd", "answer": "Rome", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a type of building or structure?", "response": "no"}, {"question": "Is it powered by electricity or fuel during typical use?", "response": "n/a"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it used for recreation or leisure activities?", "response": "yes"}, {"question": "Is it typically found in a park, playground, or outdoor recreational area?", "response": "no"}, {"question": "Is it a type of sports facility or field?", "response": "no"}, {"question": "Is it associated with water-based recreational activities?", "response": "no"}, {"question": "Is it a type of amusement ride?", "response": "no"}, {"question": "Is it something primarily used in sports stadiums or arenas?", "response": "no"}, {"question": "Is it something you would commonly see at a fair or festival?", "response": "no"}, {"question": "Is it a monument or statue?", "response": "no"}, {"question": "Is it a bridge?", "response": "no"}, {"question": "Is it a dam?", "response": "no"}, {"question": "Is it a stadium?", "response": "no"}, {"question": "Is it a roller coaster?", "response": "no"}]}
{"index": 151, "id": "f3409eca-8b20-4dc1-9da8-5c5da07b2a4e", "answer": "The Matrix", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in households?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "yes"}, {"question": "Is it primarily an electronic device?", "response": "no"}, {"question": "Is it primarily used for playing games?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it typically used for reading or holding printed material?", "response": "no"}, {"question": "Is it primarily used for listening to music or audio?", "response": "no"}, {"question": "Is it primarily used for comfort or relaxation (e.g., furniture, bedding)?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintaining the home?", "response": "no"}, {"question": "Is it primarily used for organizing or storing items?", "response": "no"}, {"question": "Is it an object primarily associated with visual entertainment, such as a television or board game?", "response": "yes"}, {"question": "Is it a board game?", "response": "no"}, {"question": "Is it a card game?", "response": "no"}, {"question": "Is it a puzzle?", "response": "no"}, {"question": "Is it a television?", "response": "no"}, {"question": "Is it a movie?", "response": "yes"}, {"question": "Is it Titanic?", "response": "no"}]}
{"index": 105, "id": "0cd64778-f50a-4f91-827f-217dd593dc87", "answer": "Happiness", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it something found in nature?", "response": "yes"}, {"question": "Is it something solid?", "response": "no"}, {"question": "Is it a liquid?", "response": "no"}, {"question": "Is it a gas?", "response": "no"}, {"question": "Is it something visible to the naked eye?", "response": "no"}, {"question": "Is it a physical force or energy?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it related to mathematics?", "response": "no"}, {"question": "Is it related to time?", "response": "yes"}, {"question": "Is it something measured or tracked in physics?", "response": "no"}, {"question": "Is it related to the measurement or understanding of calendar systems?", "response": "no"}, {"question": "Is it related to aging?", "response": "yes"}, {"question": "Is it associated with the passage of human life stages?", "response": "yes"}, {"question": "Is it adolescence?", "response": "no"}, {"question": "Is it adulthood?", "response": "no"}, {"question": "Is it childhood?", "response": "no"}, {"question": "Is it infancy?", "response": "no"}, {"question": "Is it old age?", "response": "no"}]}
{"index": 172, "id": "e400a50f-41da-41e6-923f-3daa58443f39", "answer": "Robot", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in a house?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it used primarily for transportation?", "response": "no"}, {"question": "Is it something electronic?", "response": "yes"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it a household appliance?", "response": "no"}, {"question": "Is it commonly used in an office or workplace?", "response": "yes"}, {"question": "Is it primarily used for data processing or computation?", "response": "no"}, {"question": "Is it primarily used for writing or printing documents?", "response": "no"}, {"question": "Is it a type of measurement instrument?", "response": "no"}, {"question": "Is it used for security or surveillance?", "response": "yes"}, {"question": "Is it a camera?", "response": "no"}, {"question": "Is it used to detect unauthorized entry?", "response": "yes"}, {"question": "Is it an alarm system?", "response": "no"}, {"question": "Is it a motion sensor?", "response": "no"}, {"question": "Is it a keypad?", "response": "no"}, {"question": "Is it a security sensor?", "response": "no"}]}
{"index": 157, "id": "23e8df07-475c-4fc4-97f2-12f0b328c43b", "answer": "Hogwarts", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in households?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it a building or structure?", "response": "yes"}, {"question": "Is it open to the public?", "response": "no"}, {"question": "Is it used for industrial or commercial purposes?", "response": "no"}, {"question": "Is it a place where people live?", "response": "yes"}, {"question": "Is it used to house a single family?", "response": "no"}, {"question": "Is it an apartment building?", "response": "no"}, {"question": "Is it a dormitory?", "response": "no"}, {"question": "Is it a hotel?", "response": "no"}, {"question": "Is it used as group housing, such as a barracks or monastery?", "response": "yes"}, {"question": "Is it a prison?", "response": "no"}, {"question": "Is it a monastery?", "response": "no"}, {"question": "Is it a boarding school?", "response": "yes"}, {"question": "Is it a private school?", "response": "yes"}, {"question": "Is it Phillips Exeter Academy?", "response": "no"}]}
{"index": 91, "id": "2d0caf68-3f9a-49fd-b43e-3f062749cabe", "answer": "Salad", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for preparing or cooking food?", "response": "no"}, {"question": "Is it primarily used for serving or eating food?", "response": "yes"}, {"question": "Is it typically made of glass?", "response": "no"}, {"question": "Is it typically made of metal?", "response": "no"}, {"question": "Is it typically made of ceramic?", "response": "no"}, {"question": "Is it typically made of plastic?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily made of stone?", "response": "no"}, {"question": "Is it used for drinking?", "response": "no"}, {"question": "Is it primarily used for holding food?", "response": "no"}, {"question": "Is it used to cut food?", "response": "no"}, {"question": "Is it commonly found on a dining table during meals?", "response": "yes"}, {"question": "Is it a napkin?", "response": "no"}, {"question": "Is it a placemat?", "response": "no"}, {"question": "Is it a salt shaker?", "response": "no"}]}
{"index": 191, "id": "8cde010e-e412-4e4a-8e27-25d01386a130", "answer": "Printer", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it typically found in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used in a bedroom?", "response": "no"}, {"question": "Is it primarily used in an office or study?", "response": "yes"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for writing or drawing?", "response": "no"}, {"question": "Is it primarily used for calculation or mathematics?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "no"}, {"question": "Is it primarily used for security or protection?", "response": "no"}, {"question": "Is it primarily used for measuring time?", "response": "no"}, {"question": "Is it primarily powered by electricity?", "response": "yes"}, {"question": "Is it primarily used for viewing or displaying information?", "response": "no"}, {"question": "Is it primarily used for temperature control or air circulation?", "response": "no"}, {"question": "Is it a shredder?", "response": "no"}]}
{"index": 92, "id": "fef5f0a2-cfc8-48cc-9304-29cfed32636c", "answer": "Donut", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for work or study purposes?", "response": "no"}, {"question": "Is it primarily used for personal hygiene or cleaning?", "response": "no"}, {"question": "Is it primarily electronic or powered by electricity?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it typically worn on the body?", "response": "no"}, {"question": "Is it primarily used for safety or security purposes?", "response": "no"}, {"question": "Is it made primarily of paper?", "response": "no"}, {"question": "Is it made primarily of metal?", "response": "no"}, {"question": "Is it made primarily of plastic?", "response": "no"}, {"question": "Is it made primarily of wood?", "response": "no"}, {"question": "Is it primarily made of glass?", "response": "no"}, {"question": "Is it primarily made of ceramic or stone?", "response": "no"}, {"question": "Is it a mirror?", "response": "no"}]}
{"index": 3, "id": "742ffd37-121e-4d72-a2f7-d1425c21b7a2", "answer": "Sherlock Holmes", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in households?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a type of sport equipment?", "response": "no"}, {"question": "Is it commonly used in sports venues or theaters?", "response": "yes"}, {"question": "Is it an object primarily used for displaying images or visuals?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it used to produce sound effects during performances?", "response": "n/a"}, {"question": "Is it worn or used by performers during shows?", "response": "n/a"}, {"question": "Is it something involved in stage lighting?", "response": "no"}, {"question": "Is it essential to the operation or construction of a stage?", "response": "no"}, {"question": "Is it associated with audience seating or used by audiences in venues?", "response": "n/a"}, {"question": "Is it something used to serve or sell food or drinks at entertainment venues?", "response": "no"}, {"question": "Is it used as a prop or accessory in stage or theater performances?", "response": "n/a"}, {"question": "Is it part of the stage curtain system?", "response": "n/a"}, {"question": "Is it a ticket?", "response": "no"}, {"question": "Is it a microphone?", "response": "no"}, {"question": "Is it a spotlight?", "response": "n/a"}]}
{"index": 39, "id": "499e013e-cd7b-4b88-a000-6e0a885ad7fe", "answer": "Hollywood", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it a structure or building?", "response": "no"}, {"question": "Is it associated with sports or recreation?", "response": "no"}, {"question": "Is it used for industrial or construction purposes?", "response": "no"}, {"question": "Is it a type of infrastructure?", "response": "no"}, {"question": "Is it a landmark or monument?", "response": "yes"}, {"question": "Is it located in the United States?", "response": "yes"}, {"question": "Is it a natural landmark?", "response": "no"}, {"question": "Is it located in New York City?", "response": "no"}, {"question": "Is it located in Washington, D.C.?", "response": "no"}, {"question": "Is it located in California?", "response": "yes"}, {"question": "Is it the Golden Gate Bridge?", "response": "no"}, {"question": "Is it the Hollywood Sign?", "response": "no"}, {"question": "Is it the Griffith Observatory?", "response": "no"}, {"question": "Is it the Space Shuttle Endeavour?", "response": "no"}]}
{"index": 90, "id": "37eca224-4b5e-4960-a03d-cd4f8541b17a", "answer": "Sandwich", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in a home?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily found in the kitchen?", "response": "yes"}, {"question": "Is it primarily used to prepare food?", "response": "no"}, {"question": "Is it primarily used to store food or beverages?", "response": "no"}, {"question": "Is it primarily used to serve food or beverages?", "response": "no"}, {"question": "Is it primarily used for cooking food?", "response": "no"}, {"question": "Is it primarily used for eating food?", "response": "yes"}, {"question": "Is it made of metal?", "response": "no"}, {"question": "Is it made of glass?", "response": "no"}, {"question": "Is it made of plastic?", "response": "no"}, {"question": "Is it made of ceramic?", "response": "no"}, {"question": "Is it made of wood?", "response": "no"}, {"question": "Is it disposable after a single use?", "response": "yes"}, {"question": "Is it made of paper?", "response": "no"}, {"question": "Is it a napkin?", "response": "no"}, {"question": "Is it a toothpick?", "response": "no"}]}
{"index": 58, "id": "2ebf39b4-afdb-4107-995b-abd596f8896a", "answer": "Fox", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly kept as a household pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "no"}, {"question": "Is it commonly found in the wild in Africa?", "response": "yes"}, {"question": "Is it known for having stripes or spots on its body?", "response": "no"}, {"question": "Is it known for its speed or agility?", "response": "yes"}, {"question": "Is it primarily a carnivore?", "response": "yes"}, {"question": "Is it known for being able to climb trees?", "response": "yes"}, {"question": "Is it primarily nocturnal?", "response": "yes"}, {"question": "Is it a primate?", "response": "no"}, {"question": "Is it a type of feline?", "response": "no"}, {"question": "Is it capable of gliding or flying?", "response": "no"}, {"question": "Is it a type of mustelid?", "response": "no"}, {"question": "Is it commonly known for having a long tail?", "response": "yes"}, {"question": "Is it a genet?", "response": "no"}, {"question": "Is it a civet?", "response": "no"}, {"question": "Is it a mongoose?", "response": "no"}]}
{"index": 95, "id": "b40e55e6-8c08-42b1-b476-993a32e1c9c2", "answer": "Spaghetti", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living entity?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it something commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for eating or drinking?", "response": "yes"}, {"question": "Is it typically made of metal?", "response": "no"}, {"question": "Is it typically made of glass?", "response": "no"}, {"question": "Is it typically made of plastic?", "response": "no"}, {"question": "Is it primarily made of ceramic?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it used for eating with your hands?", "response": "no"}, {"question": "Is it primarily disposable after one use?", "response": "yes"}, {"question": "Is it primarily used for drinking?", "response": "no"}, {"question": "Is it a napkin?", "response": "no"}, {"question": "Is it a paper plate?", "response": "no"}, {"question": "Is it a disposable cup?", "response": "no"}, {"question": "Is it a disposable utensil?", "response": "no"}, {"question": "Is it a disposable food wrapper?", "response": "no"}, {"question": "Is it a disposable toothpick?", "response": "no"}]}
{"index": 187, "id": "cc33f813-48b3-43f3-8028-7f7ce7743289", "answer": "Pen", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 16, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in homes?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily electronic or require electricity to function?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure purposes?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used in bedrooms?", "response": "no"}, {"question": "Is it primarily used in an office or for work-related tasks?", "response": "yes"}, {"question": "Is it primarily used for writing or drawing?", "response": "yes"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "yes"}, {"question": "Is it primarily used for correction or erasing mistakes?", "response": "no"}, {"question": "Is it a pen?", "response": "yes"}]}
{"index": 175, "id": "89a5c529-a4f2-4492-b93a-59f412d6b755", "answer": "Map", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in a workplace or office environment?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for food or drink preparation or storage?", "response": "no"}, {"question": "Is it primarily used for measurement or calculation?", "response": "no"}, {"question": "Is it primarily used for security or protection?", "response": "no"}, {"question": "Is it primarily used in education or learning environments?", "response": "no"}, {"question": "Is it primarily used for decorative or artistic purposes?", "response": "no"}, {"question": "Is it primarily used in science or medical settings?", "response": "no"}, {"question": "Is it primarily used for religious or spiritual purposes?", "response": "no"}, {"question": "Is it primarily used in sports or physical activities?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it a computer?", "response": "no"}, {"question": "Is it a smartphone?", "response": "no"}]}
{"index": 159, "id": "d2136513-4bf7-492c-84a0-91e5f7c9685f", "answer": "Pikachu", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a domestic animal?", "response": "no"}, {"question": "Does it primarily live in water?", "response": "no"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it larger than a human?", "response": "no"}, {"question": "Is it a wild animal commonly found in forests?", "response": "yes"}, {"question": "Is it primarily active at night (nocturnal)?", "response": "no"}, {"question": "Does it primarily eat plants (herbivore)?", "response": "yes"}, {"question": "Does it have antlers or horns?", "response": "no"}, {"question": "Does it have a bushy tail?", "response": "no"}, {"question": "Is it known for jumping or hopping as a primary mode of movement?", "response": "no"}, {"question": "Does it have stripes or distinctive body markings?", "response": "yes"}, {"question": "Is it commonly found in Africa?", "response": "n/a"}, {"question": "Is it a type of primate?", "response": "no"}, {"question": "Is it a type of feline?", "response": "no"}, {"question": "Is it a zebra?", "response": "no"}, {"question": "Is it a chipmunk?", "response": "no"}, {"question": "Is it an okapi?", "response": "no"}]}
{"index": 123, "id": "0ca6458e-e6a9-4059-89c1-d121c875cd2c", "answer": "Soccer", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for recreation or leisure activities?", "response": "yes"}, {"question": "Is it a type of sports equipment?", "response": "no"}, {"question": "Is it something you can play a game with?", "response": "yes"}, {"question": "Is it electronic or require batteries to function?", "response": "no"}, {"question": "Is it typically made of wood?", "response": "no"}, {"question": "Is it commonly used in a public park?", "response": "yes"}, {"question": "Is it something you throw as part of a game?", "response": "no"}, {"question": "Is it a piece of playground equipment?", "response": "no"}, {"question": "Is it something you sit on?", "response": "no"}, {"question": "Is it used in a water-based game or activity?", "response": "no"}, {"question": "Is it a type of ball?", "response": "no"}, {"question": "Is it something you hit or strike as part of a game?", "response": "no"}, {"question": "Is it something you wear as part of the game?", "response": "no"}, {"question": "Is it a type of goal or target used in outdoor games?", "response": "no"}, {"question": "Is it a kite?", "response": "no"}]}
{"index": 99, "id": "c5d19522-51b9-4c6f-b63e-f8af9cd8dd34", "answer": "Steak", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it typically found indoors?", "response": "yes"}, {"question": "Is it smaller than a microwave?", "response": "yes"}, {"question": "Is it commonly used in the kitchen?", "response": "yes"}, {"question": "Is it primarily used for preparing food?", "response": "no"}, {"question": "Is it something you eat food with?", "response": "no"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it made of glass?", "response": "no"}, {"question": "Is it made of metal?", "response": "no"}, {"question": "Is it made primarily of plastic?", "response": "no"}, {"question": "Is it made primarily of wood?", "response": "no"}, {"question": "Is it primarily made of ceramic?", "response": "no"}, {"question": "Is it made primarily of paper?", "response": "no"}, {"question": "Is it primarily made of stone?", "response": "no"}, {"question": "Is it primarily made of fabric?", "response": "no"}, {"question": "Is it primarily made of rubber?", "response": "no"}, {"question": "Is it primarily made of clay?", "response": "no"}, {"question": "Is it commonly made of silicone?", "response": "no"}, {"question": "Is it ice?", "response": "no"}]}
{"index": 111, "id": "71253353-d256-49bb-a6f4-9a10b868271d", "answer": "Power", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in households?", "response": "yes"}, {"question": "Is it primarily used for entertainment purposes?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance purposes?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for health or medical purposes?", "response": "no"}, {"question": "Is it primarily used in the office or for work-related tasks?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for safety or security purposes?", "response": "no"}, {"question": "Is it primarily used for decoration or aesthetic purposes?", "response": "no"}, {"question": "Is it primarily used for measuring or calculating?", "response": "yes"}, {"question": "Is it commonly used in scientific or technical fields?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it primarily made of glass?", "response": "n/a"}, {"question": "Is it a ruler?", "response": "no"}, {"question": "Is it a compass?", "response": "no"}, {"question": "Is it a protractor?", "response": "no"}]}
{"index": 76, "id": "8ca61f32-470f-4c04-b337-68d2074ad569", "answer": "Piano", "category": "instrument", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it primarily used to play video games?", "response": "no"}, {"question": "Is it used for watching television or streaming video?", "response": "no"}, {"question": "Is it primarily used for listening to music?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for work or productivity?", "response": "no"}, {"question": "Is it a kitchen appliance?", "response": "no"}, {"question": "Is it portable and designed to be easily moved from place to place?", "response": "no"}, {"question": "Is it something used for lighting?", "response": "no"}, {"question": "Is it a board game?", "response": "no"}, {"question": "Is it a toy?", "response": "no"}, {"question": "Is it primarily used for recording or displaying images?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "yes"}, {"question": "Is it a keyboard instrument?", "response": "yes"}, {"question": "Is it a piano?", "response": "yes"}]}
{"index": 7, "id": "0f5736c7-2a64-4833-af42-f543cec2ba1b", "answer": "Oprah Winfrey", "category": "person", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 15, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person primarily known for their work in entertainment (such as movies, music, or television)?", "response": "yes"}, {"question": "Is this person primarily known for their work in music?", "response": "no"}, {"question": "Is this person primarily known for their work in movies?", "response": "no"}, {"question": "Is this person primarily known for their work in television?", "response": "yes"}, {"question": "Is this person primarily known for being a host or presenter?", "response": "yes"}, {"question": "Is this person primarily known for hosting a talk show?", "response": "yes"}, {"question": "Is this person primarily known for hosting a late-night talk show in the United States?", "response": "no"}, {"question": "Is this person primarily known for hosting a daytime talk show?", "response": "yes"}, {"question": "Is the host female?", "response": "yes"}, {"question": "Is she African-American?", "response": "yes"}, {"question": "Has she won an Emmy Award for her talk show?", "response": "yes"}, {"question": "Is it Oprah Winfrey?", "response": "yes"}]}
{"index": 40, "id": "f9a5b101-d81d-49e9-b6bc-ec73b8e5b829", "answer": "Elephant", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 15, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it found in the wild in Africa?", "response": "yes"}, {"question": "Is it an herbivore?", "response": "yes"}, {"question": "Does it have a trunk?", "response": "yes"}, {"question": "Is it the African elephant?", "response": "no"}, {"question": "Is it the Asian elephant?", "response": "no"}, {"question": "Is it extinct?", "response": "no"}, {"question": "Is it found primarily in forests?", "response": "no"}, {"question": "Does it have tusks?", "response": "yes"}, {"question": "Is it the forest elephant?", "response": "yes"}]}
{"index": 29, "id": "33e34f29-4b83-495e-8cdb-552631907eca", "answer": "Big Ben", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for recreation or leisure activities?", "response": "no"}, {"question": "Is it primarily used for work or industrial purposes?", "response": "no"}, {"question": "Is it primarily used for safety or security purposes?", "response": "no"}, {"question": "Is it primarily used in construction or building maintenance?", "response": "no"}, {"question": "Is it primarily used for communication or information purposes?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it something that contains or displays written text?", "response": "yes"}, {"question": "Is it a type of sign?", "response": "no"}, {"question": "Is it a map?", "response": "no"}, {"question": "Is it a billboard?", "response": "no"}, {"question": "Is it something commonly found in educational institutions like schools or universities?", "response": "no"}, {"question": "Is it a menu?", "response": "no"}, {"question": "Is it a plaque?", "response": "no"}, {"question": "Is it a poster?", "response": "no"}, {"question": "Is it a banner?", "response": "no"}]}
{"index": 156, "id": "7a71da3d-943c-4458-b005-44b93cbbbc4f", "answer": "Black Panther", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person alive as of 2024?", "response": "n/a"}, {"question": "Is this person primarily known for their work in entertainment (film, television, or music)?", "response": "yes"}, {"question": "Is this person primarily known as an actor?", "response": "n/a"}, {"question": "Is this person primarily known as a musician?", "response": "n/a"}, {"question": "Is this person still alive?", "response": "yes"}, {"question": "Is this person primarily known for their work in film?", "response": "yes"}, {"question": "Is this person primarily known for acting in American films?", "response": "no"}, {"question": "Is this person primarily known for acting in European films?", "response": "n/a"}, {"question": "Is this person primarily known for films produced in Asia?", "response": "no"}, {"question": "Is this person primarily known for their work in film produced in Africa?", "response": "no"}, {"question": "Is this person primarily known for their work in film produced in Australia?", "response": "no"}, {"question": "Is this person primarily known for their work in film produced in South America?", "response": "no"}, {"question": "Is this person primarily known for their work in film produced in the United Kingdom?", "response": "no"}, {"question": "Is this person primarily known for their work in Indian cinema (Bollywood)?", "response": "no"}, {"question": "Is this person known for their work in non-English language films?", "response": "no"}, {"question": "Is this person primarily known for working in Canadian cinema?", "response": "n/a"}, {"question": "Is this person primarily known as a director?", "response": "n/a"}, {"question": "Is it Tom Cruise?", "response": "no"}]}
{"index": 167, "id": "42a0a5ad-1730-46e7-9c2a-4cdb76d97826", "answer": "Diamond", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it manmade?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in schools or educational institutions?", "response": "no"}, {"question": "Is it primarily used in workplaces or businesses?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily made of glass?", "response": "no"}, {"question": "Is it primarily made of stone or concrete?", "response": "no"}, {"question": "Is it primarily used for safety or protection?", "response": "no"}, {"question": "Is it primarily made of fabric or textile?", "response": "no"}, {"question": "Is it something you can eat?", "response": "no"}, {"question": "Is it primarily made of rubber?", "response": "no"}, {"question": "Is it a desk?", "response": "no"}]}
{"index": 114, "id": "7309f6bf-1449-4500-8502-c5791b97c161", "answer": "Technology", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for work or study purposes?", "response": "no"}, {"question": "Is it primarily used for personal hygiene or grooming?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it primarily used for health or medical purposes?", "response": "no"}, {"question": "Is it primarily used for decorative purposes?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it something you can wear?", "response": "no"}, {"question": "Is it primarily used for measuring or calculation?", "response": "no"}, {"question": "Is it a tool?", "response": "yes"}, {"question": "Is it a hammer?", "response": "no"}]}
{"index": 126, "id": "54c47742-f396-4543-9a21-8c9a2ae5a377", "answer": "Swimming", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a mineral or rock?", "response": "no"}, {"question": "Is it a type of plant?", "response": "no"}, {"question": "Is it composed mostly of water?", "response": "no"}, {"question": "Is it something that is primarily composed of gas?", "response": "no"}, {"question": "Is it a type of celestial body?", "response": "no"}, {"question": "Is it a type of element?", "response": "no"}, {"question": "Is it a type of landform?", "response": "no"}, {"question": "Is it commonly found in the air?", "response": "no"}, {"question": "Is it commonly found underground?", "response": "no"}, {"question": "Is it a type of weather phenomenon?", "response": "no"}, {"question": "Is it a body of water?", "response": "no"}, {"question": "Is it something that can be touched?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it related to a physical phenomenon in nature?", "response": "yes"}, {"question": "Is it part of the electromagnetic spectrum?", "response": "no"}, {"question": "Is it related to gravity?", "response": "yes"}, {"question": "Is it a black hole?", "response": "no"}]}
{"index": 106, "id": "3b5f201e-8fc5-4f58-a094-efa6a7d5a475", "answer": "Time", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it related to science or mathematics?", "response": "yes"}, {"question": "Is it a physical quantity?", "response": "yes"}, {"question": "Is it related to energy?", "response": "yes"}, {"question": "Is it measured in joules?", "response": "no"}, {"question": "Is it measured in watts?", "response": "no"}, {"question": "Is it measured in volts?", "response": "no"}, {"question": "Is it measured in amperes?", "response": "no"}, {"question": "Is it related to temperature?", "response": "no"}, {"question": "Is it related to force?", "response": "yes"}, {"question": "Is it measured in newtons?", "response": "no"}, {"question": "Is it measured in pascals?", "response": "no"}, {"question": "Is it measured in newton-meters?", "response": "no"}, {"question": "Is it measured in dynes?", "response": "no"}, {"question": "Is it measured in electronvolts?", "response": "no"}, {"question": "Is it related to pressure?", "response": "no"}, {"question": "Is it measured in kilograms?", "response": "no"}, {"question": "Is it momentum?", "response": "no"}]}
{"index": 113, "id": "d09deaad-d26b-4bc0-b88e-e336c2a96837", "answer": "Art", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it commonly used for entertainment or leisure?", "response": "yes"}, {"question": "Is it electronic or does it require electricity to function?", "response": "yes"}, {"question": "Is it primarily used for gaming or playing video content?", "response": "no"}, {"question": "Is it commonly used for communication?", "response": "yes"}, {"question": "Is it primarily used for voice communication?", "response": "no"}, {"question": "Is it primarily used for written or text-based communication?", "response": "no"}, {"question": "Is it primarily used for visual communication?", "response": "no"}, {"question": "Is it primarily used for audio communication?", "response": "no"}, {"question": "Is it an instrument?", "response": "no"}, {"question": "Is it commonly used to access the internet?", "response": "no"}, {"question": "Is it commonly found in the kitchen?", "response": "yes"}, {"question": "Is it an appliance?", "response": "no"}, {"question": "Is it made primarily of plastic?", "response": "no"}, {"question": "Is it made primarily of metal?", "response": "no"}, {"question": "Is it commonly used for preparing or serving food?", "response": "no"}, {"question": "Is it made primarily of glass?", "response": "no"}, {"question": "Is it a clock?", "response": "no"}]}
{"index": 194, "id": "3cbfbea5-c843-4d83-b6f0-b188c5290d3c", "answer": "Washing machine", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 11, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a home?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "yes"}, {"question": "Is it primarily used to clean floors?", "response": "no"}, {"question": "Is it primarily used to clean clothes?", "response": "yes"}, {"question": "Is it a washing machine?", "response": "yes"}]}
{"index": 133, "id": "36d3dcfb-b2e2-449f-98ed-9e05360ff2f1", "answer": "Baseball", "category": "sport", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in households?", "response": "yes"}, {"question": "Is it primarily used for preparing or consuming food?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it commonly used for playing games?", "response": "yes"}, {"question": "Is it typically made of paper or cardboard?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it commonly used for physical activity or exercise?", "response": "yes"}, {"question": "Is it typically used outdoors?", "response": "yes"}, {"question": "Is it spherical?", "response": "yes"}, {"question": "Is it larger than a basketball?", "response": "no"}, {"question": "Is it used in soccer?", "response": "no"}, {"question": "Is it used in tennis?", "response": "no"}, {"question": "Is it used in baseball?", "response": "yes"}, {"question": "Is it a baseball?", "response": "yes"}]}
{"index": 177, "id": "14ee9b3d-bfa7-4f09-a534-9dfdb6f634bf", "answer": "Wizard", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "n/a"}, {"question": "Is this person real rather than fictional?", "response": "yes"}, {"question": "Is this person historically famous from before the 20th century?", "response": "n/a"}, {"question": "Is this person male?", "response": "n/a"}, {"question": "Is this person primarily known for their contributions in the field of politics?", "response": "n/a"}, {"question": "Is this person primarily known for achievements in arts, literature, or entertainment?", "response": "yes"}, {"question": "Is this person primarily known as an actor or musician?", "response": "n/a"}, {"question": "Is this person primarily known for their work in literature?", "response": "n/a"}, {"question": "Is this person primarily known for their work in visual arts (painting, sculpture, photography)?", "response": "n/a"}, {"question": "Is this person primarily known for their work in film?", "response": "n/a"}, {"question": "Is this person primarily known for their work in music?", "response": "n/a"}, {"question": "Is this person primarily known for achievements in dance or theater?", "response": "n/a"}, {"question": "Is this person primarily known for achievements in television?", "response": "n/a"}, {"question": "Is this person primarily known for their work as a comedian?", "response": "n/a"}, {"question": "Is this person primarily known for their contributions in animation or comics?", "response": "n/a"}, {"question": "Is this person primarily known for their achievements in fashion or design?", "response": "no"}, {"question": "Is this person primarily known for their work as a director?", "response": "n/a"}, {"question": "Is it Walt Disney?", "response": "no"}]}
{"index": 185, "id": "4d4cd710-81e8-45d7-9734-3933d5548d10", "answer": "Toothbrush", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for work or industrial purposes?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for cleaning or hygiene?", "response": "yes"}, {"question": "Is it primarily used in the bathroom?", "response": "yes"}, {"question": "Is it used for personal hygiene?", "response": "yes"}, {"question": "Is it used to clean teeth?", "response": "yes"}, {"question": "Is it an electric toothbrush?", "response": "no"}, {"question": "Is it a manual toothbrush?", "response": "yes"}]}
{"index": 153, "id": "286ae725-c44c-469b-a095-92c7cb939bf4", "answer": "Avatar", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person real (not fictional)?", "response": "n/a"}, {"question": "Is this person alive today?", "response": "n/a"}, {"question": "Is this person primarily known for achievements in the arts or entertainment?", "response": "n/a"}, {"question": "Is this person primarily known for achievements in politics, government, or leadership?", "response": "n/a"}, {"question": "Is this person primarily known for contributions to science or technology?", "response": "n/a"}, {"question": "Is this person primarily known for achievements in sports or athletics?", "response": "n/a"}, {"question": "Is this person primarily known for achievements in business or industry?", "response": "n/a"}, {"question": "Is this person primarily known for being a religious or spiritual figure?", "response": "yes"}, {"question": "Is this person a central figure in Christianity?", "response": "n/a"}, {"question": "Is this person a central figure in a religion that originated in the Middle East?", "response": "no"}, {"question": "Is this person central to a religion that originated in South Asia?", "response": "yes"}, {"question": "Is this person central to Buddhism?", "response": "no"}, {"question": "Is this person central to Hinduism?", "response": "n/a"}, {"question": "Is this person considered the founder of Sikhism?", "response": "no"}, {"question": "Is this person central to Jainism?", "response": "n/a"}, {"question": "Is this person also considered divine or worshipped as a deity?", "response": "yes"}, {"question": "Is it Krishna?", "response": "no"}, {"question": "Is it Vishnu?", "response": "no"}]}
{"index": 31, "id": "eaf92a5c-a9ab-416b-b5bf-e1af5338156b", "answer": "Niagara Falls", "category": "place", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it a physical place?", "response": "yes"}, {"question": "Is it located outdoors in nature?", "response": "yes"}, {"question": "Is it a naturally occurring landform (e.g., mountain, valley, desert)?", "response": "yes"}, {"question": "Is it primarily composed of rock?", "response": "no"}, {"question": "Is it primarily made up of water?", "response": "yes"}, {"question": "Is it larger than a typical lake?", "response": "no"}, {"question": "Is it a river?", "response": "no"}, {"question": "Is it a pond?", "response": "no"}, {"question": "Is it found near the ocean?", "response": "no"}, {"question": "Is it a waterfall?", "response": "yes"}, {"question": "Is it Niagara Falls?", "response": "yes"}]}
{"index": 115, "id": "22953733-7170-48a8-934c-c10969eddbfa", "answer": "Music", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "n/a"}, {"question": "Is it typically used indoors?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it something electronic?", "response": "no"}, {"question": "Is it primarily used for playing games?", "response": "no"}, {"question": "Is it something primarily found in a living room?", "response": "no"}, {"question": "Is it typically used in an office or workspace?", "response": "yes"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "n/a"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "n/a"}, {"question": "Is it primarily used for writing or drawing?", "response": "no"}, {"question": "Is it primarily used for organizing or storing items?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for measuring or calculation?", "response": "no"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it a stapler?", "response": "no"}]}
{"index": 35, "id": "2eecf43b-a5bf-43c9-a3b8-c4a2edcb5d02", "answer": "The North Pole", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it solid?", "response": "no"}, {"question": "Is it a liquid?", "response": "no"}, {"question": "Is it a gas?", "response": "no"}, {"question": "Is it something you can see with the naked eye?", "response": "yes"}, {"question": "Is it something that changes form or appearance over time?", "response": "yes"}, {"question": "Is it a phenomenon related to the weather or sky?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it something that is related to geology or the Earth\u2019s structure?", "response": "yes"}, {"question": "Is it a mineral?", "response": "no"}, {"question": "Is it commonly associated with volcanic activity?", "response": "no"}, {"question": "Is it a type of rock?", "response": "no"}, {"question": "Is it related to water or ice in nature?", "response": "yes"}, {"question": "Is it a glacier?", "response": "no"}, {"question": "Is it a waterfall?", "response": "no"}, {"question": "Is it a wave?", "response": "no"}, {"question": "Is it a geyser?", "response": "no"}, {"question": "Is it an iceberg?", "response": "no"}]}
{"index": 26, "id": "6ca253bc-b7c2-4eed-911f-1f23a52dc92a", "answer": "Sahara Desert", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it something found in nature?", "response": "yes"}, {"question": "Is it a non-living thing commonly made of mineral or rock?", "response": "yes"}, {"question": "Is it commonly found in a mountainous environment?", "response": "no"}, {"question": "Is it commonly found near bodies of water?", "response": "no"}, {"question": "Is it commonly used in construction or building materials?", "response": "no"}, {"question": "Is it commonly transparent or see-through?", "response": "no"}, {"question": "Is it commonly found in deserts?", "response": "n/a"}, {"question": "Is it commonly found underground?", "response": "no"}, {"question": "Is it small enough to hold in one hand?", "response": "no"}, {"question": "Is it often associated with beaches?", "response": "no"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a mountain?", "response": "no"}, {"question": "Is it an island?", "response": "no"}, {"question": "Is it a canyon?", "response": "no"}, {"question": "Is it a volcano?", "response": "no"}, {"question": "Is it a cliff?", "response": "no"}, {"question": "Is it a cave?", "response": "no"}, {"question": "Is it a plateau?", "response": "no"}]}
{"index": 102, "id": "9bba28e9-9299-42bd-a3ad-9cacfdc895b5", "answer": "Banana", "category": "food", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 12, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a physical object?", "response": "yes"}, {"question": "Is it something you can hold in your hand?", "response": "yes"}, {"question": "Is it something that is typically found outdoors rather than indoors?", "response": "yes"}, {"question": "Is it something that is or was once part of a plant?", "response": "yes"}, {"question": "Is it commonly classified as a fruit?", "response": "yes"}, {"question": "Is it commonly red when ripe?", "response": "no"}, {"question": "Is it commonly yellow when ripe?", "response": "yes"}, {"question": "Is it commonly eaten as a dessert?", "response": "yes"}, {"question": "Is it a banana?", "response": "yes"}]}
{"index": 55, "id": "1aadc724-fcec-4225-9ccf-7f8a72a0648c", "answer": "Rabbit", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it a type of animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "yes"}, {"question": "Is it commonly smaller than a typical housecat?", "response": "yes"}, {"question": "Is it commonly kept in a cage or enclosure inside homes?", "response": "yes"}, {"question": "Is it a rodent?", "response": "no"}, {"question": "Is it commonly associated with birds?", "response": "no"}, {"question": "Is it commonly considered a type of reptile?", "response": "no"}, {"question": "Is it commonly associated with being nocturnal?", "response": "no"}, {"question": "Is it commonly known for having long ears?", "response": "yes"}, {"question": "Is it a rabbit?", "response": "yes"}]}
{"index": 73, "id": "d8f05d28-9fb9-46f1-ac16-85aae3cf5804", "answer": "Clock", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 18, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily electronic or powered by electricity?", "response": "yes"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used in an office or workspace?", "response": "no"}, {"question": "Is it primarily used for health or personal care?", "response": "no"}, {"question": "Is it primarily used for storing or preserving items?", "response": "no"}, {"question": "Is it primarily used for temperature control or climate (e.g., heating, cooling, or ventilation)?", "response": "no"}, {"question": "Is it primarily used for lighting or illumination?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for laundry?", "response": "no"}, {"question": "Is it primarily used for timekeeping or alarms?", "response": "yes"}, {"question": "Is it a clock?", "response": "yes"}]}
{"index": 131, "id": "8561e78f-be1c-490a-af57-b7a49b30e9ca", "answer": "Skiing", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "n/a"}, {"question": "Is it commonly found inside a house?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it primarily used for sports or recreational activities?", "response": "yes"}, {"question": "Is it an object that is typically used with a ball?", "response": "no"}, {"question": "Is it something that you wear or hold in your hands while using it?", "response": "no"}, {"question": "Is it a type of vehicle not used for ball sports?", "response": "no"}, {"question": "Is it a type of recreational equipment found in playgrounds?", "response": "no"}, {"question": "Is it used for water-based recreational activities?", "response": "yes"}, {"question": "Is it something that is inflated with air or requires air to function?", "response": "no"}, {"question": "Is it used for underwater activities?", "response": "no"}, {"question": "Is it typically powered by wind?", "response": "no"}, {"question": "Is it used for sliding or gliding on a surface?", "response": "yes"}, {"question": "Is it used for snow activities?", "response": "yes"}, {"question": "Is it a snowboard?", "response": "no"}, {"question": "Is it a pair of skis?", "response": "no"}, {"question": "Is it a sled?", "response": "no"}]}
{"index": 34, "id": "0dc6f372-80a1-43ac-9b4a-2df37658cd79", "answer": "Disneyland", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it related to fiction?", "response": "yes"}, {"question": "Is it a character?", "response": "no"}, {"question": "Is it a place?", "response": "yes"}, {"question": "Is this fictional place from a movie or TV series?", "response": "no"}, {"question": "Is this fictional place from a book?", "response": "no"}, {"question": "Is this fictional place from a video game?", "response": "no"}, {"question": "Is this fictional place from a comic book or graphic novel?", "response": "no"}, {"question": "Is this fictional place from a stage play or musical?", "response": "no"}, {"question": "Is this fictional place from a myth, legend, or folklore?", "response": "no"}, {"question": "Is this fictional place from a radio show or podcast?", "response": "no"}, {"question": "Is this fictional place from a board game or tabletop game?", "response": "no"}, {"question": "Is this fictional place from an animated series or cartoon?", "response": "no"}, {"question": "Is this fictional place from a well-known fairy tale?", "response": "no"}, {"question": "Is this fictional place associated with the internet or an online digital context?", "response": "no"}, {"question": "Is this fictional place from a theme park or amusement park attraction?", "response": "no"}, {"question": "Is this fictional place from a well-known toy or merchandise line?", "response": "no"}, {"question": "Is it Limbo?", "response": "no"}]}
{"index": 69, "id": "57b30970-8b61-4afc-8cbd-a4eaef56c9c3", "answer": "Watch", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for preparing or serving food?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure activities?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance?", "response": "no"}, {"question": "Is it primarily used in the bedroom or bathroom?", "response": "no"}, {"question": "Is it primarily used in the office or for work-related activities?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for health or medicine?", "response": "no"}, {"question": "Is it primarily decorative?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it an electronic device?", "response": "yes"}, {"question": "Is it portable and commonly carried by individuals?", "response": "yes"}, {"question": "Is it a smartphone?", "response": "no"}, {"question": "Is it a laptop?", "response": "no"}]}
{"index": 64, "id": "175dbe17-925e-4bc8-980a-27f2f97bbf2d", "answer": "Telescope", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it used in sports or physical activities?", "response": "yes"}, {"question": "Is it used in a team sport?", "response": "no"}, {"question": "Is it small enough to be held in one hand?", "response": "yes"}, {"question": "Is it made of plastic?", "response": "yes"}, {"question": "Is it used in water sports?", "response": "yes"}, {"question": "Is it used for swimming?", "response": "no"}, {"question": "Is it used for diving?", "response": "no"}, {"question": "Is it used in fishing?", "response": "no"}, {"question": "Is it used in surfing?", "response": "no"}, {"question": "Is it used in snorkeling?", "response": "no"}, {"question": "Is it used in water polo?", "response": "no"}, {"question": "Is it used in kayaking?", "response": "yes"}, {"question": "Is it a paddle?", "response": "no"}, {"question": "Is it a kayak spray skirt?", "response": "no"}, {"question": "Is it a kayak helmet?", "response": "no"}]}
{"index": 160, "id": "84de3667-51f5-4da2-b2fa-e2365726f630", "answer": "Wonder Woman", "category": "character", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 18, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "n/a"}, {"question": "Is this person real, not fictional?", "response": "no"}, {"question": "Is this character from a movie or television show?", "response": "yes"}, {"question": "Is this character animated?", "response": "yes"}, {"question": "Is this character from a television show?", "response": "yes"}, {"question": "Is this character originally from a show aimed primarily at children?", "response": "no"}, {"question": "Is this character from a sitcom?", "response": "no"}, {"question": "Is this character from a show made in the United States?", "response": "yes"}, {"question": "Is this character from an animated comedy series?", "response": "no"}, {"question": "Is this character from a science fiction or fantasy television show?", "response": "yes"}, {"question": "Is this character the main protagonist of their show?", "response": "yes"}, {"question": "Is this character from an animated superhero television series?", "response": "yes"}, {"question": "Is this character from the DC universe?", "response": "yes"}, {"question": "Is the character female?", "response": "yes"}, {"question": "Is the character also a member of the Justice League?", "response": "yes"}, {"question": "Is it Wonder Woman?", "response": "yes"}]}
{"index": 174, "id": "7a261750-b8e7-44fb-8157-1bb92498b392", "answer": "Treasure", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "n/a"}, {"question": "Is it primarily a tool or device used for work or industry?", "response": "no"}, {"question": "Is it primarily associated with entertainment or leisure activities?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily known for its cultural, historical, or symbolic significance?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of paper or wood?", "response": "no"}, {"question": "Is it primarily associated with food or drink?", "response": "no"}, {"question": "Is it primarily made of glass or ceramic?", "response": "n/a"}, {"question": "Is it primarily made of stone or concrete?", "response": "no"}, {"question": "Is it primarily used in communication or recording information?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it an abstract idea related to mathematics or logic?", "response": "no"}, {"question": "Is it related to emotions or feelings?", "response": "yes"}, {"question": "Is it love?", "response": "no"}, {"question": "Is it happiness?", "response": "no"}]}
{"index": 8, "id": "d9b4ee51-8a2c-471d-bc7b-73e579ad498a", "answer": "Beyonc\u00e9", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person primarily known for their work in entertainment (such as movies, music, or television)?", "response": "yes"}, {"question": "Is this person primarily known for their work as a musician or singer?", "response": "yes"}, {"question": "Is this musician primarily known for being part of a band or group?", "response": "no"}, {"question": "Is this musician primarily known for solo work in the pop genre?", "response": "yes"}, {"question": "Is this musician primarily known for being female?", "response": "no"}, {"question": "Is this musician primarily known for being American?", "response": "yes"}, {"question": "Has this musician won a Grammy Award?", "response": "yes"}, {"question": "Has this musician had multiple Billboard Hot 100 #1 singles?", "response": "yes"}, {"question": "Has this musician released a major studio album since 2020?", "response": "yes"}, {"question": "Is this musician under the age of 30?", "response": "no"}, {"question": "Is this musician primarily known for being African American?", "response": "yes"}, {"question": "Has this musician collaborated on a major hit single with Beyonc\u00e9?", "response": "n/a"}, {"question": "Has this musician ever served as a judge on a major televised singing competition?", "response": "no"}, {"question": "Has this musician ever headlined the Super Bowl halftime show?", "response": "yes"}, {"question": "Is it Usher?", "response": "no"}, {"question": "Is it The Weeknd?", "response": "no"}, {"question": "Is it Bruno Mars?", "response": "no"}]}
{"index": 66, "id": "905eeb2b-cd39-45e2-a0a0-205d53c39c7e", "answer": "Umbrella", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it typically man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found inside a house?", "response": "yes"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintenance?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for communication or information storage?", "response": "no"}, {"question": "Is it primarily used for personal hygiene or grooming?", "response": "no"}, {"question": "Is it primarily used for safety or security?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for health or medical purposes?", "response": "no"}, {"question": "Is it primarily used for work or productivity?", "response": "no"}, {"question": "Is it primarily decorative?", "response": "no"}, {"question": "Is it primarily used for transportation or movement within a house?", "response": "no"}, {"question": "Is it primarily used for lighting or illumination?", "response": "no"}, {"question": "Is it primarily used for measurement or timekeeping?", "response": "no"}, {"question": "Is it an electrical device?", "response": "no"}, {"question": "Is it primarily used for sleeping or resting?", "response": "no"}, {"question": "Is it a chair?", "response": "no"}]}
{"index": 112, "id": "dd8e24fd-5ffa-4c71-8bb2-613aa5fad175", "answer": "Honesty", "category": "concept", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "yes"}, {"question": "Is it related to mathematics?", "response": "no"}, {"question": "Is it related to philosophy?", "response": "yes"}, {"question": "Is it related to ethics or morality?", "response": "yes"}, {"question": "Is it a concept commonly discussed in the context of moral duty or obligation?", "response": "yes"}, {"question": "Is it primarily defined as a moral principle or rule prescribing what one ought to do?", "response": "yes"}, {"question": "Is it the concept of duty?", "response": "no"}, {"question": "Is it the concept of obligation?", "response": "no"}, {"question": "Is it the concept of a moral right?", "response": "no"}, {"question": "Is it the concept of a moral virtue?", "response": "yes"}]}
{"index": 178, "id": "9ea76e22-fb86-4b17-9c0c-60707564731c", "answer": "Unicorn", "category": "creature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Does it live in the wild in Africa?", "response": "no"}, {"question": "Does it live in the ocean?", "response": "no"}, {"question": "Does it have a trunk?", "response": "no"}, {"question": "Does it have horns or antlers?", "response": "yes"}, {"question": "Is it a domesticated animal?", "response": "no"}, {"question": "Does it primarily live in North America?", "response": "no"}, {"question": "Is it commonly found in Asia?", "response": "no"}, {"question": "Is it native to Europe?", "response": "n/a"}, {"question": "Is it native to Australia?", "response": "no"}, {"question": "Is it native to South America?", "response": "no"}, {"question": "Is it a bison?", "response": "no"}, {"question": "Is it a rhinoceros?", "response": "no"}, {"question": "Is it a moose?", "response": "no"}, {"question": "Is it a giraffe?", "response": "no"}]}
{"index": 94, "id": "0313d160-63bb-46e0-9f75-6cf345da0ede", "answer": "Popcorn", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it typically found indoors?", "response": "yes"}, {"question": "Is it smaller than a microwave oven?", "response": "yes"}, {"question": "Is it commonly used in a kitchen?", "response": "yes"}, {"question": "Is it primarily used for preparing food rather than eating or serving it?", "response": "no"}, {"question": "Is it normally made of metal?", "response": "no"}, {"question": "Is it primarily used for drinking?", "response": "no"}, {"question": "Is it typically used to store food?", "response": "no"}, {"question": "Is it used for eating food?", "response": "yes"}, {"question": "Is it made primarily of ceramic or glass?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it used to hold or support food while eating?", "response": "no"}, {"question": "Is it primarily made of paper?", "response": "no"}, {"question": "Is it edible?", "response": "yes"}, {"question": "Is it sweet?", "response": "yes"}, {"question": "Is it commonly considered a baked good?", "response": "no"}, {"question": "Is it a type of candy?", "response": "no"}, {"question": "Is it ice cream?", "response": "no"}]}
{"index": 20, "id": "a563b700-0372-4d80-b762-6f3cc8b293be", "answer": "Paris", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in households?", "response": "n/a"}, {"question": "Is it smaller than a car?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it a building or structure?", "response": "no"}, {"question": "Is it primarily used for commercial or industrial purposes?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure activities?", "response": "no"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it larger than a house?", "response": "yes"}, {"question": "Is it a landmark or monument?", "response": "no"}, {"question": "Is it an infrastructure used for utilities or services (such as a dam, bridge, or power plant)?", "response": "no"}, {"question": "Is it associated with space or astronomy?", "response": "yes"}, {"question": "Is it an artificial satellite?", "response": "no"}, {"question": "Is it a spacecraft?", "response": "no"}, {"question": "Is it a space station?", "response": "no"}, {"question": "Is it the International Space Station?", "response": "no"}, {"question": "Is it a space telescope?", "response": "no"}, {"question": "Is it a space probe?", "response": "no"}, {"question": "Is it the Hubble Space Telescope?", "response": "no"}]}
{"index": 51, "id": "26a97f19-f6fd-45e7-b869-b1ee8dd935bd", "answer": "Horse", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 14, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a domestic animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it a type of farm animal?", "response": "yes"}, {"question": "Is it primarily raised for its milk?", "response": "no"}, {"question": "Is it primarily raised for its meat?", "response": "no"}, {"question": "Is it primarily raised for its wool or hair?", "response": "no"}, {"question": "Is it primarily raised for work or labor purposes?", "response": "no"}, {"question": "Is it primarily raised for its eggs?", "response": "no"}, {"question": "Is it primarily raised for its skin or hide?", "response": "no"}, {"question": "Is it a horse?", "response": "yes"}]}
{"index": 23, "id": "1343d2b5-c203-43bc-b2e6-08ff85886efd", "answer": "New York", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "n/a"}, {"question": "Is it bigger than a car?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it a building or structure?", "response": "no"}, {"question": "Is it used for industrial or commercial purposes?", "response": "yes"}, {"question": "Is it primarily made of metal?", "response": "n/a"}, {"question": "Is it a machine or device?", "response": "no"}, {"question": "Is it used in the extraction or processing of natural resources?", "response": "yes"}, {"question": "Is it primarily used in mining?", "response": "no"}, {"question": "Is it associated with the production or processing of oil or gas?", "response": "no"}, {"question": "Is it associated with the processing or production of electricity?", "response": "yes"}, {"question": "Is it a power plant?", "response": "no"}, {"question": "Is it a dam?", "response": "no"}, {"question": "Is it a transmission tower?", "response": "no"}, {"question": "Is it a generator?", "response": "no"}, {"question": "Is it a turbine?", "response": "no"}, {"question": "Is it a substation?", "response": "no"}]}
{"index": 43, "id": "18000722-bc1d-4408-a431-e3465ee2b7cf", "answer": "Penguin", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "no"}, {"question": "Does it live primarily in water?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Is it a fish?", "response": "no"}, {"question": "Does it have an exoskeleton?", "response": "no"}, {"question": "Does it have legs?", "response": "yes"}, {"question": "Is it an amphibian?", "response": "no"}, {"question": "Is it a reptile?", "response": "no"}, {"question": "Is it an insect?", "response": "no"}, {"question": "Does it have more than four legs?", "response": "no"}, {"question": "Is it a bird?", "response": "yes"}, {"question": "Is it commonly found at the beach?", "response": "yes"}, {"question": "Is it known for eating fish?", "response": "yes"}, {"question": "Is it predominantly white in color?", "response": "no"}, {"question": "Is it a seagull?", "response": "no"}, {"question": "Is it a pelican?", "response": "no"}]}
{"index": 36, "id": "538ec85d-e4f6-4432-82e1-2c332434389f", "answer": "Hawaii", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it larger than a house?", "response": "yes"}, {"question": "Is it a building?", "response": "no"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it a structure?", "response": "no"}, {"question": "Is it used for industrial or commercial purposes?", "response": "yes"}, {"question": "Is it a machine or device with moving parts?", "response": "no"}, {"question": "Is it a large outdoor installation or facility?", "response": "no"}, {"question": "Is it related to energy production or storage?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it found at airports?", "response": "yes"}, {"question": "Is it a runway?", "response": "no"}, {"question": "Is it a control tower?", "response": "no"}, {"question": "Is it related to storing or handling luggage?", "response": "no"}, {"question": "Is it a hangar?", "response": "no"}, {"question": "Is it a terminal?", "response": "no"}, {"question": "Is it a tarmac?", "response": "no"}]}
{"index": 9, "id": "b5c90023-84d5-49f9-9bd9-41378f82d0aa", "answer": "Leonardo da Vinci", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "n/a"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it a sport?", "response": "no"}, {"question": "Is it a type of fiction?", "response": "no"}, {"question": "Is it a creature?", "response": "n/a"}, {"question": "Is it a type of instrument?", "response": "no"}, {"question": "Is it a type of food?", "response": "no"}, {"question": "Is it a character?", "response": "n/a"}, {"question": "Is it related to nature?", "response": "yes"}, {"question": "Is it a phenomenon?", "response": "no"}, {"question": "Is it found in the sky?", "response": "no"}, {"question": "Is it water?", "response": "no"}, {"question": "Is it a mineral?", "response": "no"}, {"question": "Is it a type of rock?", "response": "no"}, {"question": "Is it a mountain?", "response": "no"}, {"question": "Is it a tree?", "response": "no"}]}
{"index": 25, "id": "238cc66a-1b36-4480-98cc-afc45f9c7d54", "answer": "The Great Wall", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it something commonly found indoors?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it larger than a car?", "response": "yes"}, {"question": "Is it a building or structure?", "response": "yes"}, {"question": "Is it a place where people live?", "response": "no"}, {"question": "Is it a place where people go for entertainment or recreation?", "response": "yes"}, {"question": "Is it an outdoor sports stadium?", "response": "no"}, {"question": "Is it a place where people watch performances or shows?", "response": "no"}, {"question": "Is it a museum?", "response": "no"}, {"question": "Is it a theme park?", "response": "no"}, {"question": "Is it primarily associated with sporting activities or events?", "response": "no"}, {"question": "Is it a type of religious building?", "response": "no"}, {"question": "Is it a type of monument or memorial?", "response": "yes"}, {"question": "Is it located in the United States?", "response": "no"}, {"question": "Is it located in Europe?", "response": "no"}, {"question": "Is it located in Asia?", "response": "yes"}, {"question": "Is it the Taj Mahal?", "response": "no"}, {"question": "Is it Angkor Wat?", "response": "no"}]}
{"index": 176, "id": "faa23151-04a4-4c31-84c0-f6f38fc6d718", "answer": "Pirate", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "n/a"}, {"question": "Is this person real (a historical or living human, not fictional)?", "response": "yes"}, {"question": "Is this person male?", "response": "n/a"}, {"question": "Is this person known primarily for their achievements in politics or government?", "response": "no"}, {"question": "Is this person primarily known for achievements in arts or entertainment?", "response": "no"}, {"question": "Is this person primarily known for contributions to science, technology, or medicine?", "response": "no"}, {"question": "Is this person primarily known for achievements in sports?", "response": "no"}, {"question": "Is this person primarily known for achievements in business or industry?", "response": "no"}, {"question": "Is this person primarily known for achievements in philosophy or religion?", "response": "no"}, {"question": "Is this person primarily known for achievements in the field of exploration or discovery?", "response": "no"}, {"question": "Is this person primarily known for achievements in military or warfare?", "response": "no"}, {"question": "Is this person known for achievements in law or the legal field?", "response": "no"}, {"question": "Is this person primarily known for achievements in education or academia?", "response": "no"}, {"question": "Is this person primarily known for a criminal act or association with crime?", "response": "yes"}, {"question": "Is this person primarily known for committing a murder?", "response": "no"}, {"question": "Is this person primarily known for theft or robbery?", "response": "yes"}, {"question": "Is it a famous bank robber?", "response": "no"}, {"question": "Is it D.B. Cooper?", "response": "no"}]}
{"index": 152, "id": "af77c285-b921-4372-b6c3-4a3d6889f41d", "answer": "Star Wars", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it commonly used for entertainment purposes?", "response": "yes"}, {"question": "Is it a board game?", "response": "no"}, {"question": "Is it commonly used outdoors?", "response": "n/a"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it typically made of paper or cardboard?", "response": "no"}, {"question": "Is it primarily used for playing games?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for decoration?", "response": "no"}, {"question": "Is it something you can wear?", "response": "no"}, {"question": "Is it primarily used for reading?", "response": "no"}, {"question": "Is it primarily used for lighting?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used for measuring?", "response": "no"}, {"question": "Is it a television?", "response": "no"}]}
{"index": 11, "id": "181b9347-e478-47a9-9c20-1f5dc264ec11", "answer": "Marilyn Monroe", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a physical object?", "response": "no"}, {"question": "Is it an element or compound?", "response": "n/a"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a type of force or energy?", "response": "no"}, {"question": "Is it weather?", "response": "n/a"}, {"question": "Is it a body of water?", "response": "no"}, {"question": "Is it something that can be experienced through one of the senses?", "response": "yes"}, {"question": "Is it a natural phenomenon?", "response": "no"}, {"question": "Is it a geological feature?", "response": "no"}, {"question": "Is it something that can be heard?", "response": "yes"}, {"question": "Is it produced by an animal?", "response": "n/a"}, {"question": "Is it something naturally produced by non-living natural processes, like wind, water, or earth?", "response": "no"}, {"question": "Is it something that can be heard in nature without the involvement of living things?", "response": "no"}, {"question": "Is it a word or sound produced by a human?", "response": "no"}, {"question": "Is it a sound associated with human technology or machines?", "response": "no"}, {"question": "Is it music?", "response": "no"}, {"question": "Is it an echo?", "response": "n/a"}]}
{"index": 118, "id": "c099a324-759a-42de-b7ef-8692e42fcfea", "answer": "Truth", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it related to mathematics?", "response": "yes"}, {"question": "Is it a number?", "response": "no"}, {"question": "Is it a geometric concept?", "response": "no"}, {"question": "Is it a property in mathematics?", "response": "yes"}, {"question": "Is it a property related to numbers' divisibility or factors?", "response": "no"}, {"question": "Is it a property related to mathematical functions or operations?", "response": "no"}, {"question": "Is it a property related to mathematical sets?", "response": "no"}, {"question": "Is it a property related to symmetry?", "response": "no"}, {"question": "Is it a property related to topology?", "response": "no"}, {"question": "Is it a property related to mathematical logic or reasoning?", "response": "yes"}, {"question": "Is it a property related to consistency or completeness in logic?", "response": "no"}, {"question": "Is it a property related to proof methods in mathematical logic?", "response": "no"}, {"question": "Is it a property related to truth values in logic?", "response": "yes"}, {"question": "Is it related to bivalence in logic?", "response": "yes"}, {"question": "Is it the law of excluded middle?", "response": "no"}, {"question": "Is it bivalence?", "response": "no"}]}
{"index": 169, "id": "661b480a-3178-4e76-ac49-2da155116559", "answer": "Ocean", "category": "nature", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 9, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it something that can be seen with the naked eye?", "response": "yes"}, {"question": "Is it something composed primarily of minerals or non-living matter?", "response": "yes"}, {"question": "Is it something that is naturally formed as part of the Earth's surface, like a mountain or canyon?", "response": "yes"}, {"question": "Is it made primarily of rock or stone?", "response": "no"}, {"question": "Is it made primarily of water?", "response": "yes"}, {"question": "Is it an ocean?", "response": "yes"}]}
{"index": 180, "id": "5356e88e-388b-4e82-a72c-56a3dc0f1e58", "answer": "Dragon", "category": "creature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a domesticated animal?", "response": "no"}, {"question": "Is it primarily found in water?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Is it a bird?", "response": "no"}, {"question": "Is it a reptile?", "response": "yes"}, {"question": "Is it a reptile commonly associated with dangerous venom?", "response": "no"}, {"question": "Is it commonly found in Africa?", "response": "no"}, {"question": "Is it primarily found in cold climates?", "response": "no"}, {"question": "Is it a type of lizard?", "response": "no"}, {"question": "Is it known for having a shell or armored body?", "response": "yes"}, {"question": "Is it a turtle?", "response": "no"}, {"question": "Is it a crocodile?", "response": "no"}, {"question": "Is it an alligator?", "response": "no"}, {"question": "Is it a Komodo dragon?", "response": "no"}, {"question": "Is it an armadillo?", "response": "no"}, {"question": "Is it a tortoise?", "response": "no"}]}
{"index": 132, "id": "c5bec665-3b80-4b70-997f-855e9bd91f30", "answer": "Chess", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it something you can play music with?", "response": "no"}, {"question": "Is it commonly used for playing games?", "response": "yes"}, {"question": "Is it typically made of paper or cardboard?", "response": "no"}, {"question": "Is it typically made of plastic?", "response": "yes"}, {"question": "Is it primarily used by children?", "response": "no"}, {"question": "Is it commonly used in board games?", "response": "no"}, {"question": "Is it commonly used for physical exercise or fitness?", "response": "no"}, {"question": "Is it commonly used to watch movies?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "no"}, {"question": "Is it commonly used for playing cards?", "response": "no"}, {"question": "Is it commonly used in video games?", "response": "yes"}, {"question": "Is it a game controller?", "response": "no"}, {"question": "Is it a joystick?", "response": "no"}]}
{"index": 155, "id": "09d7d507-dc1d-4e80-b936-afb702e4c867", "answer": "Spider-Man", "category": "character", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 16, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person real (not fictional)?", "response": "no"}, {"question": "Is this character primarily known for appearing in movies or television?", "response": "no"}, {"question": "Is this character primarily known from video games?", "response": "no"}, {"question": "Is this character primarily known from literature?", "response": "no"}, {"question": "Is this character primarily known from comics or graphic novels?", "response": "yes"}, {"question": "Is this character primarily a superhero or supervillain?", "response": "yes"}, {"question": "Is this character primarily published by Marvel Comics?", "response": "yes"}, {"question": "Is this character a member of the X-Men?", "response": "no"}, {"question": "Is this character primarily associated with the Avengers?", "response": "no"}, {"question": "Is this character female?", "response": "no"}, {"question": "Is this character from the Spider-Man series?", "response": "yes"}, {"question": "Is this character an enemy of Spider-Man?", "response": "no"}, {"question": "Is this character's real name Peter Parker?", "response": "yes"}, {"question": "Is it Spider-Man?", "response": "yes"}]}
{"index": 146, "id": "6e41b1c8-93b5-4db5-b9e7-c1e6b1a10dda", "answer": "The Simpsons", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it primarily used for watching visual content?", "response": "yes"}, {"question": "Is it portable?", "response": "n/a"}, {"question": "Is it primarily a television?", "response": "yes"}, {"question": "Does it have a flat screen?", "response": "n/a"}, {"question": "Is it commonly wall-mounted?", "response": "n/a"}, {"question": "Is it a smart TV?", "response": "no"}, {"question": "Was it widely used before the year 2000?", "response": "yes"}, {"question": "Did it typically have a cathode ray tube (CRT) display?", "response": "n/a"}, {"question": "Is it known for having a curved display screen?", "response": "n/a"}, {"question": "Is it commonly referred to as a \"tube TV\"?", "response": "no"}, {"question": "Is it often referred to as a \"projection TV\"?", "response": "n/a"}, {"question": "Is it known for displaying images via back-projection technology?", "response": "no"}, {"question": "Is it a plasma TV?", "response": "no"}, {"question": "Is it an LCD TV?", "response": "no"}, {"question": "Is it a DLP TV?", "response": "no"}]}
{"index": 44, "id": "e3cef92f-47c2-4276-aca6-236a46071161", "answer": "Giraffe", "category": "animal", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 11, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it native to Africa?", "response": "yes"}, {"question": "Does it have a trunk?", "response": "no"}, {"question": "Is it known for having a long neck?", "response": "yes"}, {"question": "Is it covered in spots?", "response": "yes"}, {"question": "Is it a giraffe?", "response": "yes"}]}
{"index": 82, "id": "77a6d1be-ddde-4547-a482-bdc68ad0a8ca", "answer": "Smartphone", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in households?", "response": "yes"}, {"question": "Is it primarily used for entertainment purposes?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for cleaning or hygiene purposes?", "response": "no"}, {"question": "Is it primarily associated with office or work-related tasks?", "response": "no"}, {"question": "Is it primarily used for storage or organization?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "yes"}, {"question": "Is it portable?", "response": "yes"}, {"question": "Does it have a touchscreen?", "response": "yes"}, {"question": "Is it primarily used for making phone calls?", "response": "no"}, {"question": "Is it primarily used for reading digital books or documents?", "response": "no"}, {"question": "Is it primarily used for internet browsing?", "response": "no"}, {"question": "Is it primarily used for taking photographs or videos?", "response": "no"}, {"question": "Is it primarily used for audio communication?", "response": "no"}, {"question": "Is it primarily used for playing games?", "response": "no"}, {"question": "Is it a tablet?", "response": "no"}, {"question": "Is it an e-reader?", "response": "no"}]}
{"index": 50, "id": "54168fb4-9488-45c4-aa2a-1c37a078020d", "answer": "Owl", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "no"}, {"question": "Does it primarily live in water?", "response": "no"}, {"question": "Does it have fur?", "response": "no"}, {"question": "Can it fly?", "response": "yes"}, {"question": "Is it active during the day?", "response": "yes"}, {"question": "Is it a bird?", "response": "yes"}, {"question": "Does it primarily eat insects?", "response": "no"}, {"question": "Is it known for its bright or colorful plumage?", "response": "no"}, {"question": "Is it commonly found in urban areas?", "response": "yes"}, {"question": "Is it a type of pigeon?", "response": "no"}, {"question": "Is it associated with making distinctive sounds or calls that are easily recognized?", "response": "yes"}, {"question": "Is it a crow?", "response": "no"}, {"question": "Is it commonly associated with scavenging food from humans or trash?", "response": "no"}, {"question": "Is it a sparrow?", "response": "no"}, {"question": "Is it a dove?", "response": "no"}, {"question": "Is it a magpie?", "response": "no"}]}
{"index": 199, "id": "1c578bea-ee82-446e-95d1-137f9dbda34c", "answer": "Sunglasses", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the bathroom?", "response": "no"}, {"question": "Is it primarily used in the bedroom?", "response": "no"}, {"question": "Is it primarily used in the office or for work-related tasks?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it typically used for transportation?", "response": "no"}, {"question": "Is it primarily used for gardening or yard maintenance?", "response": "no"}, {"question": "Is it primarily used for recreation or leisure activities outdoors?", "response": "no"}, {"question": "Is it primarily used for safety or protection?", "response": "yes"}, {"question": "Is it typically used to protect property from theft or trespassing?", "response": "no"}, {"question": "Is it wearable?", "response": "yes"}, {"question": "Is it designed to protect against weather conditions?", "response": "yes"}, {"question": "Is it an umbrella?", "response": "no"}, {"question": "Is it a raincoat?", "response": "no"}, {"question": "Is it a rain hat?", "response": "no"}, {"question": "Is it a rain poncho?", "response": "no"}]}
{"index": 143, "id": "d706e352-a3de-43de-a2d2-b5c855fe5a32", "answer": "Lightsaber", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it typically found in the home?", "response": "no"}, {"question": "Is it larger than a car?", "response": "no"}, {"question": "Is it commonly used for transportation?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure activities?", "response": "no"}, {"question": "Is it primarily used for work or professional purposes?", "response": "no"}, {"question": "Is it electronic or requires electricity to function?", "response": "yes"}, {"question": "Is it commonly used outdoors?", "response": "yes"}, {"question": "Is it used for communication?", "response": "no"}, {"question": "Is it primarily used for safety or security purposes?", "response": "no"}, {"question": "Is it commonly used in sports or outdoor recreation?", "response": "no"}, {"question": "Is it a tool used for construction or maintenance?", "response": "no"}, {"question": "Is it commonly found in public places or facilities?", "response": "no"}, {"question": "Is it portable and designed to be easily carried by one person?", "response": "yes"}, {"question": "Is it commonly used for measurement or checking conditions?", "response": "no"}, {"question": "Is it a type of light or produces illumination?", "response": "yes"}, {"question": "Is it a flashlight?", "response": "no"}, {"question": "Is it a lantern?", "response": "no"}, {"question": "Is it a headlamp?", "response": "no"}]}
{"index": 150, "id": "01f3df54-3b94-4b68-83ea-fb4bf872a4c6", "answer": "Frozen", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it commonly used by humans?", "response": "n/a"}, {"question": "Is it a physical object?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "no"}, {"question": "Is it associated with fiction?", "response": "yes"}, {"question": "Is it a fictional place?", "response": "no"}, {"question": "Is it a fictional character?", "response": "no"}, {"question": "Is it a fictional object?", "response": "no"}, {"question": "Is it a fictional sport?", "response": "no"}, {"question": "Is it a fictional creature?", "response": "no"}, {"question": "Is it a fictional concept?", "response": "yes"}, {"question": "Is it from the Harry Potter universe?", "response": "no"}, {"question": "Is it from the Star Wars universe?", "response": "no"}, {"question": "Is it from the Marvel universe?", "response": "no"}, {"question": "Is it from a video game universe?", "response": "no"}, {"question": "Is it from a book or literary universe?", "response": "no"}, {"question": "Is it from a movie or television universe?", "response": "yes"}, {"question": "Is it from a comedy series?", "response": "no"}, {"question": "Is it from the science fiction genre?", "response": "no"}, {"question": "Is it the Force?", "response": "no"}]}
{"index": 166, "id": "cf37e35c-216d-4c72-a490-993a0b353cc7", "answer": "Sunflower", "category": "nature", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 18, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it human?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it a fictional character?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a plant?", "response": "yes"}, {"question": "Is it commonly considered a tree?", "response": "no"}, {"question": "Is it commonly considered a flower?", "response": "yes"}, {"question": "Is it commonly given as a gift for romantic occasions?", "response": "no"}, {"question": "Is it most commonly found growing indoors?", "response": "no"}, {"question": "Is it commonly used in cooking or food preparation?", "response": "yes"}, {"question": "Is it most commonly yellow in color?", "response": "yes"}, {"question": "Is it commonly associated with the spring season?", "response": "no"}, {"question": "Is it commonly used to flavor tea?", "response": "no"}, {"question": "Is it commonly known for its medicinal or health benefits?", "response": "yes"}, {"question": "Is it a dandelion?", "response": "no"}, {"question": "Is it a marigold?", "response": "no"}, {"question": "Is it a sunflower?", "response": "yes"}]}
{"index": 81, "id": "4f7d75b9-ff86-4f8e-99e2-3b94f9e5397d", "answer": "Scissors", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 15, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it something commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for cleaning?", "response": "no"}, {"question": "Is it primarily used for storage?", "response": "no"}, {"question": "Is it commonly found in a bathroom?", "response": "yes"}, {"question": "Is it typically used for personal hygiene?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it used for grooming hair?", "response": "yes"}, {"question": "Is it made primarily of plastic?", "response": "no"}, {"question": "Is it made primarily of metal?", "response": "yes"}, {"question": "Is it a pair of scissors?", "response": "yes"}]}
{"index": 164, "id": "b2d72176-9358-4d06-a91b-8d99c1f8ee22", "answer": "Volcano", "category": "nature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it something found in nature?", "response": "yes"}, {"question": "Is it something non-living?", "response": "yes"}, {"question": "Is it something solid rather than liquid or gas?", "response": "yes"}, {"question": "Is it something that can be classified as a mineral?", "response": "no"}, {"question": "Is it something classified as a rock?", "response": "no"}, {"question": "Is it something related to water?", "response": "no"}, {"question": "Is it something that is commonly found above ground rather than underground?", "response": "yes"}, {"question": "Is it something typically part of the atmosphere?", "response": "no"}, {"question": "Is it made of wood?", "response": "no"}, {"question": "Is it something associated with plants?", "response": "no"}, {"question": "Is it something that is commonly seen in the sky?", "response": "no"}, {"question": "Is it a celestial body?", "response": "no"}, {"question": "Is it something made of metal?", "response": "no"}, {"question": "Is it something that is formed by geological or physical processes?", "response": "yes"}, {"question": "Is it something commonly found in sand?", "response": "no"}, {"question": "Is it something transparent or translucent?", "response": "no"}, {"question": "Is it a mountain?", "response": "yes"}, {"question": "Is it Mount Everest?", "response": "no"}]}
{"index": 124, "id": "4583b5af-dd75-4403-8ff9-d2e2629e206a", "answer": "Basketball", "category": "sport", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 19, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it typically used for entertainment or leisure?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it typically used for playing a game?", "response": "yes"}, {"question": "Is it a board game?", "response": "no"}, {"question": "Is it typically made of cards?", "response": "no"}, {"question": "Is it a type of toy?", "response": "no"}, {"question": "Is it used for physical activity or exercise?", "response": "yes"}, {"question": "Is it commonly used in team sports?", "response": "yes"}, {"question": "Is it primarily made of leather?", "response": "no"}, {"question": "Is it primarily made of plastic?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "no"}, {"question": "Is it typically made of rubber?", "response": "no"}, {"question": "Is it primarily made of wood?", "response": "no"}, {"question": "Is it inflated with air for use?", "response": "yes"}, {"question": "Is it used in the sport of basketball?", "response": "yes"}, {"question": "Is it a basketball?", "response": "yes"}]}
{"index": 144, "id": "ab39c189-e0a3-4197-aa4d-219fc93f3660", "answer": "Iron Man", "category": "character", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 13, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "yes"}, {"question": "Is this person real rather than fictional?", "response": "no"}, {"question": "Is this character most commonly associated with movies or television?", "response": "yes"}, {"question": "Is this character animated rather than live-action?", "response": "no"}, {"question": "Is this character primarily from a television series (not a movie)?", "response": "no"}, {"question": "Is this character from a movie released before the year 2000?", "response": "no"}, {"question": "Is this character part of a movie franchise with multiple installments?", "response": "yes"}, {"question": "Is this character a superhero?", "response": "yes"}, {"question": "Is this superhero character from the Marvel Cinematic Universe?", "response": "yes"}, {"question": "Is this character female?", "response": "no"}, {"question": "Has this Marvel superhero been portrayed by Robert Downey Jr.?", "response": "yes"}, {"question": "Is it Iron Man?", "response": "yes"}]}
{"index": 129, "id": "2b6f756c-f02f-40cf-b7e3-c5ed0209871e", "answer": "Boxing", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it commonly found indoors?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "no"}, {"question": "Is it a game?", "response": "no"}, {"question": "Is it typically made of paper?", "response": "no"}, {"question": "Is it primarily used for listening to music?", "response": "no"}, {"question": "Is it an object that is commonly associated with visual entertainment, such as movies or television?", "response": "no"}, {"question": "Is it primarily used for educational purposes?", "response": "no"}, {"question": "Is it an object you would commonly find in a recreation or hobby space, such as a hobby room or game room?", "response": "no"}, {"question": "Is it something typically used for physical exercise or fitness?", "response": "yes"}, {"question": "Is it a piece of exercise equipment?", "response": "no"}, {"question": "Is it an activity typically performed outdoors?", "response": "no"}, {"question": "Is it a sport?", "response": "yes"}, {"question": "Is it typically played with a ball?", "response": "no"}, {"question": "Is it an Olympic sport?", "response": "yes"}, {"question": "Is it typically performed on ice or snow?", "response": "no"}, {"question": "Is it typically performed in water?", "response": "no"}, {"question": "Is it gymnastics?", "response": "no"}, {"question": "Is it fencing?", "response": "no"}]}
{"index": 141, "id": "5b4c5bdd-a829-4169-9969-34ee234f6978", "answer": "Hiking", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found indoors?", "response": "no"}, {"question": "Is it primarily used for transportation?", "response": "no"}, {"question": "Is it primarily used for recreation or leisure activities?", "response": "yes"}, {"question": "Is it a type of sports equipment?", "response": "no"}, {"question": "Is it commonly used outdoors?", "response": "yes"}, {"question": "Is it something that typically requires electricity or batteries to operate?", "response": "no"}, {"question": "Is it something primarily associated with water activities?", "response": "no"}, {"question": "Is it something you can play a game with?", "response": "no"}, {"question": "Is it primarily made of metal?", "response": "n/a"}, {"question": "Is it something typically found in a playground?", "response": "no"}, {"question": "Is it associated with camping or hiking?", "response": "yes"}, {"question": "Is it something used for shelter?", "response": "no"}, {"question": "Is it something used for cooking or preparing food outdoors?", "response": "no"}, {"question": "Is it something used for navigation or finding direction outdoors?", "response": "no"}, {"question": "Is it something used for lighting outdoors?", "response": "no"}, {"question": "Is it something used for sitting or resting outdoors?", "response": "no"}, {"question": "Is it a backpack?", "response": "no"}, {"question": "Is it a tent?", "response": "no"}]}
{"index": 127, "id": "95ec53b5-0dcb-44bd-b2ca-49adc30bcdeb", "answer": "Running", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "no"}, {"question": "Is it naturally found outdoors?", "response": "yes"}, {"question": "Is it a mineral or rock?", "response": "no"}, {"question": "Is it a plant or part of a plant?", "response": "no"}, {"question": "Is it a body of water?", "response": "no"}, {"question": "Is it related to weather or atmospheric phenomena?", "response": "no"}, {"question": "Is it something seen in the sky?", "response": "no"}, {"question": "Is it a geological feature found on land, such as a mountain or canyon?", "response": "no"}, {"question": "Is it something that is typically found underground?", "response": "n/a"}, {"question": "Is it a non-living thing commonly associated with the beach?", "response": "no"}, {"question": "Is it a type of soil or sediment?", "response": "no"}, {"question": "Is it formed by a naturally occurring chemical process, such as crystallization or precipitation?", "response": "no"}, {"question": "Is it related to fire or heat?", "response": "no"}, {"question": "Is it a type of natural substance not classified as rock, mineral, plant, or water, such as ice, gas, or metal?", "response": "no"}, {"question": "Is it related to celestial bodies or phenomena beyond Earth's atmosphere?", "response": "no"}, {"question": "Is it a naturally occurring phenomenon rather than a tangible object?", "response": "yes"}, {"question": "Is it related to sound or vibration?", "response": "yes"}, {"question": "Is it an echo?", "response": "no"}, {"question": "Is it thunder?", "response": "no"}]}
{"index": 46, "id": "5f32522a-eed8-4d37-86a2-44d69f1e533b", "answer": "Panda", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it a human?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it commonly kept as a pet?", "response": "no"}, {"question": "Is it larger than a human?", "response": "yes"}, {"question": "Is it primarily found in the wild rather than on farms or in captivity?", "response": "yes"}, {"question": "Is it a carnivore?", "response": "no"}, {"question": "Is it herbivorous?", "response": "yes"}, {"question": "Is it native to Africa?", "response": "no"}, {"question": "Is it found in North America?", "response": "yes"}, {"question": "Is it a type of hoofed animal?", "response": "no"}, {"question": "Does it have antlers or horns?", "response": "no"}, {"question": "Does it live in water or spend significant time in aquatic environments?", "response": "no"}, {"question": "Is it a primate?", "response": "no"}, {"question": "Is it a bear?", "response": "yes"}, {"question": "Is it a grizzly bear?", "response": "no"}, {"question": "Is it an American black bear?", "response": "no"}, {"question": "Is it a polar bear?", "response": "no"}, {"question": "Is it a brown bear?", "response": "no"}]}
{"index": 198, "id": "c52bcce5-6a98-4fc4-a198-a89f4b3e7721", "answer": "Remote", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for entertainment or leisure?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it small enough to be held in one hand?", "response": "yes"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for playing games?", "response": "no"}, {"question": "Is it primarily used for listening to audio or music?", "response": "no"}, {"question": "Is it primarily used for viewing visual media or screens?", "response": "no"}, {"question": "Is it primarily used for lighting or illumination?", "response": "no"}, {"question": "Is it primarily used for measuring or calculating things?", "response": "no"}, {"question": "Is it primarily used for temperature control or regulation?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintaining cleanliness?", "response": "no"}, {"question": "Is it primarily used for personal grooming or care?", "response": "no"}, {"question": "Is it primarily used for timekeeping or telling time?", "response": "no"}, {"question": "Is it primarily used for safety or security purposes?", "response": "no"}, {"question": "Is it primarily used for health or medical purposes?", "response": "no"}, {"question": "Is it a remote control?", "response": "yes"}]}
{"index": 181, "id": "e529d65a-03e0-4624-a72e-0d77c6c433e2", "answer": "Meteor", "category": "nature", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 17, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it found in nature?", "response": "yes"}, {"question": "Is it a non-living part of the earth, like a mineral, rock, or landform?", "response": "no"}, {"question": "Is it a substance that is essential for life processes, like water or air?", "response": "no"}, {"question": "Is it something produced by a plant or tree, like fruit, seeds, or leaves?", "response": "no"}, {"question": "Is it naturally occurring but not a mineral, plant, or animal (such as a weather phenomenon or a type of energy)?", "response": "yes"}, {"question": "Is it related to weather or atmospheric phenomena?", "response": "yes"}, {"question": "Is it visible to the naked eye?", "response": "yes"}, {"question": "Is it a type of precipitation?", "response": "no"}, {"question": "Is it associated with light or optical phenomena such as rainbows, auroras, or halos?", "response": "yes"}, {"question": "Is it most commonly seen during or after rain?", "response": "no"}, {"question": "Is it most commonly seen at night?", "response": "yes"}, {"question": "Does it appear as moving patterns of colored light in the sky?", "response": "no"}, {"question": "Is it a ring or circle-shaped phenomenon in the sky?", "response": "no"}, {"question": "Is it caused by the reflection or refraction of moonlight?", "response": "no"}, {"question": "Is it a shooting star?", "response": "yes"}]}
{"index": 145, "id": "5b162fed-a797-4960-9145-a299d3089de9", "answer": "Millennium Falcon", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something typically found indoors?", "response": "no"}, {"question": "Is it a natural feature or formation?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it something that is used for transportation?", "response": "yes"}, {"question": "Is it powered by an engine or motor?", "response": "yes"}, {"question": "Is it designed to travel on roads?", "response": "no"}, {"question": "Is it designed to travel on water?", "response": "no"}, {"question": "Is it designed to travel in the air?", "response": "yes"}, {"question": "Is it primarily used for military purposes?", "response": "no"}, {"question": "Is it capable of carrying more than 10 passengers?", "response": "no"}, {"question": "Is it a helicopter?", "response": "no"}, {"question": "Is it classified as a drone?", "response": "no"}, {"question": "Is it a hot air balloon?", "response": "no"}, {"question": "Is it capable of vertical takeoff and landing?", "response": "yes"}, {"question": "Is it a jet?", "response": "no"}, {"question": "Is it commonly used for recreational or sports flying?", "response": "no"}, {"question": "Is it a gyrocopter?", "response": "no"}, {"question": "Is it a glider?", "response": "no"}, {"question": "Is it an autogyro?", "response": "no"}]}
{"index": 108, "id": "d7f35a40-f4f3-4358-87ad-bbbab7fe719b", "answer": "Friendship", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "no"}, {"question": "Is it a natural place or feature found on Earth?", "response": "no"}, {"question": "Is it something found beyond Earth, such as in space or the universe?", "response": "no"}, {"question": "Is it an abstract concept or idea?", "response": "yes"}, {"question": "Is it related to mathematics?", "response": "no"}, {"question": "Is it related to science or scientific principles?", "response": "yes"}, {"question": "Is it related to physics?", "response": "no"}, {"question": "Is it related to biology?", "response": "yes"}, {"question": "Is it related to genetics or heredity?", "response": "no"}, {"question": "Is it related to the process of evolution?", "response": "yes"}, {"question": "Is it related to the concept of natural selection?", "response": "yes"}, {"question": "Is it commonly described as \"survival of the fittest\"?", "response": "no"}, {"question": "Is it related to the concept of adaptation?", "response": "yes"}, {"question": "Is it the concept of evolution by artificial selection?", "response": "no"}, {"question": "Is it the concept of adaptation itself?", "response": "no"}, {"question": "Is it sexual selection?", "response": "no"}, {"question": "Is it genetic drift?", "response": "no"}, {"question": "Is it the concept of speciation?", "response": "no"}, {"question": "Is it the Red Queen hypothesis?", "response": "no"}]}
{"index": 183, "id": "3a63fa7c-3b86-4469-8e3f-14d2ceaf0b82", "answer": "Headphones", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 11, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for entertainment purposes?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it primarily used for playing video games?", "response": "no"}, {"question": "Is it primarily used for listening to music?", "response": "yes"}, {"question": "Is it typically portable and designed to be easily carried around?", "response": "yes"}, {"question": "Is it primarily worn on the ears?", "response": "yes"}, {"question": "Is it wireless?", "response": "yes"}, {"question": "Is it headphones?", "response": "yes"}]}
{"index": 182, "id": "1469c4ce-2b04-49db-856a-8788ecb33359", "answer": "Wallet", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it typically used in the kitchen?", "response": "no"}, {"question": "Is it typically found in a bedroom?", "response": "no"}, {"question": "Is it commonly found in an office or workspace?", "response": "yes"}, {"question": "Is it primarily used for writing or drawing?", "response": "no"}, {"question": "Is it primarily used with a computer?", "response": "yes"}, {"question": "Is it used for inputting text?", "response": "no"}, {"question": "Is it primarily a display device?", "response": "no"}, {"question": "Is it used for audio output?", "response": "no"}, {"question": "Is it primarily used for navigation or controlling a pointer on a computer?", "response": "no"}, {"question": "Is it primarily used for printing or producing physical copies of documents?", "response": "no"}, {"question": "Is it primarily used for data storage?", "response": "no"}, {"question": "Is it primarily used for communication or connectivity?", "response": "no"}, {"question": "Is it primarily used for temperature control or air movement?", "response": "no"}, {"question": "Is it primarily used for physical security or protection of assets?", "response": "no"}, {"question": "Is it primarily used for visual recording or capturing images?", "response": "no"}, {"question": "Is it primarily used for organizing or storing documents?", "response": "no"}, {"question": "Is it a surge protector?", "response": "no"}]}
{"index": 62, "id": "a13d36f2-3dbf-4d50-becf-43d4292d8e51", "answer": "Laptop", "category": "object", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 14, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it smaller than a car?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "yes"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used in the kitchen?", "response": "no"}, {"question": "Is it primarily used for cleaning or maintaining a household?", "response": "no"}, {"question": "Is it primarily used in an office or for work-related tasks?", "response": "yes"}, {"question": "Is it electronic?", "response": "yes"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it used for data entry or creating documents?", "response": "yes"}, {"question": "Is it a keyboard?", "response": "no"}, {"question": "Is it a computer?", "response": "yes"}, {"question": "Is it a laptop?", "response": "yes"}]}
{"index": 147, "id": "f8c7adad-0195-4ab2-b184-cd29ed478095", "answer": "Jurassic Park", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "n/a"}, {"question": "Is it primarily used for entertainment?", "response": "yes"}, {"question": "Is it electronic?", "response": "n/a"}, {"question": "Is it something you can physically hold in your hand?", "response": "no"}, {"question": "Is it a type of building or structure?", "response": "no"}, {"question": "Is it larger than a refrigerator?", "response": "yes"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it an amusement park ride?", "response": "no"}, {"question": "Is it a type of screen or display?", "response": "no"}, {"question": "Is it primarily used for sports or physical activity?", "response": "no"}, {"question": "Is it commonly found in movie theaters?", "response": "yes"}, {"question": "Is it the movie screen?", "response": "no"}, {"question": "Is it the seats?", "response": "no"}, {"question": "Is it the projector?", "response": "no"}, {"question": "Is it the concession stand?", "response": "no"}, {"question": "Is it the popcorn machine?", "response": "no"}, {"question": "Is it the ticket booth?", "response": "no"}, {"question": "Is it the lobby?", "response": "no"}]}
{"index": 161, "id": "f8f42757-1d95-43b1-af50-91a5dc49837d", "answer": "The Titanic", "category": "fiction", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it something man-made?", "response": "yes"}, {"question": "Is it commonly found in a household?", "response": "no"}, {"question": "Is it primarily used outdoors?", "response": "yes"}, {"question": "Is it primarily used for transportation?", "response": "yes"}, {"question": "Is it powered by an engine or motor?", "response": "yes"}, {"question": "Is it capable of carrying more than five people at once?", "response": "yes"}, {"question": "Is it primarily used for public transportation?", "response": "yes"}, {"question": "Is it a type of bus?", "response": "no"}, {"question": "Is it a train?", "response": "no"}, {"question": "Is it an airplane?", "response": "no"}, {"question": "Is it a type of boat or ship?", "response": "yes"}, {"question": "Is it primarily used to transport vehicles?", "response": "no"}, {"question": "Is it used primarily for passenger travel?", "response": "yes"}, {"question": "Is it a ferry?", "response": "no"}, {"question": "Is it a cruise ship?", "response": "no"}, {"question": "Is it a water taxi?", "response": "no"}, {"question": "Is it a yacht?", "response": "no"}, {"question": "Is it a submarine?", "response": "no"}, {"question": "Is it a hovercraft?", "response": "no"}]}
{"index": 17, "id": "7aac8b37-8a76-4919-b209-547dedd352a0", "answer": "Rihanna", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "yes"}, {"question": "Is it human?", "response": "yes"}, {"question": "Is this person real?", "response": "yes"}, {"question": "Is this person currently alive?", "response": "yes"}, {"question": "Is this person primarily known for their work in entertainment?", "response": "yes"}, {"question": "Is this person primarily known for their work in music?", "response": "yes"}, {"question": "Is this person primarily known as a singer?", "response": "yes"}, {"question": "Is this person primarily known for performing pop music?", "response": "yes"}, {"question": "Is this person primarily known for being female?", "response": "yes"}, {"question": "Has this singer won a Grammy Award?", "response": "yes"}, {"question": "Is this singer primarily known for being American?", "response": "no"}, {"question": "Is this singer primarily known for performing in English?", "response": "yes"}, {"question": "Is this singer primarily known for being British?", "response": "no"}, {"question": "Is this singer primarily known for being Canadian?", "response": "no"}, {"question": "Is this singer primarily known for being Australian?", "response": "no"}, {"question": "Is this singer primarily known for being from Europe?", "response": "no"}, {"question": "Is this singer primarily known for being from Asia?", "response": "no"}, {"question": "Is this singer primarily known for being from Africa?", "response": "no"}, {"question": "Is it Shakira?", "response": "no"}, {"question": "Is it Dua Lipa?", "response": "no"}]}
@@ -0,0 +1,211 @@
{"index": 95, "answer": "Spaghetti", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 15, "answer": "Isaac Newton", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 30, "answer": "Taj Mahal", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 158, "answer": "The Joker", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 128, "answer": "Golf", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 115, "answer": "Music", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 69, "answer": "Watch", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 170, "answer": "Cloud", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 174, "answer": "Treasure", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 45, "answer": "Eagle", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 66, "answer": "Umbrella", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 182, "answer": "Wallet", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 165, "answer": "Moon", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 78, "answer": "Harp", "category": "instrument", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 186, "answer": "Blanket", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 177, "answer": "Wizard", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 56, "answer": "Bear", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 152, "answer": "Star Wars", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 82, "answer": "Smartphone", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 68, "answer": "Lock", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 124, "answer": "Basketball", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 16, "answer": "William Shakespeare", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 148, "answer": "SpongeBob", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 93, "answer": "Watermelon", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 65, "answer": "Camera", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 60, "answer": "Chair", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 84, "answer": "Coffee", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 67, "answer": "Bicycle", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 125, "answer": "Tennis", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 132, "answer": "Chess", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 9, "answer": "Leonardo da Vinci", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 18, "answer": "Gandhi", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 55, "answer": "Rabbit", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 75, "answer": "Airplane", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 150, "answer": "Frozen", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 104, "answer": "Love", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 135, "answer": "Archery", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 137, "answer": "Skateboarding", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 164, "answer": "Volcano", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 76, "answer": "Piano", "category": "instrument", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 79, "answer": "Trombone", "category": "instrument", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 197, "answer": "Mouse", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 38, "answer": "Antarctica", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 24, "answer": "Sydney Opera House", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 122, "answer": "Memory", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 195, "answer": "Credit card", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 29, "answer": "Big Ben", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 19, "answer": "Picasso", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 143, "answer": "Lightsaber", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 86, "answer": "Chocolate", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 114, "answer": "Technology", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 173, "answer": "Alien", "category": "creature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 5, "answer": "Harry Potter", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 126, "answer": "Swimming", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 117, "answer": "War", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 73, "answer": "Clock", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 140, "answer": "Dancing", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 98, "answer": "Orange juice", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 172, "answer": "Robot", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 96, "answer": "Cheese", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 169, "answer": "Ocean", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 97, "answer": "Bread", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 31, "answer": "Niagara Falls", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 12, "answer": "Steve Jobs", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 35, "answer": "The North Pole", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 119, "answer": "Nature", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 42, "answer": "Dolphin", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 189, "answer": "Car", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 90, "answer": "Sandwich", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 136, "answer": "Fishing", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 51, "answer": "Horse", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 127, "answer": "Running", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 162, "answer": "Stranger Things", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 41, "answer": "Tiger", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 118, "answer": "Truth", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 113, "answer": "Art", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 26, "answer": "Sahara Desert", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 139, "answer": "Climbing", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 100, "answer": "Pancake", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 111, "answer": "Power", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 2, "answer": "Cleopatra", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 77, "answer": "Violin", "category": "instrument", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 46, "answer": "Panda", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 187, "answer": "Pen", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 191, "answer": "Printer", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 85, "answer": "Apple", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 161, "answer": "The Titanic", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 36, "answer": "Hawaii", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 190, "answer": "Air Conditioner", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 61, "answer": "Mirror", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 22, "answer": "Mount Everest", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 141, "answer": "Hiking", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 101, "answer": "Taco", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 33, "answer": "London", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 11, "answer": "Marilyn Monroe", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 194, "answer": "Washing machine", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 159, "answer": "Pikachu", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 6, "answer": "Elon Musk", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 27, "answer": "Amazon Rainforest", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 120, "answer": "Dream", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 4, "answer": "Batman", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 32, "answer": "Rome", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 142, "answer": "Billiards", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 145, "answer": "Millennium Falcon", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 109, "answer": "Justice", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 144, "answer": "Iron Man", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 10, "answer": "Barack Obama", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 62, "answer": "Laptop", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 112, "answer": "Honesty", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 146, "answer": "The Simpsons", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 166, "answer": "Sunflower", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 0, "answer": "Taylor Swift", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 198, "answer": "Remote", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 153, "answer": "Avatar", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 70, "answer": "Book", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 123, "answer": "Soccer", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 64, "answer": "Telescope", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 44, "answer": "Giraffe", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 163, "answer": "Rainbow", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 28, "answer": "Eiffel Tower", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 40, "answer": "Elephant", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 108, "answer": "Friendship", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 155, "answer": "Spider-Man", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 156, "answer": "Black Panther", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 25, "answer": "The Great Wall", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 23, "answer": "New York", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 184, "answer": "Microwave", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 147, "answer": "Jurassic Park", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 81, "answer": "Scissors", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 39, "answer": "Hollywood", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 168, "answer": "Lightning", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 47, "answer": "Kangaroo", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 94, "answer": "Popcorn", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 154, "answer": "Game of Thrones", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 43, "answer": "Penguin", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 138, "answer": "Volleyball", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 3, "answer": "Sherlock Holmes", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 105, "answer": "Happiness", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 53, "answer": "Cat", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 133, "answer": "Baseball", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 180, "answer": "Dragon", "category": "creature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 178, "answer": "Unicorn", "category": "creature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 185, "answer": "Toothbrush", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 49, "answer": "Shark", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 80, "answer": "Skateboard", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 34, "answer": "Disneyland", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 7, "answer": "Oprah Winfrey", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 110, "answer": "Peace", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 91, "answer": "Salad", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 83, "answer": "Pizza", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 176, "answer": "Pirate", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 181, "answer": "Meteor", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 89, "answer": "Sushi", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 8, "answer": "Beyonc\u00e9", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 13, "answer": "Michael Jordan", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 59, "answer": "Whale", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 171, "answer": "Tornado", "category": "nature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 131, "answer": "Skiing", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 17, "answer": "Rihanna", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 72, "answer": "Candle", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 175, "answer": "Map", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 134, "answer": "Yoga", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 167, "answer": "Diamond", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 183, "answer": "Headphones", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 63, "answer": "Guitar", "category": "instrument", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 54, "answer": "Snake", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 107, "answer": "Knowledge", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 50, "answer": "Owl", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 196, "answer": "Bed", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 58, "answer": "Fox", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 48, "answer": "Wolf", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 88, "answer": "Hamburger", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 21, "answer": "Tokyo", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 57, "answer": "Octopus", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 160, "answer": "Wonder Woman", "category": "character", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 192, "answer": "Lamp", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 129, "answer": "Boxing", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 37, "answer": "Las Vegas", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 157, "answer": "Hogwarts", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 193, "answer": "Refrigerator", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 1, "answer": "Albert Einstein", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 52, "answer": "Dog", "category": "animal", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 149, "answer": "The Godfather", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 130, "answer": "Surfing", "category": "sport", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 151, "answer": "The Matrix", "category": "fiction", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 103, "answer": "Freedom", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 99, "answer": "Steak", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 116, "answer": "Science", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 87, "answer": "Ice cream", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 74, "answer": "Backpack", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 121, "answer": "Fear", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 199, "answer": "Sunglasses", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 20, "answer": "Paris", "category": "place", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 188, "answer": "Drone", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 71, "answer": "Television", "category": "object", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 106, "answer": "Time", "category": "concept", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 14, "answer": "Mother Teresa", "category": "person", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 92, "answer": "Donut", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 179, "answer": "Ghost", "category": "creature", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 102, "answer": "Banana", "category": "food", "error": "Error code: 400 - {'error': {'message': \"{'error': '/chat/completions: Invalid model name passed in model=Qwen/Qwen3-235B-A22B-Instruct-2507. Call `/v1/models` to view available models for your key.'}\", 'type': 'None', 'param': 'None', 'code': '400'}}", "exception": null}
{"index": 95, "id": "215f2b47-cb97-4d13-b511-d6f5c434605e", "answer": "Spaghetti", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living organism?", "response": "no"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a kitchen utensil?", "response": "no"}, {"question": "Is it a tool used for cleaning?", "response": "no"}, {"question": "Is it a tool used for writing?", "response": "no"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it a tool used for repairing or fixing things?", "response": "no"}, {"question": "Is it a tool used for measuring?", "response": "no"}, {"question": "Is it a tool used for cutting?", "response": "no"}, {"question": "Is it a tool used for fastening or securing objects?", "response": "no"}, {"question": "Is it a tool used for opening or closing containers?", "response": "no"}, {"question": "Is it a tool used for lighting a fire?", "response": "no"}, {"question": "Is it a tool used for grooming or personal care?", "response": "no"}, {"question": "Is it a tool used for connecting or joining materials together?", "response": "no"}, {"question": "Is it a paperclip?", "response": "no"}, {"question": "Is it a stapler?", "response": "no"}, {"question": "Is it a tool used for hanging or mounting objects on walls?", "response": "no"}, {"question": "Is it a hammer?", "response": "no"}, {"question": "Is it a key?", "response": "no"}]}
{"index": 15, "id": "84c80d82-8c7a-452e-92f9-fc764d4e04bf", "answer": "Isaac Newton", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it an object?", "response": "no"}, {"question": "Is it a living thing?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a physical place?", "response": "no"}, {"question": "Is it a fictional character?", "response": "no"}, {"question": "Is it a sports team?", "response": "no"}, {"question": "Is it a sports league?", "response": "no"}, {"question": "Is it a historical event?", "response": "no"}, {"question": "Is it a natural phenomenon?", "response": "no"}, {"question": "Is it a form of entertainment?", "response": "no"}, {"question": "Is it a form of communication?", "response": "no"}, {"question": "Is it a scientific theory?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a form of transportation?", "response": "no"}, {"question": "Is it a holiday?", "response": "no"}, {"question": "Is it a natural disaster?", "response": "no"}, {"question": "Is it a mountain?", "response": "no"}, {"question": "Is it a celestial body?", "response": "no"}, {"question": "Is it a color?", "response": "no"}, {"question": "Is it a letter of the alphabet?", "response": "no"}]}
{"index": 30, "id": "85f5e4dc-6e02-4db7-90d2-24428a001399", "answer": "Taj Mahal", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living organism?", "response": "no"}, {"question": "Is it a human-made object?", "response": "yes"}, {"question": "Is it a tool used in everyday household tasks?", "response": "no"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it a mode of transportation?", "response": "no"}, {"question": "Is it a clothing item?", "response": "no"}, {"question": "Is it a kitchen appliance?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a sports equipment?", "response": "no"}, {"question": "Is it a book?", "response": "no"}, {"question": "Is it a common writing utensil?", "response": "no"}, {"question": "Is it a common household object not typically found in the kitchen or bathroom?", "response": "no"}, {"question": "Is it a common household object found in the bedroom or living room?", "response": "no"}, {"question": "Is it a common household object found in the bathroom?", "response": "no"}, {"question": "Is it a common household object found in an office or study?", "response": "no"}, {"question": "Is it a common household object found in hallways or used for organization?", "response": "no"}, {"question": "Is it a common household object used for illumination?", "response": "no"}, {"question": "Is it a common household object used for timekeeping?", "response": "no"}, {"question": "Is it a mirror?", "response": "no"}]}
{"index": 158, "id": "edbd2a58-0f15-4ec2-bca7-a32882942489", "answer": "The Joker", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living organism?", "response": "yes"}, {"question": "Is it an animal?", "response": "n/a"}, {"question": "Is it a real animal?", "response": "no"}, {"question": "Is it a fictional creature?", "response": "no"}, {"question": "Is it a mythical being?", "response": "no"}, {"question": "Is it a plant?", "response": "no"}, {"question": "Is it a fungus?", "response": "no"}, {"question": "Is it a microorganism?", "response": "no"}, {"question": "Is it a non-animal living organism?", "response": "no"}, {"question": "Is it a living organism that is not classified under known biological kingdoms?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a natural phenomenon?", "response": "no"}, {"question": "Is it a virus?", "response": "no"}, {"question": "Is it a natural geological formation?", "response": "no"}, {"question": "Is it a natural biological entity?", "response": "no"}, {"question": "Is it a natural entity that is not biological or geological in nature?", "response": "no"}, {"question": "Is it an abstract entity?", "response": "no"}, {"question": "Is it a fictional character?", "response": "yes"}, {"question": "Is it a character from a fairy tale?", "response": "no"}, {"question": "Is it a superhero?", "response": "no"}]}
{"index": 128, "id": "08dec2a4-6333-463b-b888-1592230d55d3", "answer": "Golf", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living organism?", "response": "no"}, {"question": "Is it a man-made object?", "response": "no"}, {"question": "Is it a natural phenomenon?", "response": "no"}, {"question": "Is it a physical place or location?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "no"}, {"question": "Is it a celestial body?", "response": "no"}, {"question": "Is it a force or form of energy?", "response": "no"}, {"question": "Is it a geological formation?", "response": "no"}, {"question": "Is it a body of water?", "response": "no"}, {"question": "Is it a meteorological event?", "response": "no"}, {"question": "Is it a subatomic particle?", "response": "no"}, {"question": "Is it a mathematical constant?", "response": "no"}, {"question": "Is it a naturally occurring chemical element?", "response": "no"}, {"question": "Is it a naturally occurring mineral?", "response": "no"}, {"question": "Is it a naturally occurring organic compound?", "response": "no"}, {"question": "Is it a naturally occurring inorganic compound?", "response": "n/a"}, {"question": "Is it a naturally occurring inorganic substance?", "response": "no"}, {"question": "Is it a naturally occurring inorganic compound?", "response": "no"}, {"question": "Is it a naturally occurring non-compound substance?", "response": "n/a"}, {"question": "Is it gravity?", "response": "no"}]}
{"index": 115, "id": "af113f90-d1a5-4acf-999a-f269624f60bc", "answer": "Music", "category": "concept", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 9, "interactions": [{"question": "Is it a living organism?", "response": "no"}, {"question": "Is it man-made?", "response": "yes"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a mode of transportation?", "response": "no"}, {"question": "Is it a form of entertainment?", "response": "yes"}, {"question": "Is it a type of performance art?", "response": "yes"}, {"question": "Is it a form of dance?", "response": "no"}, {"question": "Is it a form of theater?", "response": "no"}, {"question": "Is it music?", "response": "yes"}]}
{"index": 69, "id": "eb13eaba-e9f0-4559-bbdc-a5c41532d36e", "answer": "Watch", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living thing?", "response": "no"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "yes"}, {"question": "Is it primarily used for communication?", "response": "no"}, {"question": "Is it primarily used for entertainment?", "response": "no"}, {"question": "Is it primarily used for generating or consuming energy?", "response": "no"}, {"question": "Is it primarily used for storing or processing data?", "response": "yes"}, {"question": "Is it a computer?", "response": "yes"}, {"question": "Is it a desktop computer?", "response": "no"}, {"question": "Is it a laptop?", "response": "no"}, {"question": "Is it a tablet?", "response": "no"}, {"question": "Is it a smartphone?", "response": "no"}, {"question": "Is it a wearable computer?", "response": "yes"}, {"question": "Is it a smartwatch?", "response": "no"}, {"question": "Is it a fitness tracker?", "response": "no"}, {"question": "Is it Google Glass?", "response": "no"}, {"question": "Is it a VR headset?", "response": "no"}, {"question": "Is it an Apple Watch?", "response": "no"}, {"question": "Is it a smart ring?", "response": "no"}, {"question": "Is it a smart glasses device?", "response": "no"}]}
{"index": 170, "id": "132aad0f-f8c3-4ba6-a684-4bd5ff4d11c9", "answer": "Cloud", "category": "nature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living organism?", "response": "no"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a tool?", "response": "yes"}, {"question": "Is it primarily used in household tasks?", "response": "no"}, {"question": "Is it primarily used in construction or outdoor work?", "response": "no"}, {"question": "Is it a tool used in sports or physical activities?", "response": "no"}, {"question": "Is it a tool used in artistic or creative activities?", "response": "yes"}, {"question": "Is it a paintbrush?", "response": "no"}, {"question": "Is it a writing instrument?", "response": "no"}, {"question": "Is it a sculpting tool?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a tool used in drawing or sketching?", "response": "no"}, {"question": "Is it a sewing needle?", "response": "no"}, {"question": "Is it a chisel?", "response": "no"}, {"question": "Is it a tool used in printing or engraving?", "response": "no"}, {"question": "Is it a tool used in woodworking or carving?", "response": "no"}, {"question": "Is it a tool used in metalworking or jewelry making?", "response": "no"}, {"question": "Is it a tool used in pottery or ceramics?", "response": "no"}, {"question": "Is it a spatula?", "response": "no"}]}
{"index": 174, "id": "4f9e30b2-2deb-40c8-abce-2bb459634596", "answer": "Treasure", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it an animal?", "response": "no"}, {"question": "Is it a living thing?", "response": "no"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it an electronic device?", "response": "no"}, {"question": "Is it a household object?", "response": "no"}, {"question": "Is it a tool?", "response": "no"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it a piece of clothing?", "response": "no"}, {"question": "Is it a kitchen utensil?", "response": "no"}, {"question": "Is it a type of sports equipment?", "response": "no"}, {"question": "Is it a form of transportation?", "response": "no"}, {"question": "Is it a writing instrument?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a book?", "response": "no"}, {"question": "Is it a piece of jewelry?", "response": "no"}, {"question": "Is it a mirror?", "response": "no"}, {"question": "Is it a clock?", "response": "no"}, {"question": "Is it a key?", "response": "no"}, {"question": "Is it a hammer?", "response": "no"}, {"question": "Is it a chair?", "response": "no"}]}
{"index": 45, "id": "8fd61c6f-24d7-4b18-8b6a-10cac54eb706", "answer": "Eagle", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living organism?", "response": "yes"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Does it live primarily in water?", "response": "no"}, {"question": "Does it have fur?", "response": "no"}, {"question": "Does it have feathers?", "response": "yes"}, {"question": "Is it a bird?", "response": "yes"}, {"question": "Is it a flightless bird?", "response": "no"}, {"question": "Is it a bird commonly found in urban or city environments?", "response": "no"}, {"question": "Is it a bird that migrates long distances?", "response": "yes"}, {"question": "Is it a bird that migrates across continents?", "response": "yes"}, {"question": "Is it a bird that breeds in the Arctic and winters in the Antarctic?", "response": "no"}, {"question": "Is it the Arctic Tern?", "response": "no"}, {"question": "Is it the Barn Swallow?", "response": "no"}, {"question": "Is it the **Bald Eagle**?", "response": "no"}, {"question": "Is it the **Swallow**?", "response": "no"}, {"question": "Is it the **American Robin**?", "response": "no"}, {"question": "Is it the **Peregrine Falcon**?", "response": "no"}, {"question": "Is it the **Bar-tailed Godwit**?", "response": "no"}, {"question": "Is it the **Arctic Tern**?", "response": "no"}, {"question": "Is it the **Swainson's Hawk**?", "response": "no"}]}
{"index": 66, "id": "2fa619e1-07e8-40e9-97f9-93d080a46297", "answer": "Umbrella", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a living organism?", "response": "no"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it a tool?", "response": "yes"}, {"question": "Is it typically used in a household setting?", "response": "no"}, {"question": "Is it a tool used in construction or building?", "response": "no"}, {"question": "Is it a tool used in sports or physical activities?", "response": "no"}, {"question": "Is it a tool used in artistic or creative activities?", "response": "yes"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a tool used in visual arts, such as drawing or painting?", "response": "no"}, {"question": "Is it a tool used in writing or\u4e66\u6cd5 (calligraphy)?", "response": "no"}, {"question": "Is it a tool used in sculpting or carving?", "response": "no"}, {"question": "Is it a tool used in photography or filmmaking?", "response": "yes"}, {"question": "Is it a camera?", "response": "no"}, {"question": "Is it a tripod?", "response": "no"}, {"question": "Is it a microphone?", "response": "no"}, {"question": "Is it a lighting equipment used in photography or filmmaking?", "response": "yes"}, {"question": "Is it a reflector?", "response": "no"}, {"question": "Is it a softbox?", "response": "no"}, {"question": "Is it a diffuser?", "response": "yes"}, {"question": "Is it a flash?", "response": "no"}]}
@@ -0,0 +1,17 @@
{"index": 95, "id": "ecb79aa7-50c6-48cd-9f88-3bd2b33fee65", "answer": "Spaghetti", "category": "food", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it a thing that can be found in a kitchen?", "response": "yes"}, {"question": "Is it a cooking utensil?", "response": "no"}, {"question": "Is it a kitchen appliance?", "response": "no"}, {"question": "Is it a food?", "response": "yes"}, {"question": "Is it a fruit?", "response": "no"}, {"question": "Is it a vegetable?", "response": "no"}, {"question": "Is it a type of grain?", "response": "no"}, {"question": "Is it a type of nut?", "response": "no"}, {"question": "Is it a spice?", "response": "no"}, {"question": "Is it a condiment?", "response": "no"}, {"question": "Is it a common ingredient in salad dressings?", "response": "no"}, {"question": "Is it a dairy product?", "response": "no"}, {"question": "Is it a type of bread?", "response": "no"}, {"question": "Is it a type of bean?", "response": "no"}, {"question": "Is it a type of legume?", "response": "no"}, {"question": "Is it a type of seasoning?", "response": "no"}, {"question": "Is it olive oil?", "response": "no"}]}
{"index": 15, "id": "66f66c06-5a44-4933-a2f3-8d77c0882520", "answer": "Isaac Newton", "category": "person", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "yes"}, {"question": "Is it a real person rather than a fictional character?", "response": "yes"}, {"question": "Is it a historically significant figure?", "response": "yes"}, {"question": "Is it a person who lived more than 100 years ago?", "response": "yes"}, {"question": "Is it a person who lived more than 500 years ago?", "response": "no"}, {"question": "Is it a person who lived more than 1,000 years ago?", "response": "no"}, {"question": "Is it a person who lived between 500 and 1,000 years ago?", "response": "no"}, {"question": "Is it a person who lived between 400 and 500 years ago?", "response": "no"}, {"question": "Is it a person who lived between 300 and 400 years ago?", "response": "yes"}, {"question": "Is it a person who lived between 300 and 350 years ago?", "response": "yes"}, {"question": "Is it a person who lived between 300 and 325 years ago?", "response": "yes"}, {"question": "Is it a person who lived between 300 and 312 years ago?", "response": "yes"}, {"question": "Is it a person who lived between 300 and 306 years ago?", "response": "yes"}, {"question": "Is it a person who lived between 300 and 303 years ago?", "response": "yes"}, {"question": "Is it a person who lived between 300 and 301 years ago?", "response": "no"}, {"question": "Is it a person who lived between 301 and 303 years ago?", "response": "yes"}, {"question": "Is it a person who lived between 301 and 302 years ago?", "response": "yes"}, {"question": "Is it a person who lived around 301 or 302 years ago?", "response": "no"}, {"question": "Is it Christopher Columbus?", "response": "no"}, {"question": "Is it Leonardo da Vinci?", "response": "no"}]}
{"index": 30, "id": "f5cd3b71-a715-4b57-8cf6-e36fe9b5cd6f", "answer": "Taj Mahal", "category": "place", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it a tool?", "response": "no"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it a household item?", "response": "no"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it a kitchen appliance?", "response": "no"}, {"question": "Is it a transportation device?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a piece of technology?", "response": "no"}, {"question": "Is it a piece of electronic equipment?", "response": "no"}, {"question": "Is it a piece of wearable technology?", "response": "no"}, {"question": "Is it a type of container?", "response": "no"}, {"question": "Is it a piece of decorative art?", "response": "no"}, {"question": "Is it a piece of equipment used in sports?", "response": "no"}, {"question": "Is it a piece of equipment used in medical settings?", "response": "no"}, {"question": "Is it a type of machine?", "response": "no"}, {"question": "Is it a piece of equipment used in construction?", "response": "no"}, {"question": "Is it a piece of outdoor recreational equipment?", "response": "no"}, {"question": "Is it a key?", "response": "no"}]}
{"index": 158, "id": "99e2b570-e49a-4490-af10-bdddeed11e9f", "answer": "The Joker", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "yes"}, {"question": "Is it a real person?", "response": "no"}, {"question": "Is it a fictional character from a well-known book or film?", "response": "yes"}, {"question": "Is it a character from a famous fantasy story?", "response": "no"}, {"question": "Is it a character from a famous science fiction story?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction literature?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction television?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction film?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction film that is also a cyborg?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is not a cyborg but has enhanced technological abilities?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is not a cyborg and does not have enhanced technological abilities, but is instead magical or supernatural in nature?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is not a cyborg, does not have enhanced technological abilities, and is not magical or supernatural, but is instead a human with extraordinary leadership or strategic abilities?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is a robot or artificial intelligence?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is a humanoid alien?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is a non-human entity with biological but non-terrestrial origins?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is a non-human entity with biological but non-terrestrial origins?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is a non-human entity with biological but non-terrestrial origins?", "response": "no"}, {"question": "Is it a character from a famous work of science fiction that is a non-human entity with biological but non-terrestrial origins?", "response": "no"}, {"question": "Is it a character from a famous work of fantasy literature?", "response": "no"}, {"question": "Is it a character from a famous work of fantasy film or television?", "response": "no"}]}
{"index": 128, "id": "264a18f6-92d4-4d97-ad8d-46a666233832", "answer": "Golf", "category": "sport", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it a real-world object?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a fictional character?", "response": "no"}, {"question": "Is it a food?", "response": "no"}, {"question": "Is it a sport?", "response": "yes"}, {"question": "Is it a team sport?", "response": "no"}, {"question": "Is it an individual athletic event?", "response": "yes"}, {"question": "Is it swimming?", "response": "no"}, {"question": "Is it gymnastics?", "response": "no"}, {"question": "Is it a track and field event?", "response": "no"}, {"question": "Is it a throwing event?", "response": "no"}, {"question": "Is it a martial arts competition?", "response": "no"}, {"question": "Is it wrestling?", "response": "no"}, {"question": "Is it a combat sport?", "response": "no"}, {"question": "Is it fencing?", "response": "no"}, {"question": "Is it archery?", "response": "no"}, {"question": "Is it boxing?", "response": "no"}]}
{"index": 115, "id": "7cb18e36-d62a-4ee3-908e-3b62a64aff6c", "answer": "Music", "category": "concept", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it an object?", "response": "no"}, {"question": "Is it a concept?", "response": "yes"}, {"question": "Is it a tangible concept?", "response": "no"}, {"question": "Is it an abstract concept?", "response": "yes"}, {"question": "Is it a fundamental idea in philosophy?", "response": "no"}, {"question": "Is it a concept related to human consciousness?", "response": "yes"}, {"question": "Is it a concept related to self-awareness?", "response": "no"}, {"question": "Is it a concept related to perception or awareness?", "response": "yes"}, {"question": "Is it a concept related to mental awareness?", "response": "yes"}, {"question": "Is it a concept related to attention?", "response": "no"}, {"question": "Is it consciousness?", "response": "no"}, {"question": "Is it attention?", "response": "no"}, {"question": "Is it a mental state that involves awareness of one's surroundings?", "response": "no"}, {"question": "Is it mindfulness?", "response": "no"}, {"question": "Is it awareness?", "response": "no"}, {"question": "Is it a state of being awake?", "response": "no"}, {"question": "Is it cognition?", "response": "no"}]}
{"index": 69, "id": "36f865ac-e58e-4497-9d93-cce241a2c8c0", "answer": "Watch", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it a tool?", "response": "yes"}, {"question": "Is it used for cutting?", "response": "no"}, {"question": "Is it a writing instrument?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a kitchen utensil?", "response": "no"}, {"question": "Is it a handheld tool used for driving nails?", "response": "no"}, {"question": "Is it a type of fastener?", "response": "no"}, {"question": "Is it a type of container?", "response": "no"}, {"question": "Is it a type of clothing?", "response": "no"}, {"question": "Is it a type of measuring tool?", "response": "yes"}, {"question": "Is it a measuring tool used for determining distance?", "response": "no"}, {"question": "Is it a measuring tool used for measuring angles?", "response": "no"}, {"question": "Is it a measuring tool used for determining weight?", "response": "no"}, {"question": "Is it a scale?", "response": "no"}, {"question": "Is it a measuring tool used for length?", "response": "no"}, {"question": "Is it a ruler?", "response": "no"}]}
{"index": 170, "id": "cc9181ed-1690-4947-a863-e49d260e0cf2", "answer": "Cloud", "category": "nature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "yes"}, {"question": "Is it a fictional character?", "response": "yes"}, {"question": "Is it a character from a well-known book?", "response": "no"}, {"question": "Is it a character from a famous movie?", "response": "yes"}, {"question": "Is it a character from a major Hollywood franchise?", "response": "no"}, {"question": "Is it a character from a Marvel or DC film?", "response": "no"}, {"question": "Is it a character from a Star Wars film?", "response": "no"}, {"question": "Is it a character from a non-Marvel, non-DC, non-Star Wars blockbuster film?", "response": "no"}, {"question": "Is it a character from a famous fantasy film?", "response": "yes"}, {"question": "Is it a character from The Lord of the Rings film trilogy?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by DreamWorks?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by Walt Disney Pictures?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by Pixar?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by Universal Pictures?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by Columbia Pictures?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by Warner Bros.?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by a studio other than Disney, DreamWorks, Pixar, Universal, Columbia, Warner Bros., Marvel, DC, or Star Wars?", "response": "yes"}, {"question": "Is it a character from a famous fantasy film produced by a studio that is not a major Hollywood studio and not associated with the major franchises?", "response": "no"}, {"question": "Is it a character from a famous fantasy film produced by a studio known primarily for non-franchise, original content?", "response": "no"}, {"question": "Is it a character from the film *Pan's Labyrinth*?", "response": "no"}]}
{"index": 174, "id": "43a4ca76-14aa-47a4-8a49-f94226b933c4", "answer": "Treasure", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it a tool used for cutting?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a household object?", "response": "no"}, {"question": "Is it used for writing or drawing?", "response": "no"}, {"question": "Is it a transport vehicle?", "response": "no"}, {"question": "Is it a device used for communication?", "response": "no"}, {"question": "Is it a piece of electronic equipment?", "response": "no"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it a type of food?", "response": "no"}, {"question": "Is it a type of clothing?", "response": "no"}, {"question": "Is it a type of technology?", "response": "no"}, {"question": "Is it a type of weapon?", "response": "no"}, {"question": "Is it a type of container?", "response": "no"}, {"question": "Is it a key?", "response": "no"}, {"question": "Is it a door?", "response": "no"}]}
{"index": 45, "id": "355b031a-c5ec-41ca-926d-8343b2944953", "answer": "Eagle", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it a thing?", "response": "yes"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "no"}, {"question": "Is it a reptile?", "response": "no"}, {"question": "Is it a bird?", "response": "yes"}, {"question": "Is it a bird that can fly?", "response": "yes"}, {"question": "Is it a bird that is commonly found in urban environments?", "response": "no"}, {"question": "Is it a bird that is native to the Americas?", "response": "yes"}, {"question": "Is it a bird that is native to North America and known for its bright red crest?", "response": "no"}, {"question": "Is it a bird native to North America that is known for its loud, distinctive call?", "response": "yes"}, {"question": "Is it a North American bird known for its loud, territorial call and commonly associated with forests?", "response": "no"}, {"question": "Is it a North American bird known for its loud, territorial call and commonly associated with open fields or grasslands?", "response": "no"}, {"question": "Is it a North American bird known for its loud, territorial call and commonly associated with wetlands?", "response": "no"}, {"question": "Is it a North American bird known for its loud, territorial call and commonly associated with open marshes?", "response": "no"}, {"question": "Is it a North American bird known for its loud, territorial call and commonly associated with wooded areas?", "response": "no"}, {"question": "Is it a North American bird known for its loud, territorial call and commonly associated with dense forests?", "response": "no"}, {"question": "Is it a North American bird known for its loud, territorial call and commonly associated with open woodlands?", "response": "no"}, {"question": "Is it a Northern Cardinal?", "response": "no"}]}
{"index": 66, "id": "7142ebe4-c53b-4009-b995-cfe208af82a6", "answer": "Umbrella", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it a tool?", "response": "yes"}, {"question": "Is it a handheld tool?", "response": "yes"}, {"question": "Is it used for cutting?", "response": "no"}, {"question": "Is it a knife?", "response": "no"}, {"question": "Is it a writing instrument?", "response": "no"}, {"question": "Is it a measuring tool?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a container?", "response": "no"}, {"question": "Is it a common household tool used for driving nails?", "response": "no"}, {"question": "Is it a handheld, man-made tool used for gripping or holding objects?", "response": "no"}, {"question": "Is it a handheld, man-made tool used for turning screws?", "response": "no"}, {"question": "Is it a handheld, man-made tool used for tightening or loosening bolts?", "response": "no"}, {"question": "Is it a handheld, man-made tool used for gripping or holding objects?", "response": "no"}, {"question": "Is it a handheld, man-made tool used for shaping or smoothing surfaces?", "response": "no"}, {"question": "Is it a handheld, man-made tool used for lifting or prying objects?", "response": "no"}, {"question": "Is it a wrench?", "response": "no"}]}
{"index": 182, "id": "f9173612-999a-441f-bb71-29a4ff49ceb2", "answer": "Wallet", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it a thing that can be found in a kitchen?", "response": "no"}, {"question": "Is it a concept?", "response": "no"}, {"question": "Is it a sport?", "response": "no"}, {"question": "Is it a fictional character?", "response": "no"}, {"question": "Is it a natural phenomenon?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a tool used for cutting?", "response": "no"}, {"question": "Is it a device used for communication?", "response": "no"}, {"question": "Is it a computer?", "response": "no"}, {"question": "Is it a type of fruit?", "response": "no"}, {"question": "Is it a type of clothing?", "response": "no"}, {"question": "Is it a type of plant?", "response": "no"}, {"question": "Is it a type of vehicle?", "response": "no"}, {"question": "Is it a type of energy?", "response": "no"}, {"question": "Is it a type of weather?", "response": "no"}, {"question": "Is it a coin?", "response": "no"}]}
{"index": 165, "id": "5e69a65d-7c3e-403e-9398-ec80fbd9e27d", "answer": "Moon", "category": "nature", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "yes"}, {"question": "Is it a natural place?", "response": "yes"}, {"question": "Is it a mountain?", "response": "no"}, {"question": "Is it a continent?", "response": "no"}, {"question": "Is it a river?", "response": "no"}, {"question": "Is it a lake?", "response": "no"}, {"question": "Is it a lake larger than 10,000 square kilometers?", "response": "no"}, {"question": "Is it a large freshwater lake?", "response": "no"}, {"question": "Is it a large lake smaller than 10,000 square kilometers?", "response": "no"}, {"question": "Is it a body of water smaller than 10,000 square kilometers?", "response": "no"}, {"question": "Is it a lake smaller than 1,000 square kilometers?", "response": "no"}, {"question": "Is it a lake smaller than 100 square kilometers?", "response": "no"}, {"question": "Is it a lake smaller than 10 square kilometers?", "response": "no"}, {"question": "Is it a body of water smaller than 1 square kilometer?", "response": "no"}, {"question": "Is it a lake smaller than 1 square kilometer?", "response": "no"}, {"question": "Is it a body of water smaller than 0.1 square kilometers?", "response": "no"}, {"question": "Is it a lake smaller than 0.01 square kilometers?", "response": "no"}, {"question": "Is it a body of water smaller than 0.001 square kilometers?", "response": "no"}, {"question": "Is it the Sea of Galilee?", "response": "no"}]}
{"index": 78, "id": "47314f82-d3a4-4d25-9dae-831c723172dd", "answer": "Harp", "category": "instrument", "correct": true, "num_tool_calls": 0, "next_question": "", "turn_index": 16, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it a thing?", "response": "yes"}, {"question": "Is it a natural object?", "response": "no"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it a tool?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "yes"}, {"question": "Is it a stringed instrument?", "response": "yes"}, {"question": "Is it a guitar?", "response": "no"}, {"question": "Is it a percussion instrument?", "response": "no"}, {"question": "Is it a keyboard instrument?", "response": "no"}, {"question": "Is it a keyboard instrument that uses strings struck by hammers?", "response": "no"}, {"question": "Is it a piano?", "response": "no"}, {"question": "Is it a violin?", "response": "no"}, {"question": "Is it a harp?", "response": "yes"}]}
{"index": 186, "id": "3ce593f2-2090-4c70-a80c-431445b22dc6", "answer": "Blanket", "category": "object", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an animal?", "response": "no"}, {"question": "Is it an object?", "response": "yes"}, {"question": "Is it a man-made object?", "response": "yes"}, {"question": "Is it a tool?", "response": "no"}, {"question": "Is it a piece of furniture?", "response": "no"}, {"question": "Is it a technological device?", "response": "no"}, {"question": "Is it a musical instrument?", "response": "no"}, {"question": "Is it a type of kitchen utensil?", "response": "no"}, {"question": "Is it a type of container?", "response": "no"}, {"question": "Is it a type of clothing?", "response": "no"}, {"question": "Is it a type of transportation?", "response": "no"}, {"question": "Is it a type of weapon?", "response": "no"}, {"question": "Is it a type of electronic device?", "response": "no"}, {"question": "Is it a type of household item?", "response": "yes"}, {"question": "Is it a type of kitchen appliance?", "response": "no"}, {"question": "Is it a type of cleaning tool?", "response": "no"}, {"question": "Is it a type of light fixture?", "response": "no"}, {"question": "Is it a chair?", "response": "no"}]}
{"index": 177, "id": "f7880480-187f-44cb-b4e6-9b55103d7d69", "answer": "Wizard", "category": "character", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "yes"}, {"question": "Is it a historical figure?", "response": "no"}, {"question": "Is it a fictional character?", "response": "yes"}, {"question": "Is it a character from a famous book?", "response": "yes"}, {"question": "Is it a character from a classic novel?", "response": "no"}, {"question": "Is it a character from a 20th-century novel?", "response": "yes"}, {"question": "Is it a character from a well-known 20th-century novel by a British author?", "response": "no"}, {"question": "Is it a character from a 20th-century novel by an American author?", "response": "yes"}, {"question": "Is it a character from a 20th-century American novel by a female author?", "response": "yes"}, {"question": "Is it a character from a 20th-century American novel by a female author who is also a prominent figure in feminist literature?", "response": "yes"}, {"question": "Is it a character from *The Handmaid's Tale*?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by Margaret Atwood?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote a prominent work on gender and power?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote *The Feminine Mystique*?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote a seminal work on women's societal roles?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote a major work on reproductive rights?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote a book about the limitations of domestic life?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote about the constraints of marriage and motherhood?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote about the psychological toll of oppression in domestic roles?", "response": "no"}, {"question": "Is it a character from a 20th-century American feminist novel by a female author who wrote *The Bell Jar*?", "response": "no"}]}
{"index": 56, "id": "b33a5e2e-c26d-4766-9225-2bcca038a286", "answer": "Bear", "category": "animal", "correct": false, "num_tool_calls": 0, "next_question": "", "turn_index": 20, "interactions": [{"question": "Is it a person?", "response": "no"}, {"question": "Is it a place?", "response": "no"}, {"question": "Is it an animal?", "response": "yes"}, {"question": "Is it a mammal?", "response": "yes"}, {"question": "Is it a domestic animal?", "response": "no"}, {"question": "Is it a wild animal that is larger than a fox?", "response": "yes"}, {"question": "Is it a predator?", "response": "yes"}, {"question": "Is it a big cat?", "response": "no"}, {"question": "Is it a feline predator that lives in Asia?", "response": "no"}, {"question": "Is it a large wild cat native to Africa?", "response": "no"}, {"question": "Is it a large wild feline found in the Americas?", "response": "no"}, {"question": "Is it a large wild carnivore native to the Americas that is not a big cat?", "response": "yes"}, {"question": "Is it a large wild carnivore native to North America?", "response": "yes"}, {"question": "Is it a large wild carnivore native to North America that is not a bear?", "response": "no"}, {"question": "Is it a wolf?", "response": "no"}, {"question": "Is it a jaguar?", "response": "no"}, {"question": "Is it a cougar?", "response": "no"}, {"question": "Is it a puma?", "response": "no"}, {"question": "Is it a wolverine?", "response": "no"}, {"question": "Is it a coyote?", "response": "no"}]}
File diff suppressed because one or more lines are too long
+1
View File
@@ -0,0 +1 @@
# Copyright (c) Microsoft. All rights reserved.
+101
View File
@@ -0,0 +1,101 @@
# Copyright (c) Microsoft. All rights reserved.
import asyncio
import logging
import time
from typing import cast
import openai
import tinker
from agl_tinker.llm import TinkerLLM
from agl_tinker.rollout import reconstruct_transitions
from rich.console import Console
from tinker_cookbook.renderers import Qwen3Renderer
from transformers import AutoTokenizer, PreTrainedTokenizer
from agentlightning import (
AgentOpsTracer,
InMemoryLightningStore,
LLMProxy,
TracerTraceToTriplet,
configure_logger,
emit_reward,
)
configure_logger(name="agentlightning")
configure_logger(name="agl_tinker", level=logging.INFO)
async def main():
console = Console()
model_name = "Qwen/Qwen3-30B-A3B-Instruct-2507"
tokenizer = cast(PreTrainedTokenizer, AutoTokenizer.from_pretrained(model_name)) # type: ignore
renderer = Qwen3Renderer(tokenizer) # type: ignore
service_client = tinker.ServiceClient()
sampling_client = service_client.create_sampling_client(base_model=model_name)
tinker_llm = TinkerLLM(
model_name=model_name, renderer=renderer, tokenizer=tokenizer, sampling_client=sampling_client, max_tokens=20
)
tinker_llm.rewrite_litellm_custom_providers()
store = InMemoryLightningStore()
rollout = await store.start_rollout("dummy", "train")
llm_proxy = LLMProxy(
port=4000,
store=store,
model_list=tinker_llm.as_model_list(),
num_retries=0,
)
try:
tracer = AgentOpsTracer()
tracer.init()
tracer.init_worker(0)
# init tracer before llm_proxy to avoid tracer provider being not active.
console.print("Starting LLM proxy...")
llm_proxy.start()
console.print("LLM proxy started")
# client = openai.OpenAI(
# base_url=f"http://localhost:4000/rollout/{rollout.rollout_id}/attempt/{rollout.attempt.attempt_id}",
# api_key="dummy",
# )
client = openai.OpenAI(base_url="http://localhost:4000/v1", api_key="dummy")
async with tracer.trace_context(
name="test_llm", store=store, rollout_id=rollout.rollout_id, attempt_id=rollout.attempt.attempt_id
):
response = client.chat.completions.create(
model=model_name,
messages=[{"role": "user", "content": "Hello world!"}],
max_tokens=10,
temperature=0.5,
top_p=0.9,
seed=43,
)
print(response)
emit_reward(8.0)
print(f"Found {len(tracer.get_last_trace())} spans in the tracer")
tracer.teardown_worker(0)
tracer.teardown()
for store_span in await store.query_spans(rollout.rollout_id):
print(store_span)
spans = await store.query_spans(rollout.rollout_id)
console.print(f"Found {len(spans)} spans")
adapter = TracerTraceToTriplet()
trajectory = reconstruct_transitions(spans, adapter, rollout.rollout_id)
print(trajectory)
finally:
console.print("Stopping LLM proxy...")
llm_proxy.stop()
console.print("LLM proxy stopped")
if __name__ == "__main__":
asyncio.run(main())
+37
View File
@@ -0,0 +1,37 @@
# Copyright (c) Microsoft. All rights reserved.
import asyncio
import logging
from agl_tinker.env import AGLDatasetBuilder
from agl_tinker.train import Config
from agl_tinker.train import main as training_loop
from agentlightning import configure_logger
configure_logger(name="agentlightning")
configure_logger(name="agl_tinker", level=logging.INFO)
def main():
dataset_builder = AGLDatasetBuilder(
train_dataset=[f"Hello {i}" for i in range(30)],
batch_size=10,
shuffle=True,
group_size=4,
seed=42,
)
config = Config(
learning_rate=1e-4,
dataset_builder=dataset_builder,
model_name="Qwen/Qwen3-30B-A3B-Instruct-2507",
log_path="logs",
max_tokens=20,
)
asyncio.run(training_loop(config))
if __name__ == "__main__":
main()
+98
View File
@@ -0,0 +1,98 @@
import tinker
service_client = tinker.ServiceClient()
print("Available models:")
for item in service_client.get_server_capabilities().supported_models:
print("- " + item.model_name)
base_model = "Qwen/Qwen3-30B-A3B-Base"
training_client = service_client.create_lora_training_client(base_model=base_model)
# Create some training examples
examples = [
{"input": "banana split", "output": "anana-bay plit-say"},
{"input": "quantum physics", "output": "uantum-qay ysics-phay"},
{"input": "donut shop", "output": "onut-day op-shay"},
{"input": "pickle jar", "output": "ickle-pay ar-jay"},
{"input": "space exploration", "output": "ace-spay exploration-way"},
{"input": "rubber duck", "output": "ubber-ray uck-day"},
{"input": "coding wizard", "output": "oding-cay izard-way"},
]
# Convert examples into the format expected by the training client
from tinker import types
# Get the tokenizer from the training client
tokenizer = training_client.get_tokenizer()
def process_example(example: dict, tokenizer) -> types.Datum:
# Format the input with Input/Output template
# For most real use cases, you'll want to use a renderer / chat template,
# (see later docs) but here, we'll keep it simple.
prompt = f"English: {example['input']}\nPig Latin:"
prompt_tokens = tokenizer.encode(prompt, add_special_tokens=True)
prompt_weights = [0] * len(prompt_tokens)
# Add a space before the output string, and finish with double newline
completion_tokens = tokenizer.encode(f" {example['output']}\n\n", add_special_tokens=False)
completion_weights = [1] * len(completion_tokens)
tokens = prompt_tokens + completion_tokens
weights = prompt_weights + completion_weights
input_tokens = tokens[:-1]
target_tokens = tokens[1:] # We're predicting the next token, so targets need to be shifted.
weights = weights[1:]
# A datum is a single training example for the loss function.
# It has model_input, which is the input sequence that'll be passed into the LLM,
# loss_fn_inputs, which is a dictionary of extra inputs used by the loss function.
return types.Datum(
model_input=types.ModelInput.from_ints(tokens=input_tokens),
loss_fn_inputs=dict(weights=weights, target_tokens=target_tokens),
)
processed_examples = [process_example(ex, tokenizer) for ex in examples]
# Visualize the first example for debugging purposes
datum0 = processed_examples[0]
print(f"{'Input':<20} {'Target':<20} {'Weight':<10}")
print("-" * 50)
for i, (inp, tgt, wgt) in enumerate(
zip(
datum0.model_input.to_ints(),
datum0.loss_fn_inputs["target_tokens"].tolist(),
datum0.loss_fn_inputs["weights"].tolist(),
)
):
print(f"{repr(tokenizer.decode([inp])):<20} {repr(tokenizer.decode([tgt])):<20} {wgt:<10}")
import numpy as np
for _ in range(6):
fwdbwd_future = training_client.forward_backward(processed_examples, "cross_entropy")
optim_future = training_client.optim_step(types.AdamParams(learning_rate=1e-4))
# Wait for the results
fwdbwd_result = fwdbwd_future.result()
optim_result = optim_future.result()
# fwdbwd_result contains the logprobs of all the tokens we put in. Now we can compute the weighted
# average log loss per token.
logprobs = np.concatenate([output["logprobs"].tolist() for output in fwdbwd_result.loss_fn_outputs])
weights = np.concatenate([example.loss_fn_inputs["weights"].tolist() for example in processed_examples])
print(f"Loss per token: {-np.dot(logprobs, weights) / weights.sum():.4f}")
# First, create a sampling client. We need to transfer weights
sampling_client = training_client.save_weights_and_get_sampling_client(name="pig-latin-model")
# Now, we can sample from the model.
prompt = types.ModelInput.from_ints(tokenizer.encode("English: coffee break\nPig Latin:"))
params = types.SamplingParams(max_tokens=20, temperature=0.0, stop=["\n"]) # Greedy sampling
future = sampling_client.sample(prompt=prompt, sampling_params=params, num_samples=8)
result = future.result()
print("Responses:")
for i, seq in enumerate(result.sequences):
print(f"{i}: {repr(tokenizer.decode(seq.tokens))}")
+384
View File
@@ -0,0 +1,384 @@
import json
import re
import traceback
from contextlib import contextmanager
from typing import Any, List, Literal, Optional, TypedDict, cast
import pandas as pd
import tinker
from agl_tinker.llm import TinkerLLM
from crewai import LLM as CrewLLM
from crewai import Agent as CrewAgent
from crewai import BaseLLM
from crewai import Task as CrewTask
from crewai.flow import Flow, listen, router, start
from crewai.tools import BaseTool
from pydantic import BaseModel, Field
from rich.console import Console
from tinker_cookbook.renderers import get_renderer
from transformers import AutoTokenizer, PreTrainedTokenizer
from agentlightning.llm_proxy import LLMProxy
from agentlightning.store import InMemoryLightningStore
llm = CrewLLM(model="openai/gpt-4o-mini")
console = Console()
class AnswererResponse(BaseModel):
# Keep this short; do NOT ask for chain-of-thought
brief_reason: Optional[str] = Field(description="1-2 sentences justification (optional, high level only).")
yes_or_no: Literal["yes", "no", "n/a"] = Field(
description="Whether the correct answer to the player's question is yes, no, or not applicable."
)
correct: bool = Field(
description="Whether the player has correctly guessed the entity, and the game should end now."
)
PLAYER_QUERY_TEMPLATE = """You are playing 20 Questions as the **Player**.
Ask one high-information **yes/no** question that most reduces the remaining possibility space.
If you think you have figured out the secret entity, ask a direct guess in the form: **"Is it <entity>?"**
THIS IS TURN #{turn_index} OF 20. You have {remaining_turns} turns left. The quicker you make a correct guess, the higher your score.
## Important assumptions
- All answers must belong to one of the following categories: {categories}.
- All answers are **straightforward, familiar, and commonly known**. They can be at most 3 words long (and only one word long in a majority of cases).
- Each answer refers to a **single, clear concept** — not a variant, version, or situation-dependent form.
## What you have: Game history (Q/A pairs):
{history}
## Strategy guidelines (concise, practical)
- **Start broad, then narrow**: prioritize category-level splits first ({categories}), then mid-level properties, then identifiers.
- **Binary partitioning**: prefer questions that split the remaining set near the middle.
- **Property over identity**: ask about features/roles/usages before naming brands, species, or specific titles.
- **Contradiction guard**: if past answers imply a contradiction, ask a short reset/sanity-check question to reconcile.
- **n/a handling**: if the last answer was **n/a**, pivot wording to a clearer, factual property.
- **Endgame**: if you have only one turn left, make a direct guess.
## Think first, then answer
- In a scratchpad, briefly reason about (a) the most informative split now, (b) 1-2 alternates you considered, and (c) why you chose the final question.
- Write the scratchpad exactly in the required output format below.
## Output format (critical)
- Return **exactly one line** with this pattern:
<scratchpad>...</scratchpad> My next question is: ...?
- Keep the whole output under 150 words. No quotes, no extra fields, no newlines.
"""
ANSWERER_QUERY_TEMPLATE = """You are the **Answerer** in 20 Questions. Answer yes/no questions truthfully about the secret entity; mark correct if guessed exactly.
Your secret entity is: "{answer}".
## The player's current question
{next_question}
## Rules
- Respond only with a structured yes/no evaluation about the entity.
- Be concise, objective, and consistent with previous answers.
- Never reveal the entity unless the player guessed correctly.
- If you don't know the answer, for example, the information is never publicly known, or the question is irrelevant to the entity's nature, answer **"n/a"**.
### Primary-sense rule (important)
- Answer based on the entity's **primary, literal identity**, not metaphorical associations or what it “can represent.”
(Example: a famous building is **not** a "symbol" just because people call it a symbol of love.)
- Use the multi-meaning rule **only** when the entity's **name itself** has multiple mainstream senses (e.g., “football” the sport vs. the ball). Otherwise, stick to the primary sense.
### Handling unknown or irrelevant questions
- If the question asks about something **not publicly known**, **not factual**, **ambiguous**, or **irrelevant**, respond **"n/a"**.
- Use **"n/a"** only when a yes/no would be **misleading or nonsensical**.
- Examples:
- "Does it have parents?" -> *n/a* (not meaningful for a place or object)
- "Is it alive?" -> valid for all entities (answer yes/no if possible)
- "Is it an animal?" -> *n/a* if the entity is a person, as this can be ambiguous.
- "Does it post on social media?" -> *n/a* unless the entity is a living or fictional character known for doing so.
- "Is the chair branded by a famous manufacturer?" -> *n/a* for a general object like "chair".
### Handling ambiguous entities
If the secret entity truly has multiple common meanings:
- Answer **"yes"** if the question is true for **any** major, well-recognized meaning.
- Answer **"no"** only if it's false for **all** reasonable interpretations.
- Do **not** stretch to metaphors or loose associations.
### Handling direct guesses
If the player's question is a direct guess ("Is it ...?"):
- Set **correct = true** if the guess is a close match in meaning to the secret entity (e.g., “Is it cell phone?” ≈ “Smartphone”).
- Otherwise, set **correct = false**.
"""
SEARCH_PROMPT_TEMPLATE = """You are simulating a web search.
Query: "{search_query}"
Return a concise, factual summary (2-4 sentences) of the most relevant information you would find online.
Avoid speculation, filler, or references to being an AI. Just give the facts."""
class SearchToolInput(BaseModel):
"""Schema for search tool input."""
search_query: str = Field(
...,
description="A short, factual query describing what to search for (e.g., 'capital of France', 'biography of Ada Lovelace').",
)
class SearchTool(BaseTool):
"""A mock web search tool powered by an LLM.
This class mimics a real search engine call by using a lightweight LLM model.
It can later be replaced by a real API (like Serper or Bing) without changing its interface.
"""
model: BaseLLM
name: str = "search"
description: str = (
"Search the web (mocked). Provide a concise, factual summary of what is known about the given topic."
)
num_called: int = 0
def _run(self, search_query: str) -> str:
"""Perform a mocked search request using an LLM."""
self.num_called += 1
# Safety: ensure input is not too long or empty
search_query = search_query.strip()
if not search_query:
return "No query provided."
if len(search_query) > 500:
search_query = search_query[:500] + "..."
# Use a lightweight CrewAgent to simulate a factual web summary
agent = CrewAgent(
role="Search engine summarizer",
goal=(
"Given a user's search query, return a concise, factual summary "
"as if retrieved from reliable sources. "
"Act like a real search engine summarizer. "
"Never disclose that you are a simulator of a search engine."
),
backstory=(
"You simulate a web search engine, producing factual, neutral summaries. "
"Do not fabricate sources or URLs. Focus on core, verifiable facts."
),
llm=self.model,
)
prompt = SEARCH_PROMPT_TEMPLATE.format(search_query=search_query)
result = agent.kickoff(prompt)
return result.raw.strip()
class Turn(BaseModel):
thinking: Optional[str]
question: str
response: Literal["yes", "no", "n/a"]
class TwentyQuestionsGameState(BaseModel):
answer: str = ""
category: str = ""
correct: bool = False
num_tool_calls: int = 0
next_question: str = ""
thinking_before_next_question: Optional[str] = None
turn_index: int = 1
interactions: List[Turn] = Field(default_factory=list)
def render_history(self) -> str:
return "\n\n".join(
[
f"Question #{i}: {turn.question}\nResponse #{i}: {turn.response}"
for i, turn in enumerate(self.interactions, start=1)
]
)
class TwentyQuestionsFlow(Flow[TwentyQuestionsGameState]):
def __init__(self, *args: Any, **kwargs: Any):
self.player_llm = cast(CrewLLM, kwargs.pop("player_llm"))
self.answer_llm = cast(CrewLLM, kwargs.pop("answer_llm"))
self.search_tool = cast(Optional[SearchTool], kwargs.pop("search_tool", None))
self.categories = cast(List[str], kwargs.pop("categories"))
super().__init__(*args, **kwargs)
@start("next_turn")
def ask_question(self):
agent = CrewAgent(
role="Player in a game of 20 questions",
goal="Minimize uncertainty and identify the hidden entity within 20 yes/no questions.",
backstory="A focused reasoner who uses binary-partition questions to narrow down the remaining possibilities.",
tools=[self.search_tool] if self.search_tool else [],
llm=self.player_llm,
max_iter=10,
)
query = PLAYER_QUERY_TEMPLATE.format(
history=self.state.render_history(),
turn_index=self.state.turn_index,
remaining_turns=20 - self.state.turn_index + 1,
categories=", ".join(self.categories),
)
result = agent.kickoff(query)
raw = result.raw.strip()
console.print(f"[bold red]Player (Turn {self.state.turn_index}) raw:[/bold red] {raw}")
thinking = ""
question = raw # fallback: if no match, send whole generation to answerer
m = re.match(r"^(?P<thinking>.+?)\s*My next question is:\s*(?P<q>.+?)\s*$", raw)
if m:
thinking = m.group("thinking").strip()
q = m.group("q").strip()
if q:
question = q
else:
console.print(
f"[bold red]Player (Turn {self.state.turn_index})[/bold red] [bold orange]No thinking match![/bold orange]"
)
if self.search_tool is not None:
self.state.num_tool_calls = self.search_tool.num_called
self.state.thinking_before_next_question = thinking
self.state.next_question = question
console.print(
f"[bold red]Player (Turn {self.state.turn_index}) question:[/bold red] {self.state.next_question}"
)
@listen(ask_question)
def answer_question(self):
query = ANSWERER_QUERY_TEMPLATE.format(answer=self.state.answer, next_question=self.state.next_question)
answerer_response = cast(AnswererResponse, self.answer_llm.call(query)) # type: ignore
console.print(f"[bold red]Answerer (Turn {self.state.turn_index}):[/bold red] {answerer_response}")
try:
turn = Turn(
thinking=self.state.thinking_before_next_question,
question=self.state.next_question,
response=answerer_response.yes_or_no,
)
correct = answerer_response.correct
except Exception as e:
console.print(f"[bold red]Answerer Response Format Error: {e}[/bold red]")
# Assuming n/a
turn = Turn(
thinking=self.state.thinking_before_next_question, question=self.state.next_question, response="n/a"
)
correct = False
self.state.interactions.append(turn)
self.state.next_question = "" # Reset the next question
self.state.correct = correct
@router(answer_question)
def game_should_continue(self):
if self.state.correct:
console.print(f"[bold red]Correct! You win![/bold red]")
return "game_over"
elif self.state.turn_index >= 20:
console.print(
f"[bold red]You've asked 20 questions and still haven't guessed the entity. You lose![/bold red]"
)
return "game_over"
else:
self.state.turn_index += 1
console.print(f"[bold purple]Continue with turn #{self.state.turn_index}...[/bold purple]")
return "next_turn"
@listen("game_over")
def finish(self):
console.print("The flow has reached the finished state.")
@contextmanager
def prepare_llm(model_name: str, port: int):
service_client = tinker.ServiceClient()
sampling_client = service_client.create_sampling_client(base_model=model_name)
tokenizer = cast(PreTrainedTokenizer, AutoTokenizer.from_pretrained(model_name)) # type: ignore
tinker_llm = TinkerLLM(
model_name=model_name,
sampling_client=sampling_client,
renderer=get_renderer("qwen3", tokenizer),
tokenizer=tokenizer,
)
tinker_llm.rewrite_litellm_custom_providers()
store = InMemoryLightningStore()
model_list = tinker_llm.as_model_list()
model_list.extend(
[
{"model_name": "gpt-4.1", "litellm_params": {"model": "openai/gpt-4.1"}},
{"model_name": "gpt-5-mini", "litellm_params": {"model": "openai/gpt-5-mini"}},
]
)
console.print("Model list:", model_list)
llm_proxy = LLMProxy(
port=port,
store=store,
model_list=model_list,
num_retries=2,
_add_return_token_ids=False,
)
llm_proxy.start()
yield {
"player_llm": CrewLLM(
model="openai/" + model_name, base_url=f"http://localhost:{port}/v1", api_key="dummy", timeout=60.0
),
"answer_llm": CrewLLM(
model="openai/gpt-5-mini",
base_url=f"http://localhost:{port}/v1",
api_key="dummy",
reasoning_effort="low",
response_format=AnswererResponse,
timeout=60.0,
),
# "search_tool": SearchTool(
# model=CrewLLM(model="openai/gpt-4.1", base_url=f"http://localhost:4000/v1", api_key="dummy", timeout=60.0)
# ),
}
llm_proxy.stop()
def main(model_name: str, output_file: str, port: int = 4000):
df = pd.read_csv("twenty_questions_nouns.csv") # type: ignore
categories = cast(List[str], df["category"].unique().tolist()) # type: ignore
with prepare_llm(model_name, port) as llm_config:
for index, row in df.sample(n=len(df), random_state=42).iterrows(): # type: ignore
flow = TwentyQuestionsFlow(
**llm_config,
categories=categories,
)
try:
flow.kickoff(
{
"answer": row["answer"],
"category": row["category"],
}
)
result_json: dict[str, Any] = {"index": index, **flow.state.model_dump()}
except Exception as e:
result_json = {
"index": index,
"answer": row["answer"],
"category": row["category"],
"error": str(e),
"exception": traceback.print_exc(),
}
with open(output_file, "a") as f:
f.write(json.dumps(result_json) + "\n")
if __name__ == "__main__":
main(
model_name="Qwen/Qwen3-30B-A3B-Instruct-2507",
output_file="test-results/twenty_questions_qwen30b_notool_gpt5mini_20251026.jsonl",
)
+7
View File
@@ -0,0 +1,7 @@
from twenty_questions import main
main(
model_name="Qwen/Qwen3-235B-A22B-Instruct-2507",
output_file="test-results/twenty_questions_qwen235b_notool_gpt5mini_20251026.jsonl",
port=4001,
)
+201
View File
@@ -0,0 +1,201 @@
answer,category
Taylor Swift,person
Albert Einstein,person
Cleopatra,person
Sherlock Holmes,character
Batman,character
Harry Potter,character
Elon Musk,person
Oprah Winfrey,person
Beyoncé,person
Leonardo da Vinci,person
Barack Obama,person
Marilyn Monroe,person
Steve Jobs,person
Michael Jordan,person
Mother Teresa,person
Isaac Newton,person
William Shakespeare,person
Rihanna,person
Gandhi,person
Picasso,person
Paris,place
Tokyo,place
Mount Everest,place
New York,place
Sydney Opera House,place
The Great Wall,place
Sahara Desert,place
Amazon Rainforest,place
Eiffel Tower,place
Big Ben,place
Taj Mahal,place
Niagara Falls,place
Rome,place
London,place
Disneyland,place
The North Pole,place
Hawaii,place
Las Vegas,place
Antarctica,place
Hollywood,place
Elephant,animal
Tiger,animal
Dolphin,animal
Penguin,animal
Giraffe,animal
Eagle,animal
Panda,animal
Kangaroo,animal
Wolf,animal
Shark,animal
Owl,animal
Horse,animal
Dog,animal
Cat,animal
Snake,animal
Rabbit,animal
Bear,animal
Octopus,animal
Fox,animal
Whale,animal
Chair,object
Mirror,object
Laptop,object
Guitar,instrument
Telescope,object
Camera,object
Umbrella,object
Bicycle,object
Lock,object
Watch,object
Book,object
Television,object
Candle,object
Clock,object
Backpack,object
Airplane,object
Piano,instrument
Violin,instrument
Harp,instrument
Trombone,instrument
Skateboard,object
Scissors,object
Smartphone,object
Pizza,food
Coffee,food
Apple,food
Chocolate,food
Ice cream,food
Hamburger,food
Sushi,food
Sandwich,food
Salad,food
Donut,food
Watermelon,food
Popcorn,food
Spaghetti,food
Cheese,food
Bread,food
Orange juice,food
Steak,food
Pancake,food
Taco,food
Banana,food
Freedom,concept
Love,concept
Happiness,concept
Time,concept
Knowledge,concept
Friendship,concept
Justice,concept
Peace,concept
Power,concept
Honesty,concept
Art,concept
Technology,concept
Music,concept
Science,concept
War,concept
Truth,concept
Nature,concept
Dream,concept
Fear,concept
Memory,concept
Soccer,sport
Basketball,sport
Tennis,sport
Swimming,sport
Running,sport
Golf,sport
Boxing,sport
Surfing,sport
Skiing,sport
Chess,sport
Baseball,sport
Yoga,sport
Archery,sport
Fishing,sport
Skateboarding,sport
Volleyball,sport
Climbing,sport
Dancing,sport
Hiking,sport
Billiards,sport
Lightsaber,fiction
Iron Man,character
Millennium Falcon,fiction
The Simpsons,fiction
Jurassic Park,fiction
SpongeBob,fiction
The Godfather,fiction
Frozen,fiction
The Matrix,fiction
Star Wars,fiction
Avatar,fiction
Game of Thrones,fiction
Spider-Man,character
Black Panther,character
Hogwarts,fiction
The Joker,character
Pikachu,character
Wonder Woman,character
The Titanic,fiction
Stranger Things,fiction
Rainbow,nature
Volcano,nature
Moon,nature
Sunflower,nature
Diamond,object
Lightning,nature
Ocean,nature
Cloud,nature
Tornado,nature
Robot,object
Alien,creature
Treasure,object
Map,object
Pirate,character
Wizard,character
Unicorn,creature
Ghost,creature
Dragon,creature
Meteor,nature
Wallet,object
Headphones,object
Microwave,object
Toothbrush,object
Blanket,object
Pen,object
Drone,object
Car,object
Air Conditioner,object
Printer,object
Lamp,object
Refrigerator,object
Washing machine,object
Credit card,object
Bed,object
Mouse,object
Remote,object
Sunglasses,object
1 answer category
2 Taylor Swift person
3 Albert Einstein person
4 Cleopatra person
5 Sherlock Holmes character
6 Batman character
7 Harry Potter character
8 Elon Musk person
9 Oprah Winfrey person
10 Beyoncé person
11 Leonardo da Vinci person
12 Barack Obama person
13 Marilyn Monroe person
14 Steve Jobs person
15 Michael Jordan person
16 Mother Teresa person
17 Isaac Newton person
18 William Shakespeare person
19 Rihanna person
20 Gandhi person
21 Picasso person
22 Paris place
23 Tokyo place
24 Mount Everest place
25 New York place
26 Sydney Opera House place
27 The Great Wall place
28 Sahara Desert place
29 Amazon Rainforest place
30 Eiffel Tower place
31 Big Ben place
32 Taj Mahal place
33 Niagara Falls place
34 Rome place
35 London place
36 Disneyland place
37 The North Pole place
38 Hawaii place
39 Las Vegas place
40 Antarctica place
41 Hollywood place
42 Elephant animal
43 Tiger animal
44 Dolphin animal
45 Penguin animal
46 Giraffe animal
47 Eagle animal
48 Panda animal
49 Kangaroo animal
50 Wolf animal
51 Shark animal
52 Owl animal
53 Horse animal
54 Dog animal
55 Cat animal
56 Snake animal
57 Rabbit animal
58 Bear animal
59 Octopus animal
60 Fox animal
61 Whale animal
62 Chair object
63 Mirror object
64 Laptop object
65 Guitar instrument
66 Telescope object
67 Camera object
68 Umbrella object
69 Bicycle object
70 Lock object
71 Watch object
72 Book object
73 Television object
74 Candle object
75 Clock object
76 Backpack object
77 Airplane object
78 Piano instrument
79 Violin instrument
80 Harp instrument
81 Trombone instrument
82 Skateboard object
83 Scissors object
84 Smartphone object
85 Pizza food
86 Coffee food
87 Apple food
88 Chocolate food
89 Ice cream food
90 Hamburger food
91 Sushi food
92 Sandwich food
93 Salad food
94 Donut food
95 Watermelon food
96 Popcorn food
97 Spaghetti food
98 Cheese food
99 Bread food
100 Orange juice food
101 Steak food
102 Pancake food
103 Taco food
104 Banana food
105 Freedom concept
106 Love concept
107 Happiness concept
108 Time concept
109 Knowledge concept
110 Friendship concept
111 Justice concept
112 Peace concept
113 Power concept
114 Honesty concept
115 Art concept
116 Technology concept
117 Music concept
118 Science concept
119 War concept
120 Truth concept
121 Nature concept
122 Dream concept
123 Fear concept
124 Memory concept
125 Soccer sport
126 Basketball sport
127 Tennis sport
128 Swimming sport
129 Running sport
130 Golf sport
131 Boxing sport
132 Surfing sport
133 Skiing sport
134 Chess sport
135 Baseball sport
136 Yoga sport
137 Archery sport
138 Fishing sport
139 Skateboarding sport
140 Volleyball sport
141 Climbing sport
142 Dancing sport
143 Hiking sport
144 Billiards sport
145 Lightsaber fiction
146 Iron Man character
147 Millennium Falcon fiction
148 The Simpsons fiction
149 Jurassic Park fiction
150 SpongeBob fiction
151 The Godfather fiction
152 Frozen fiction
153 The Matrix fiction
154 Star Wars fiction
155 Avatar fiction
156 Game of Thrones fiction
157 Spider-Man character
158 Black Panther character
159 Hogwarts fiction
160 The Joker character
161 Pikachu character
162 Wonder Woman character
163 The Titanic fiction
164 Stranger Things fiction
165 Rainbow nature
166 Volcano nature
167 Moon nature
168 Sunflower nature
169 Diamond object
170 Lightning nature
171 Ocean nature
172 Cloud nature
173 Tornado nature
174 Robot object
175 Alien creature
176 Treasure object
177 Map object
178 Pirate character
179 Wizard character
180 Unicorn creature
181 Ghost creature
182 Dragon creature
183 Meteor nature
184 Wallet object
185 Headphones object
186 Microwave object
187 Toothbrush object
188 Blanket object
189 Pen object
190 Drone object
191 Car object
192 Air Conditioner object
193 Printer object
194 Lamp object
195 Refrigerator object
196 Washing machine object
197 Credit card object
198 Bed object
199 Mouse object
200 Remote object
201 Sunglasses object