Class: Vellum::RejectedFunctionCall

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

Overview

Returned if the function call failed to parse for some reason.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error:, name:, id: nil, additional_properties: nil) ⇒ RejectedFunctionCall

Parameters:

  • error (VellumError)
  • id (String) (defaults to: nil)
  • name (String)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



16
17
18
19
20
21
22
23
24
25
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 16

def initialize(error:, name:, id: nil, additional_properties: nil)
  # @type [VellumError]
  @error = error
  # @type [String]
  @id = id
  # @type [String]
  @name = name
  # @type [OpenStruct] Additional properties unmapped to the current class definition
  @additional_properties = additional_properties
end

Instance Attribute Details

#additional_propertiesObject (readonly)

Returns the value of attribute additional_properties.



9
10
11
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9

def additional_properties
  @additional_properties
end

#errorObject (readonly)

Returns the value of attribute error.



9
10
11
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9

def error
  @error
end

#idObject (readonly)

Returns the value of attribute id.



9
10
11
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



9
10
11
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9

def name
  @name
end

Class Method Details

.from_json(json_object:) ⇒ RejectedFunctionCall

Deserialize a JSON object to an instance of RejectedFunctionCall

Parameters:

  • json_object (JSON)

Returns:



31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 31

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  if parsed_json["error"].nil?
    error = nil
  else
    error = parsed_json["error"].to_json
    error = VellumError.from_json(json_object: error)
  end
  id = struct.id
  name = struct.name
  new(error: error, id: id, name: name, additional_properties: struct)
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)


56
57
58
59
60
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 56

def self.validate_raw(obj:)
  VellumError.validate_raw(obj: obj.error)
  obj.id&.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
  obj.name.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ JSON

Serialize an instance of RejectedFunctionCall to a JSON object

Returns:

  • (JSON)


48
49
50
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 48

def to_json(*_args)
  { "error": @error, "id": @id, "name": @name }.to_json
end