mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 21:29:38 +02:00
8 lines
120 B
Ruby
8 lines
120 B
Ruby
|
module Chat::Debuggable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
def debug_mode?
|
||
|
ENV["AI_DEBUG_MODE"] == "true"
|
||
|
end
|
||
|
end
|