1from vllm import LLM, SamplingParams
2
3llm = LLM(model="ikarabulut-dev/SERA-32B-GA-FP8", max_model_len=16384)
4params = SamplingParams(temperature=0.7, max_tokens=512)
5
6outputs = llm.generate(
7 [{"role": "user", "content": "Explain quantum entanglement simply."}],
8 params,
9)
10print(outputs[0].outputs[0].text)
After quantization the model was loaded into vLLM and a test chat completion request was sent. The model became healthy in ~120 seconds and produced a well-formed thinking-style response — validation passed.