Class: TencentCloud::Es::V20250101::Message

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20250101/models.rb

Overview

会话内容,按对话时间从旧到新在数组中排列,长度受模型窗口大小限制。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(role = nil, content = nil, toolcallid = nil, toolcalls = nil) ⇒ Message

Returns a new instance of Message.



689
690
691
692
693
694
# File 'lib/v20250101/models.rb', line 689

def initialize(role=nil, content=nil, toolcallid=nil, toolcalls=nil)
  @Role = role
  @Content = content
  @ToolCallId = toolcallid
  @ToolCalls = toolcalls
end

Instance Attribute Details

#ContentObject

Parameters:

  • Role:

    角色,可选值包括 system、user、assistant、 tool。

  • Content:

    具体文本内容

  • ToolCallId:

    当role为tool时传入,标识具体的函数调用

  • ToolCalls:

    模型生成的工具调用



687
688
689
# File 'lib/v20250101/models.rb', line 687

def Content
  @Content
end

#RoleObject

Parameters:

  • Role:

    角色,可选值包括 system、user、assistant、 tool。

  • Content:

    具体文本内容

  • ToolCallId:

    当role为tool时传入,标识具体的函数调用

  • ToolCalls:

    模型生成的工具调用



687
688
689
# File 'lib/v20250101/models.rb', line 687

def Role
  @Role
end

#ToolCallIdObject

Parameters:

  • Role:

    角色,可选值包括 system、user、assistant、 tool。

  • Content:

    具体文本内容

  • ToolCallId:

    当role为tool时传入,标识具体的函数调用

  • ToolCalls:

    模型生成的工具调用



687
688
689
# File 'lib/v20250101/models.rb', line 687

def ToolCallId
  @ToolCallId
end

#ToolCallsObject

Parameters:

  • Role:

    角色,可选值包括 system、user、assistant、 tool。

  • Content:

    具体文本内容

  • ToolCallId:

    当role为tool时传入,标识具体的函数调用

  • ToolCalls:

    模型生成的工具调用



687
688
689
# File 'lib/v20250101/models.rb', line 687

def ToolCalls
  @ToolCalls
end

Instance Method Details

#deserialize(params) ⇒ Object



696
697
698
699
700
701
702
703
704
705
706
707
708
# File 'lib/v20250101/models.rb', line 696

def deserialize(params)
  @Role = params['Role']
  @Content = params['Content']
  @ToolCallId = params['ToolCallId']
  unless params['ToolCalls'].nil?
    @ToolCalls = []
    params['ToolCalls'].each do |i|
      toolcall_tmp = ToolCall.new
      toolcall_tmp.deserialize(i)
      @ToolCalls << toolcall_tmp
    end
  end
end