Class: Telnyx::Resources::AI::FineTuning
- Inherits:
-
Object
- Object
- Telnyx::Resources::AI::FineTuning
- Defined in:
- lib/telnyx/resources/ai/fine_tuning.rb,
lib/telnyx/resources/ai/fine_tuning/jobs.rb
Defined Under Namespace
Classes: Jobs
Instance Attribute Summary collapse
-
#jobs ⇒ Telnyx::Resources::AI::FineTuning::Jobs
readonly
Customize LLMs for your unique needs.
Instance Method Summary collapse
-
#initialize(client:) ⇒ FineTuning
constructor
private
A new instance of FineTuning.
Constructor Details
#initialize(client:) ⇒ FineTuning
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of FineTuning.
14 15 16 17 |
# File 'lib/telnyx/resources/ai/fine_tuning.rb', line 14 def initialize(client:) @client = client @jobs = Telnyx::Resources::AI::FineTuning::Jobs.new(client: client) end |
Instance Attribute Details
#jobs ⇒ Telnyx::Resources::AI::FineTuning::Jobs (readonly)
Customize LLMs for your unique needs
9 10 11 |
# File 'lib/telnyx/resources/ai/fine_tuning.rb', line 9 def jobs @jobs end |