Class: Vellum::FulfilledExecutePromptResponse

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

Overview

generated by the prompt.

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: OMIT, raw: OMIT, execution_id:, state:, outputs:, additional_properties: nil) ⇒ Vellum::FulfilledExecutePromptResponse

Parameters:

  • execution_id (String)

    The ID of the execution.

  • state (String)
  • outputs (Array<Vellum::PromptOutput>)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



38
39
40
41
42
43
44
45
46
47
48
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 38

def initialize(meta: OMIT, raw: OMIT, execution_id:, state:, outputs:, additional_properties: nil)
  @meta = meta if meta != OMIT
  @raw = raw if raw != OMIT
  @execution_id = execution_id
  @state = state
  @outputs = outputs
  @additional_properties = additional_properties
  @_field_set = { "meta": meta, "raw": raw, "execution_id": execution_id, "state": state, "outputs": outputs }.reject do | _k, v |
  v == OMIT
end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



23
24
25
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 23

def additional_properties
  @additional_properties
end

#execution_idString (readonly)

Returns The ID of the execution.

Returns:

  • (String)

    The ID of the execution.



17
18
19
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 17

def execution_id
  @execution_id
end

#metaVellum::PromptExecutionMeta (readonly)



12
13
14
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 12

def meta
  @meta
end

#outputsArray<Vellum::PromptOutput> (readonly)

Returns:



21
22
23
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 21

def outputs
  @outputs
end

#rawObject (readonly)

‘expand_raw`.



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

def raw
  @raw
end

#stateString (readonly)

Returns:

  • (String)


19
20
21
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 19

def state
  @state
end

Class Method Details

.from_json(json_object:) ⇒ Vellum::FulfilledExecutePromptResponse

Parameters:

  • json_object (String)

Returns:



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 53

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  unless parsed_json["meta"].nil?
    meta = parsed_json["meta"].to_json
    meta = Vellum::PromptExecutionMeta.from_json(json_object: meta)
  else
    meta = nil
  end
  raw = parsed_json["raw"]
  execution_id = parsed_json["execution_id"]
  state = parsed_json["state"]
  outputs = parsed_json["outputs"]&.map do | item |
  item = item.to_json
  Vellum::PromptOutput.from_json(json_object: item)
end
  new(
    meta: meta,
    raw: raw,
    execution_id: execution_id,
    state: state,
    outputs: outputs,
    additional_properties: struct
  )
end

.validate_raw(obj:) ⇒ Void

Parameters:

  • obj (Object)

Returns:

  • (Void)


90
91
92
93
94
95
96
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 90

def self.validate_raw(obj:)
  obj.meta.nil? || Vellum::PromptExecutionMeta.validate_raw(obj: obj.meta)
  obj.raw&.is_a?(Hash) != false || raise("Passed value for field obj.raw is not the expected type, validation failed.")
  obj.execution_id.is_a?(String) != false || raise("Passed value for field obj.execution_id is not the expected type, validation failed.")
  obj.state.is_a?(String) != false || raise("Passed value for field obj.state is not the expected type, validation failed.")
  obj.outputs.is_a?(Array) != false || raise("Passed value for field obj.outputs is not the expected type, validation failed.")
end

Instance Method Details

#to_jsonString

Returns:

  • (String)


81
82
83
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 81

def to_json
  @_field_set&.to_json
end