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) · 575 Bytes

ChatCompletionRequestFunctionMessage.md

File metadata and controls

22 lines (16 loc) · 575 Bytes

OpenapiClient::ChatCompletionRequestFunctionMessage

Properties

Name Type Description Notes
role String The role of the messages author, in this case `function`.
content String The return value from the function call, to return to the model.
name String The name of the function to call.

Example

require 'openapi_client'

instance = OpenapiClient::ChatCompletionRequestFunctionMessage.new(
  role: null,
  content: null,
  name: null
)