Currently (1.2) we prewarm the connection with STT and TTS, but not with the LLMs.
This is because LLMs usually require us to perform an inference request, instead of just opening a HTTP connection to /. There are a bunch of benefits to prewarming the LLM, the primary one is we could bypass the initial connection setup time, which could add up to be ~2s (DNS, SSL roundtrips).
Currently (1.2) we prewarm the connection with STT and TTS, but not with the LLMs.
This is because LLMs usually require us to perform an inference request, instead of just opening a HTTP connection to
/. There are a bunch of benefits to prewarming the LLM, the primary one is we could bypass the initial connection setup time, which could add up to be ~2s (DNS, SSL roundtrips).