27What changes when you serve a vision-language model instead of a text-only one?▼hardNewOpenAIGoogleFireworks4 replies◆ premiumAn image is not one token; it is hundreds to thousands of them after a second model has run. That changes the prefill budget, the batch shape and where the first bottleneck appears.Open full answer →
31The open-weights model you are deploying is multimodal. What changes about serving it?▼mediumNewBasetenTogether AIFireworks AI4 replies◆ premiumAn image becomes a large number of tokens before the language model sees anything, so a request that looks small carries a prefill the size of a long document. The token arithmetic, the encoder that sits outside the usual parallelism, and the two capacity numbers that move.Open full answer →