CoolFace
Datasetpublic

DCAgent2/bfcl-parity

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes188downloads
solve.sh25 linesDownload Raw Back to solution
1#!/bin/bash2set -e3 4# Oracle solution for BFCL task5# This script will be customized per task to output the ground truth function call6 7# The actual oracle answer will be inserted here during task generation8# Format: JSON array of function calls9 10# Write result to /app/result.json (Harbor standard location)11cat > /app/result.json << 'ORACLE_EOF'12[13  {14    "court_case.search": {15      "docket_number": "123456",16      "location": "Texas",17      "full_text": false18    }19  }20]21ORACLE_EOF22 23echo "Oracle solution executed successfully"24echo "Result written to: /app/result.json"25