Files
fizzy/app/models/command/result/insight_response.rb
T
Jorge Manrubia 2510c1e0ac Major rework of the command/ai abstractions
- Big simplification of the overall workflow.
- Composite commands store their commands properly, these are undoable now.
- Child commands are excluded from history
2025-05-16 13:29:18 +02:00

12 lines
168 B
Ruby

class Command::Result::InsightResponse
attr_reader :content
def initialize(content)
@content = content
end
def as_json
{ message: content }
end
end