Class: Telnyx::Models::AI::Assistants::AssistantTest
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::AI::Assistants::AssistantTest
- Defined in:
- lib/telnyx/models/ai/assistants/assistant_test.rb
Overview
Defined Under Namespace
Classes: Rubric
Instance Attribute Summary collapse
-
#created_at ⇒ Time
Timestamp when the test was created.
-
#description ⇒ String?
Detailed description of the test’s purpose and scope.
-
#destination ⇒ String?
Target destination for test conversations.
-
#instructions ⇒ String?
Detailed test scenario instructions and objectives.
-
#max_duration_seconds ⇒ Integer?
Maximum allowed duration for test execution in seconds.
-
#name ⇒ String
Human-readable name of the test.
-
#rubric ⇒ Array<Telnyx::Models::AI::Assistants::AssistantTest::Rubric>
Evaluation criteria used to assess test performance.
-
#telnyx_conversation_channel ⇒ Symbol, Telnyx::Models::AI::Assistants::TelnyxConversationChannel
Communication channel used for test execution.
-
#test_id ⇒ String
Unique identifier for the assistant test.
-
#test_suite ⇒ String?
Test suite grouping for organizational purposes.
Method Summary
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
This class inherits a constructor from Telnyx::Internal::Type::BaseModel
Instance Attribute Details
#created_at ⇒ Time
Timestamp when the test was created.
13 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 13 required :created_at, Time |
#description ⇒ String?
Detailed description of the test’s purpose and scope.
43 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 43 optional :description, String |
#destination ⇒ String?
Target destination for test conversations.
49 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 49 optional :destination, String |
#instructions ⇒ String?
Detailed test scenario instructions and objectives.
55 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 55 optional :instructions, String |
#max_duration_seconds ⇒ Integer?
Maximum allowed duration for test execution in seconds.
61 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 61 optional :max_duration_seconds, Integer |
#name ⇒ String
Human-readable name of the test.
19 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 19 required :name, String |
#rubric ⇒ Array<Telnyx::Models::AI::Assistants::AssistantTest::Rubric>
Evaluation criteria used to assess test performance.
25 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 25 required :rubric, -> { Telnyx::Internal::Type::ArrayOf[Telnyx::AI::Assistants::AssistantTest::Rubric] } |
#telnyx_conversation_channel ⇒ Symbol, Telnyx::Models::AI::Assistants::TelnyxConversationChannel
Communication channel used for test execution.
31 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 31 required :telnyx_conversation_channel, enum: -> { Telnyx::AI::Assistants::TelnyxConversationChannel } |
#test_id ⇒ String
Unique identifier for the assistant test.
37 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 37 required :test_id, String |
#test_suite ⇒ String?
Test suite grouping for organizational purposes.
67 |
# File 'lib/telnyx/models/ai/assistants/assistant_test.rb', line 67 optional :test_suite, String |