LLM with Streaming
Building an LLM with streaming output
View on Github
In this example, we go through a Truss that serves an LLM, and streams the output to the client.
Why Streaming?
For certain ML models, generations can take a long time. Especially with LLMs, a long output could take 10 - 20 seconds to generate. However, because LLMs generate tokens in sequence, useful output can be made available to users sooner. To support this, in Truss, we support streaming output. In this example, we build a Truss that streams the output of the Falcon-7B model.
Set up the imports and key constants
In this example, we use the HuggingFace transformers library to build a text generation model.
We use the instruct version of the Falcon-7B model, and have some defaults for inference parameters.
Define the load function
In the load
function of the Truss, we implement logic
involved in downloading the model and loading it into memory.
Define the predict function
In the predict
function of the Truss, we implement the actual
inference logic. The two main steps are:
- Tokenize the input
- Call the modelβs
generate
function, ensuring that we pass aTextIteratorStreamer
. This is what gives us streaming output, and and also do this in a Thread, so that it does not block the main invocation. - Return a generator that iterates over the
TextIteratorStreamer
object
Instantiate the Streamer object, which weβll later use for returning the output to users.
When creating the generation parameters, ensure to pass the streamer
object
that we created previously.
Spawn a thread to run the generation, so that it does not block the main thread.
In Truss, the way to achieve streaming output is to return a generator
that yields content. In this example, we yield the output of the streamer
,
which produces output and yields it until the generation is complete.
We define this inner
function to create our generator.
Setting up the config.yaml
Running Falcon 7B requires torch, transformers, and a few other related libraries.
Configure resources for Falcon
Note that we need an A10G to run this model.