Class: DatadogAPIClient::V2::LLMObsInferenceMessage
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::LLMObsInferenceMessage
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/llm_obs_inference_message.rb
Overview
A single message in an LLM inference conversation.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#content ⇒ Object
Plain text content of the message.
-
#contents ⇒ Object
List of structured content blocks in a message.
-
#id ⇒ Object
Unique identifier for the message.
-
#role ⇒ Object
The role of the message author.
-
#tool_calls ⇒ Object
List of tool calls in a message.
-
#tool_results ⇒ Object
List of tool results in a message.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
42 43 44 |
# File 'lib/datadog_api_client/v2/models/llm_obs_inference_message.rb', line 42 def additional_properties @additional_properties end |
#content ⇒ Object
Plain text content of the message.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/llm_obs_inference_message.rb', line 25 def content @content end |
#contents ⇒ Object
List of structured content blocks in a message.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/llm_obs_inference_message.rb', line 28 def contents @contents end |
#id ⇒ Object
Unique identifier for the message.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/llm_obs_inference_message.rb', line 31 def id @id end |
#role ⇒ Object
The role of the message author.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/llm_obs_inference_message.rb', line 34 def role @role end |
#tool_calls ⇒ Object
List of tool calls in a message.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/llm_obs_inference_message.rb', line 37 def tool_calls @tool_calls end |
#tool_results ⇒ Object
List of tool results in a message.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/llm_obs_inference_message.rb', line 40 def tool_results @tool_results end |