Class: LLM::Function
- Inherits:
-
Object
- Object
- LLM::Function
- Defined in:
- lib/llm/function.rb
Instance Method Summary collapse
-
#builtin! ⇒ void
Mark a function as a built-in function.
-
#builtin? ⇒ Boolean
Returns true when a function is a built-in function.
Instance Method Details
#builtin! ⇒ void
This method returns an undefined value.
Mark a function as a built-in function
14 15 16 |
# File 'lib/llm/function.rb', line 14 def builtin! @builtin = true end |
#builtin? ⇒ Boolean
Returns true when a function is a built-in function
7 8 9 |
# File 'lib/llm/function.rb', line 7 def builtin? @builtin end |