Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

Track B Phase 3 Submission

Team: Works on my agent

This archive contains the runnable submission for Track B Phase 3.

Environment

Python 3.11 is recommended for the inference runner:

python3.11 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt

Our local validation environment used Huawei Ascend 910B hardware.

The runner does not require internet access at runtime. It connects only to the local vLLM OpenAI-compatible API and the local Track B sandbox APIs.

Default endpoints:

vLLM API:          http://localhost:8001/v1
Command API:       https://localhost:8080/ip/api/agent/execute
Device discovery:  http://localhost:8080/ip/api/agent/get_devices_list

Directory Structure

.
β”œβ”€β”€ README.md
β”œβ”€β”€ run.sh
β”œβ”€β”€ run.py
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ src/
β”‚   └── track_b_agent/
β”‚       β”œβ”€β”€ submission_run.py
β”‚       β”œβ”€β”€ submission_io.py
β”‚       β”œβ”€β”€ run_agent.py
β”‚       β”œβ”€β”€ agent/
β”‚       β”œβ”€β”€ config/
β”‚       β”œβ”€β”€ generalized/
β”‚       β”œβ”€β”€ knowledge/
β”‚       β”œβ”€β”€ prompts/
β”‚       └── tools/
└── models/
    β”œβ”€β”€ deploy.sh
    β”œβ”€β”€ config.json
    β”œβ”€β”€ tokenizer.json
    β”œβ”€β”€ tokenizer_config.json
    β”œβ”€β”€ model.safetensors.index.json
    β”œβ”€β”€ model-00001-of-00016.safetensors
    β”œβ”€β”€ ...
    └── model-00016-of-00016.safetensors

Deploy the Model

The model files are stored in models/. Start the vLLM OpenAI-compatible server with:

bash models/deploy.sh

The deployment script serves the model as:

Qwen3.5-35B-A3B

It uses models/ as the model path and starts vLLM on port 8001 with nohup. Logs are written to:

models/Qwen3.5-35B-A3B_vllm_output.log

If there are any vLLM-environment-related issues, please contact:

250010135@slai.edu.cn

Run Inference

Run the submission on the provided Track B test file:

bash run.sh --input /path/to/test.json --output result

run.sh uses .venv/bin/python from the local virtual environment created above.

The runner uses 5-way scenario concurrency by default. The implementation uses asyncio with a 5-worker semaphore rather than the ThreadPoolExecutor shown in the example guide; the effective concurrent dispatch limit is still 5.

Expected Output

The run command writes the required files into the output directory:

result/
β”œβ”€β”€ traces.json
β”œβ”€β”€ results.csv
└── runtime.json

results.csv contains one final prediction per scenario:

scenario_id,prediction

traces.json contains all generated completions recorded during inference.

runtime.json contains per-problem runtime in seconds.

Downloads last month
47