This model is a fine-tuned version of
Qwen/Qwen2.5-7B-Instruct optimized for multi-benchmark agent tasks (ALFWorld + DBBench).
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "astom-M/matsuo-llm-advanced-phase-a",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8 trust_remote_code=True
9)
10tokenizer = AutoTokenizer.from_pretrained(
11 "astom-M/matsuo-llm-advanced-phase-a",
12 trust_remote_code=True
13)
1python -m vllm.entrypoints.openai.api_server \
2 --model astom-M/matsuo-llm-advanced-phase-a \
3 --dtype bfloat16 \
4 --max-model-len 4096