mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
* Start refactor * Interface updates * Rework Assistant, Provider, and tests for better domain boundaries * Consolidate and simplify OpenAI provider and provider concepts * Clean up assistant streaming * Improve assistant message orchestration logic * Clean up "thinking" UI interactions * Remove stale class * Regenerate VCR test responses
10 lines
131 B
Ruby
10 lines
131 B
Ruby
class DeveloperMessage < Message
|
|
def role
|
|
"developer"
|
|
end
|
|
|
|
private
|
|
def broadcast?
|
|
chat.debug_mode?
|
|
end
|
|
end
|