mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 05:39:39 +02:00
5 lines
168 B
Ruby
5 lines
168 B
Ruby
|
class ToolCall::Function < ToolCall
|
||
|
validates :function_name, :function_result, presence: true
|
||
|
validates :function_arguments, presence: true, allow_blank: true
|
||
|
end
|