Chat
objects hold a sequence of Message
objects pre and post generation. This is the most common way that we interact with LLMs, and the interface of both these and ChatPipeline
’s are very flexible objects that let you tune the generation process, gather structured outputs, validate parsing, perform text replacements, serialize and deserialize, fork conversations, etc.
Basic Usage
Image Content
You can include images in messages using theContentImageUrl
class:
Audio Content
For voice or audio processing, use theContentAudioInput
class:
Content Parts
You can access and manipulate the structured content parts directly:Templating
You can use bothChatPipeline.apply()
and ChatPipeline.apply_to_all()
to swap values prefixed with $
characters inside message contents for fast templating support. This functionality uses string.Template.safe_substitute underneath.
Tool Calls
Messages can contain tool calls, which represent function calls made by the model. Rigging has support for handling tool calls for you, which you can find over here. When using API-provided function calling, you can access thetool_calls
property of the message:
Parsed Parts
Message objects hold all of their parsedParsedMessagePart
’s inside their .parts
property. These parts maintain both the instance of the parsed Rigging model object and a .slice_
property that defines exactly where in the message content they are located.
Every time parsing occurs, these parts are re-synced by using .to_pretty_xml()
on the model, and stitching the clean content back into the message, fixing any other slices which might have been affected by the operation, and ordering the .parts
property based on where they occur in the message content.
Stripping Parts
Because we track exactly where a parsed model is inside a message, we can cleanly remove just that portion from the content and re-sync the other parts to align with the new content. This is helpful for removing context from a conversation that you might not want there for future generations. This is a very powerful primitive, that allows you to operate on messages more like a collection of structured models than raw text.Metadata
Both Chats and ChatPipelines support the concept of arbitrary metadata that you can use to store things like tags, metrics, and supporting data for storage, sorting, and filtering.ChatPipeline.meta()
adds toChatPipeline.metadata
Chat.meta()
adds toChat.metadata
Generation Context and Additional Data
Chats maintain some additional data to understand more about the generation process:Chat.stop_reason
Chat.usage
Chat.extra
transformers
generator doesn’t provide any usage information and the vllm
generator will add metrics information to the extra
field.
We intentionally keep these fields as generic as possible to allow for future expansion. You’ll often find deep information about the generation process in the Chat.extra
field.