Views
No views yet
THOUGHT: / ACTION: style reasoning traces.1[Important Instruction]
2You must choose exactly one action from the admissible commands list.
3Do not generate any action that is not explicitly included in that list.
4The action you output must exactly match one item in the
5admissible commands list.
6
7## Intended Use
8
9This adapter is intended to be used as a tool-using agent
10for ALFWorld and/or DBBench-style tasks, depending on the
11training configuration:
12
13- When trained only on ALFWorld, it focuses on household tasks.
14- When trained only on DBBench, it focuses on database operations.
15- When trained on both, it aims to balance both domains.
16
17## How to Load
18
19 from transformers import AutoModelForCausalLM, AutoTokenizer
20 from peft import PeftModel
21
22 base_model = AutoModelForCausalLM.from_pretrained(
23 "Qwen/Qwen3-4B-Instruct-2507",
24 torch_dtype="auto",
25 device_map="auto",
26 )
27 tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-4B-Instruct-2507")
28
29 model = PeftModel.from_pretrained(
30 base_model,
31 "/content/lora_agentbench_qwen3_4b",
32 )
33
34 model.eval()
35
36## Limitations and Bias
37
38This adapter is trained on synthetic and task-specific trajectories
39for ALFWorld and/or DBBench. It may:
40
41- Overfit to the style of prompts and environments in these datasets.
42- Hallucinate actions or SQL queries outside the training distribution.
43- Fail on tasks that are very different from ALFWorld/DBBench.
44
45Always validate the model's outputs, especially when using it for
46real-world decision making or database operations.