Recent upstream changes to evaluate
Reviewed September 6, 2026. This is an engineering shortlist based on primary release sources, not a ranking of search volume or model quality.
Sources: Qwen3.8-Flash-Next announcement, vLLM 0.28.0 release notes, and upstream GPT-OSS recipe. These upstream developments do not certify a Tensorfuse deployment configuration for every model in the table.
Estimate memory before choosing GPUs
Start with the stored weights, then budget for runtime state, attention caches, activations, and execution buffers. A mixture-of-experts model’s active parameter count describes work per token; it does not represent all the weights that must be stored or made available to the runtime. Quantization changes weight storage and can change kernel requirements and quality. A weights-only estimate therefore cannot establish how many concurrent long-context requests will fit. Test the intended context length and concurrency with the engine’s startup and memory logs. For non-NVIDIA deployments, use the alternate silicon explainers to check runtime, compiler, and kernel requirements alongside memory capacity.Check the application contract
Run a small evaluation set from real tasks before a large throughput benchmark. For a coding agent, test tool selection, argument validity, multi-turn state, and completion of the task. For extraction, test schema compliance and factual accuracy. For multimodal tasks, test the actual image, audio, or video inputs your application accepts. Also verify the model license, chat template, stop tokens, tokenizer revision, reasoning output format, and parser configuration. An HTTP response alone does not establish a working agent or reliable structured output.Turn a candidate into a deployment recipe
Record the exact checkpoint revision, engine image digest, GPU configuration, launch arguments, and environment. Confirm startup, health checks, authenticated streaming requests, and behavior under load. Publish performance with prompt lengths, output lengths, concurrency, cache state, and failures. Use vLLM vs SGLang to choose an engine and benchmark latency and cost to compare candidates. The GPT-OSS guide provides a concrete Tensorfuse configuration to review and validate on your cluster.Related guides
Deploy GPT-OSS on AWS
Configure the server, secrets, ports, and client requests.
Plan serverless inference
Choose between warm serving, scale-to-zero, and batch jobs.

