Class: Vellum::FulfilledExecutePromptResponse
- Inherits:
-
Object
- Object
- Vellum::FulfilledExecutePromptResponse
- 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
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#execution_id ⇒ String
readonly
The ID of the execution.
- #meta ⇒ Vellum::PromptExecutionMeta readonly
- #outputs ⇒ Array<Vellum::PromptOutput> readonly
-
#raw ⇒ Object
readonly
‘expand_raw`.
- #state ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(meta: OMIT, raw: OMIT, execution_id:, state:, outputs:, additional_properties: nil) ⇒ Vellum::FulfilledExecutePromptResponse constructor
- #to_json ⇒ String
Constructor Details
#initialize(meta: OMIT, raw: OMIT, execution_id:, state:, outputs:, additional_properties: nil) ⇒ Vellum::FulfilledExecutePromptResponse
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 = if != OMIT @raw = raw if raw != OMIT @execution_id = execution_id @state = state @outputs = outputs @additional_properties = additional_properties @_field_set = { "meta": , "raw": raw, "execution_id": execution_id, "state": state, "outputs": outputs }.reject do | _k, v | v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns 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_id ⇒ String (readonly)
Returns 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 |
#meta ⇒ Vellum::PromptExecutionMeta (readonly)
12 13 14 |
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 12 def @meta end |
#outputs ⇒ Array<Vellum::PromptOutput> (readonly)
21 22 23 |
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 21 def outputs @outputs end |
#raw ⇒ Object (readonly)
‘expand_raw`.
15 16 17 |
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 15 def raw @raw end |
#state ⇒ String (readonly)
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
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? = parsed_json["meta"].to_json = Vellum::PromptExecutionMeta.from_json(json_object: ) else = 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: , raw: raw, execution_id: execution_id, state: state, outputs: outputs, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ 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..nil? || Vellum::PromptExecutionMeta.validate_raw(obj: obj.) 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_json ⇒ String
81 82 83 |
# File 'lib/vellum_ai/types/fulfilled_execute_prompt_response.rb', line 81 def to_json @_field_set&.to_json end |