--- library_name: transformers license: other base_model: Qwen/Qwen3-VL-8B-Instruct tags: - thought - mobile-agent - gui-agent model-index: - name: sft_appdelta_gui_agent results: [] --- # sft_appdelta_gui_agent Fine-tuned Qwen3-VL-8B-Instruct checkpoint for mobile GUI agent tasks. The model is trained with **Thought + Action + tool_call** output format. ## Prompt format - System: mobile GUI agent prompt with Thought / Action / tool_call - User: `The user query: {task}. Task progress ...` - Coordinates: 0-999 grid ## Usage ```python from transformers import Qwen3VLForConditionalGeneration, AutoProcessor model = Qwen3VLForConditionalGeneration.from_pretrained("xwk123/sft_appdelta_gui_agent") processor = AutoProcessor.from_pretrained("xwk123/sft_appdelta_gui_agent") ```