aura-implicit-intent / raw /chat_queries.json
innovation64's picture
Add AURA implicit-intent benchmark (AURATown) — 6 configs + raw originals
d861bc9 verified
Raw
History Blame Contribute Delete
6.48 kB
{
"description": "50 environment-grounded queries for RQ2 (factual accuracy evaluation). Each query probes different aspects of environment awareness.",
"categories": {
"spatial": "Questions about locations, positions, distances",
"social": "Questions about other agents and their activities",
"temporal": "Questions about time, schedules, recent events",
"memory": "Questions about past experiences and conversations",
"planning": "Questions about plans and recommendations"
},
"queries": [
{"id": 1, "category": "spatial", "query": "Where am I right now?", "requires": ["agent_location"]},
{"id": 2, "category": "spatial", "query": "What places are nearby?", "requires": ["nearby_locations"]},
{"id": 3, "category": "spatial", "query": "How do I get to the library from here?", "requires": ["agent_location", "library_location"]},
{"id": 4, "category": "spatial", "query": "What kind of place is this?", "requires": ["location_description"]},
{"id": 5, "category": "spatial", "query": "Is there a park in town?", "requires": ["location_existence"]},
{"id": 6, "category": "spatial", "query": "Where is the Town Hall?", "requires": ["location_position"]},
{"id": 7, "category": "spatial", "query": "What shops are in the commercial district?", "requires": ["location_list"]},
{"id": 8, "category": "spatial", "query": "Where is the closest cafe?", "requires": ["location_distance"]},
{"id": 9, "category": "spatial", "query": "Am I inside or outside right now?", "requires": ["location_type"]},
{"id": 10, "category": "spatial", "query": "What buildings can I see from the town square?", "requires": ["spatial_awareness"]},
{"id": 11, "category": "social", "query": "Who is nearby right now?", "requires": ["nearby_agents"]},
{"id": 12, "category": "social", "query": "What is Lin Wei doing?", "requires": ["specific_agent_action"]},
{"id": 13, "category": "social", "query": "Where is Zhang Hao?", "requires": ["specific_agent_location"]},
{"id": 14, "category": "social", "query": "Is anyone at the cafe?", "requires": ["agents_at_location"]},
{"id": 15, "category": "social", "query": "Who else lives in this town?", "requires": ["agent_list"]},
{"id": 16, "category": "social", "query": "What does Chen Mei do for a living?", "requires": ["agent_occupation"]},
{"id": 17, "category": "social", "query": "Is anyone available to chat?", "requires": ["nearby_agents", "agent_actions"]},
{"id": 18, "category": "social", "query": "How many people are active right now?", "requires": ["agent_count"]},
{"id": 19, "category": "social", "query": "Who was I talking to recently?", "requires": ["recent_conversations"]},
{"id": 20, "category": "social", "query": "What is Wang Jun's personality like?", "requires": ["agent_personality"]},
{"id": 21, "category": "temporal", "query": "What time is it?", "requires": ["current_time"]},
{"id": 22, "category": "temporal", "query": "What happened in the last hour?", "requires": ["recent_events"]},
{"id": 23, "category": "temporal", "query": "Is it morning or afternoon?", "requires": ["time_period"]},
{"id": 24, "category": "temporal", "query": "What day is it?", "requires": ["current_day"]},
{"id": 25, "category": "temporal", "query": "What was the most recent event in town?", "requires": ["latest_event"]},
{"id": 26, "category": "temporal", "query": "Did anyone have a conversation recently?", "requires": ["recent_conversations"]},
{"id": 27, "category": "temporal", "query": "How long have I been at this location?", "requires": ["time_at_location"]},
{"id": 28, "category": "temporal", "query": "What conversations happened today?", "requires": ["daily_conversations"]},
{"id": 29, "category": "temporal", "query": "Has anything unusual happened today?", "requires": ["event_analysis"]},
{"id": 30, "category": "temporal", "query": "When did I last eat?", "requires": ["memory_temporal"]},
{"id": 31, "category": "memory", "query": "What have I been doing today?", "requires": ["agent_history"]},
{"id": 32, "category": "memory", "query": "Have I met Liu Yang before?", "requires": ["interaction_history"]},
{"id": 33, "category": "memory", "query": "What did I talk about with Chen Mei?", "requires": ["conversation_memory"]},
{"id": 34, "category": "memory", "query": "What are my recent memories?", "requires": ["recent_memories"]},
{"id": 35, "category": "memory", "query": "Have I visited the library today?", "requires": ["location_history"]},
{"id": 36, "category": "memory", "query": "What insights have I had recently?", "requires": ["reflections"]},
{"id": 37, "category": "memory", "query": "Who have I interacted with the most?", "requires": ["interaction_frequency"]},
{"id": 38, "category": "memory", "query": "What was the most important thing that happened to me?", "requires": ["important_memories"]},
{"id": 39, "category": "memory", "query": "Do I have any unfinished business?", "requires": ["plan_progress"]},
{"id": 40, "category": "memory", "query": "What have I learned about this town?", "requires": ["accumulated_knowledge"]},
{"id": 41, "category": "planning", "query": "What should I do next?", "requires": ["daily_plan", "current_time"]},
{"id": 42, "category": "planning", "query": "Where should I go for lunch?", "requires": ["location_recommendations"]},
{"id": 43, "category": "planning", "query": "Who should I talk to today?", "requires": ["social_recommendations"]},
{"id": 44, "category": "planning", "query": "What's my plan for the rest of the day?", "requires": ["remaining_plan"]},
{"id": 45, "category": "planning", "query": "Is there anything interesting happening in town?", "requires": ["event_awareness"]},
{"id": 46, "category": "planning", "query": "Should I stay here or go somewhere else?", "requires": ["situational_analysis"]},
{"id": 47, "category": "planning", "query": "What's a good activity for this time of day?", "requires": ["time_appropriate_activities"]},
{"id": 48, "category": "planning", "query": "How can I be more productive today?", "requires": ["plan_optimization"]},
{"id": 49, "category": "planning", "query": "Is there anyone I should check in with?", "requires": ["social_obligations"]},
{"id": 50, "category": "planning", "query": "What would make today more interesting?", "requires": ["creative_suggestions"]}
]
}