Table of Contents

Enum ContentDeltaType

public enum ContentDeltaType

Fields

[ApiEnumAttribute] InputJson = 1

Partial JSON input that was sent to the model.

Example:
event: content_block_delta
data: {"type": "content_block_delta","index": 1,"delta": {"type": "input_json_delta","partial_json": "{"location": "San Fra"}}}

[ApiEnumAttribute] Signature = 3

A signature delta that contains a signature of the content block.

Example:
event: content_block_delta
data: {"type": "content_block_delta", "index": 0, "delta": {"type": "signature_delta", "signature": "EqQBCgIYAhIM1gbcDa9GJwZA2b3hGgxBdjrkzLoky3dl1pkiMOYds..."}}

[ApiEnumAttribute] Text = 0

A text content block delta.

Example:
event: content_block_delta
data: {"type": "content_block_delta","index": 0,"delta": {"type": "text_delta", "text": "ello frien"}}

[ApiEnumAttribute] Thinking = 2

A thinking delta that indicates the model is currently thinking.

Example:
event: content_block_delta
data: {"type": "content_block_delta", "index": 0, "delta": {"type": "thinking_delta", "thinking": "Let me solve this step by step:\n\n1. First break down 27 * 453"}}