Module: Contai::Generatable
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/contai/generatable.rb
Instance Method Summary collapse
Instance Method Details
#generate_ai_content!(async: false) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/contai/generatable.rb', line 17 def generate_ai_content!(async: false) if async ContaiGenerationJob.perform_later(self) else perform_generation end end |