#!/bin/bash # Test vLLM deployment echo "Testing vLLM API..." curl http://localhost:8000/v1/completions \ -H "Content-Type: application/json" \ -d '{ "model": "/model", "prompt": "Create an AVRO schema for a user", "max_tokens": 200, "temperature": 0.7 }'