Class: LiterLlm::CustomProviderConfig

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCustomProviderConfig

Returns a new instance of CustomProviderConfig.

Parameters:

  • name: (String)
  • base_url: (String)
  • auth_header: (AuthHeaderFormat)
  • model_prefixes: (Array[String])


269
# File 'sig/types.rbs', line 269

def initialize: (name: String, base_url: String, auth_header: AuthHeaderFormat, model_prefixes: Array[String]) -> void

Instance Attribute Details

#auth_headerAuthHeaderFormat (readonly)

Returns the value of attribute auth_header.

Returns:



266
267
268
# File 'sig/types.rbs', line 266

def auth_header
  @auth_header
end

#base_urlString (readonly)

Returns the value of attribute base_url.

Returns:

  • (String)


265
266
267
# File 'sig/types.rbs', line 265

def base_url
  @base_url
end

#model_prefixesArray[String] (readonly)

Returns the value of attribute model_prefixes.

Returns:

  • (Array[String])


267
268
269
# File 'sig/types.rbs', line 267

def model_prefixes
  @model_prefixes
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


264
265
266
# File 'sig/types.rbs', line 264

def name
  @name
end