Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 560 Bytes

ChatCompletionRequestToolMessage.md

File metadata and controls

22 lines (16 loc) · 560 Bytes

OpenapiClient::ChatCompletionRequestToolMessage

Properties

Name Type Description Notes
role String The role of the messages author, in this case `tool`.
content String The contents of the tool message.
tool_call_id String Tool call that this message is responding to.

Example

require 'openapi_client'

instance = OpenapiClient::ChatCompletionRequestToolMessage.new(
  role: null,
  content: null,
  tool_call_id: null
)