ExLLM.Types.StreamChunk (ex_llm v0.8.1)

View Source

Represents a chunk from a streaming LLM response.

Summary

Types

t()

@type t() :: %ExLLM.Types.StreamChunk{
  content: String.t() | nil,
  finish_reason: String.t() | nil,
  id: String.t() | nil,
  metadata: map() | nil,
  model: String.t() | nil
}