Class: Vellum::NodeOutputCompiledValue

Inherits:
Object
  • Object
show all
Defined in:
lib/vellum_ai/types/node_output_compiled_value.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(member:, discriminant:) ⇒ NodeOutputCompiledValue

Parameters:

  • member (Object)
  • discriminant (String)


22
23
24
25
26
27
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 22

def initialize(member:, discriminant:)
  # @type [Object]
  @member = member
  # @type [String]
  @discriminant = discriminant
end

Instance Attribute Details

#discriminantObject (readonly)

Returns the value of attribute discriminant.



15
16
17
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 15

def discriminant
  @discriminant
end

#memberObject (readonly)

Returns the value of attribute member.



15
16
17
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 15

def member
  @member
end

Class Method Details

.array(member:) ⇒ NodeOutputCompiledValue

Parameters:

Returns:



158
159
160
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 158

def self.array(member:)
  new(member: member, discriminant: "ARRAY")
end

.chat_history(member:) ⇒ NodeOutputCompiledValue



140
141
142
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 140

def self.chat_history(member:)
  new(member: member, discriminant: "CHAT_HISTORY")
end

.error(member:) ⇒ NodeOutputCompiledValue

Parameters:

Returns:



152
153
154
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 152

def self.error(member:)
  new(member: member, discriminant: "ERROR")
end

.from_json(json_object:) ⇒ NodeOutputCompiledValue

Deserialize a JSON object to an instance of NodeOutputCompiledValue

Parameters:

  • json_object (JSON)

Returns:



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 33

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  member = case struct.type
           when "STRING"
             NodeOutputCompiledStringValue.from_json(json_object: json_object)
           when "NUMBER"
             NodeOutputCompiledNumberValue.from_json(json_object: json_object)
           when "JSON"
             NodeOutputCompiledJsonValue.from_json(json_object: json_object)
           when "CHAT_HISTORY"
             NodeOutputCompiledChatHistoryValue.from_json(json_object: json_object)
           when "SEARCH_RESULTS"
             NodeOutputCompiledSearchResultsValue.from_json(json_object: json_object)
           when "ERROR"
             NodeOutputCompiledErrorValue.from_json(json_object: json_object)
           when "ARRAY"
             NodeOutputCompiledArrayValue.from_json(json_object: json_object)
           when "FUNCTION_CALL"
             NodeOutputCompiledFunctionValue.from_json(json_object: json_object)
           else
             NodeOutputCompiledStringValue.from_json(json_object: json_object)
           end
  new(member: member, discriminant: struct.type)
end

.function_call(member:) ⇒ NodeOutputCompiledValue



164
165
166
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 164

def self.function_call(member:)
  new(member: member, discriminant: "FUNCTION_CALL")
end

.json(member:) ⇒ NodeOutputCompiledValue

Parameters:

Returns:



134
135
136
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 134

def self.json(member:)
  new(member: member, discriminant: "JSON")
end

.number(member:) ⇒ NodeOutputCompiledValue

Parameters:

Returns:



128
129
130
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 128

def self.number(member:)
  new(member: member, discriminant: "NUMBER")
end

.search_results(member:) ⇒ NodeOutputCompiledValue



146
147
148
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 146

def self.search_results(member:)
  new(member: member, discriminant: "SEARCH_RESULTS")
end

.string(member:) ⇒ NodeOutputCompiledValue

Parameters:

Returns:



122
123
124
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 122

def self.string(member:)
  new(member: member, discriminant: "STRING")
end

.validate_raw(obj:) ⇒ Void

Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.

Parameters:

  • obj (Object)

Returns:

  • (Void)


89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 89

def self.validate_raw(obj:)
  case obj.type
  when "STRING"
    NodeOutputCompiledStringValue.validate_raw(obj: obj)
  when "NUMBER"
    NodeOutputCompiledNumberValue.validate_raw(obj: obj)
  when "JSON"
    NodeOutputCompiledJsonValue.validate_raw(obj: obj)
  when "CHAT_HISTORY"
    NodeOutputCompiledChatHistoryValue.validate_raw(obj: obj)
  when "SEARCH_RESULTS"
    NodeOutputCompiledSearchResultsValue.validate_raw(obj: obj)
  when "ERROR"
    NodeOutputCompiledErrorValue.validate_raw(obj: obj)
  when "ARRAY"
    NodeOutputCompiledArrayValue.validate_raw(obj: obj)
  when "FUNCTION_CALL"
    NodeOutputCompiledFunctionValue.validate_raw(obj: obj)
  else
    raise("Passed value matched no type within the union, validation failed.")
  end
end

Instance Method Details

#is_a?(obj) ⇒ Boolean

For Union Types, is_a? functionality is delegated to the wrapped member.

Parameters:

  • obj (Object)

Returns:

  • (Boolean)


116
117
118
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 116

def is_a?(obj)
  @member.is_a?(obj)
end

#kind_of?Object



18
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 18

alias kind_of? is_a?

#to_json(*_args) ⇒ JSON

For Union Types, to_json functionality is delegated to the wrapped member.

Returns:

  • (JSON)


61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/vellum_ai/types/node_output_compiled_value.rb', line 61

def to_json(*_args)
  case @discriminant
  when "STRING"
    { **@member.to_json, type: @discriminant }.to_json
  when "NUMBER"
    { **@member.to_json, type: @discriminant }.to_json
  when "JSON"
    { **@member.to_json, type: @discriminant }.to_json
  when "CHAT_HISTORY"
    { **@member.to_json, type: @discriminant }.to_json
  when "SEARCH_RESULTS"
    { **@member.to_json, type: @discriminant }.to_json
  when "ERROR"
    { **@member.to_json, type: @discriminant }.to_json
  when "ARRAY"
    { **@member.to_json, type: @discriminant }.to_json
  when "FUNCTION_CALL"
    { **@member.to_json, type: @discriminant }.to_json
  else
    { "type": @discriminant, value: @member }.to_json
  end
  @member.to_json
end