Class: Options
- Inherits:
-
Object
- Object
- Options
- Defined in:
- lib/options.rb
Instance Attribute Summary collapse
-
#credentials ⇒ Object
Returns the value of attribute credentials.
-
#system_prompt ⇒ Object
Returns the value of attribute system_prompt.
-
#user_prompt ⇒ Object
Returns the value of attribute user_prompt.
Instance Method Summary collapse
-
#initialize ⇒ Options
constructor
A new instance of Options.
Constructor Details
#initialize ⇒ Options
Returns a new instance of Options.
4 5 6 7 8 |
# File 'lib/options.rb', line 4 def initialize @user_prompt = nil @system_prompt = nil @credentials = nil end |
Instance Attribute Details
#credentials ⇒ Object
Returns the value of attribute credentials.
2 3 4 |
# File 'lib/options.rb', line 2 def credentials @credentials end |
#system_prompt ⇒ Object
Returns the value of attribute system_prompt.
2 3 4 |
# File 'lib/options.rb', line 2 def system_prompt @system_prompt end |
#user_prompt ⇒ Object
Returns the value of attribute user_prompt.
2 3 4 |
# File 'lib/options.rb', line 2 def user_prompt @user_prompt end |