Class: LiterLlm::ToolMessage
- Inherits:
-
Object
- Object
- LiterLlm::ToolMessage
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#content ⇒ String?
Returns the value of attribute content.
-
#name ⇒ String?
Returns the value of attribute name.
-
#tool_call_id ⇒ String?
Returns the value of attribute tool_call_id.
Instance Method Summary collapse
-
#initialize ⇒ ToolMessage
constructor
A new instance of ToolMessage.
Constructor Details
#initialize ⇒ ToolMessage
Returns a new instance of ToolMessage.
68 |
# File 'sig/types.rbs', line 68
def initialize: (?content: String, ?tool_call_id: String, ?name: String) -> void
|
Instance Attribute Details
#content ⇒ String?
Returns the value of attribute content.
64 65 66 |
# File 'sig/types.rbs', line 64 def content @content end |
#name ⇒ String?
Returns the value of attribute name.
66 67 68 |
# File 'sig/types.rbs', line 66 def name @name end |
#tool_call_id ⇒ String?
Returns the value of attribute tool_call_id.
65 66 67 |
# File 'sig/types.rbs', line 65 def tool_call_id @tool_call_id end |