benchmark stringclasses 1
value | task_name stringlengths 19 96 | task_seed int64 0 2 | task_config stringlengths 97 1.34k | goal stringlengths 23 1.12k | start_url stringclasses 1
value | validation stringclasses 1
value |
|---|---|---|---|---|---|---|
erpnext | erpnext.assign_task | 1 | {"sql": "SELECT COUNT(*) AS results_count FROM tabTask WHERE subject=\"adopt a chinchilla\" AND _assign LIKE CONCAT(\"%\", (SELECT email FROM tabUser WHERE full_name=\"Ashleigh\"), \"%\")", "count": 1} | Assign adopt a chinchilla task to the user Ashleigh | import json
import os
from typing import Any, Dict, List
import requests
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Target must contain 'messages'")
# Check whether we have the necessary information to validate
if not "sql" in... | |
erpnext | erpnext.assign_task | 2 | {"sql": "SELECT COUNT(*) AS results_count FROM tabTask WHERE subject=\"adopt another chinchilla\" AND _assign LIKE CONCAT(\"%\", (SELECT email FROM tabUser WHERE full_name=\"Willy Wonka\"), \"%\")", "count": 1} | Assign adopt another chinchilla task to the user Willy Wonka | import json
import os
from typing import Any, Dict, List
import requests
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Target must contain 'messages'")
# Check whether we have the necessary information to validate
if not "sql" in... | |
erpnext | erpnext.delete_task | 0 | {"sql": "SELECT COUNT(*) AS results_count FROM tabTask WHERE subject=\"New Deadline\"", "count": 0} | delete task New Deadline | import json
import os
from typing import Any, Dict, List
import requests
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Target must contain 'messages'")
# Check whether we have the necessary information to validate
if not "sql" in... | |
erpnext | erpnext.delete_task | 1 | {"sql": "SELECT COUNT(*) AS results_count FROM tabTask WHERE subject=\"clean the bathroom\"", "count": 0} | delete task clean the bathroom | import json
import os
from typing import Any, Dict, List
import requests
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Target must contain 'messages'")
# Check whether we have the necessary information to validate
if not "sql" in... | |
erpnext | erpnext.delete_task | 2 | {"sql": "SELECT COUNT(*) AS results_count FROM tabTask WHERE subject=\"clean aquarium\"", "count": 0} | delete task clean aquarium | import json
import os
from typing import Any, Dict, List
import requests
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Target must contain 'messages'")
# Check whether we have the necessary information to validate
if not "sql" in... | |
erpnext | erpnext.update_task_status | 0 | {"sql": "SELECT COUNT(*) AS results_count FROM tabTask WHERE subject=\"Upfront Costs\" AND status=\"Pending Review\"", "count": 1} | update task named "Upfront Costs" to Pending Review status | import json
import os
from typing import Any, Dict, List
import requests
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Target must contain 'messages'")
# Check whether we have the necessary information to validate
if not "sql" in... | |
erpnext | erpnext.update_task_status | 1 | {"sql": "SELECT COUNT(*) AS results_count FROM tabTask WHERE subject=\"Very difficult task\" AND status=\"Cancelled\"", "count": 1} | update task named "Very difficult task" to Cancelled status | import json
import os
from typing import Any, Dict, List
import requests
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Target must contain 'messages'")
# Check whether we have the necessary information to validate
if not "sql" in... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.