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