#!/usr/bin/env bash # Qwen3.5 multimodal calistirma tarifi (Vulkan / RX460) # Kullanim: ./run_multimodal.sh ["soru metni"] set -e LLAMA=/tmp/llama-upstream/build/bin/llama-cli GGUF_DIR="$(dirname "$0")/../artifacts/gguf-vision" IMG="${1:-test_red.png}" PROMPT="${2:-What is in this image? Answer briefly.}" exec "$LLAMA" \ -m "$GGUF_DIR/qwen35-text-Q4_K_M.gguf" \ --mmproj "$GGUF_DIR/mmproj-F32.gguf" \ --image "$IMG" \ -p "$PROMPT" \ -ngl 99 --temp 0 -n 200 -no-cnv