Class: LiterLlm::LlmProviderConfig
- Inherits:
-
Object
- Object
- LiterLlm::LlmProviderConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#auth_header ⇒ String?
readonly
Returns the value of attribute auth_header.
-
#base_url ⇒ String
readonly
Returns the value of attribute base_url.
-
#model_prefixes ⇒ Array[String]
readonly
Returns the value of attribute model_prefixes.
-
#name ⇒ String
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize ⇒ LlmProviderConfig
constructor
A new instance of LlmProviderConfig.
Constructor Details
#initialize ⇒ LlmProviderConfig
Returns a new instance of LlmProviderConfig.
505 |
# File 'sig/types.rbs', line 505
def initialize: (?name: String, ?base_url: String, ?auth_header: String, ?model_prefixes: Array[String]) -> void
|
Instance Attribute Details
#auth_header ⇒ String? (readonly)
Returns the value of attribute auth_header.
502 503 504 |
# File 'sig/types.rbs', line 502 def auth_header @auth_header end |
#base_url ⇒ String (readonly)
Returns the value of attribute base_url.
501 502 503 |
# File 'sig/types.rbs', line 501 def base_url @base_url end |
#model_prefixes ⇒ Array[String] (readonly)
Returns the value of attribute model_prefixes.
503 504 505 |
# File 'sig/types.rbs', line 503 def model_prefixes @model_prefixes end |
#name ⇒ String (readonly)
Returns the value of attribute name.
500 501 502 |
# File 'sig/types.rbs', line 500 def name @name end |