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])


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

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:



795
796
797
# File 'sig/types.rbs', line 795

def auth_header
  @auth_header
end

#base_urlString (readonly)

Returns the value of attribute base_url.

Returns:

  • (String)


794
795
796
# File 'sig/types.rbs', line 794

def base_url
  @base_url
end

#model_prefixesArray[String] (readonly)

Returns the value of attribute model_prefixes.

Returns:

  • (Array[String])


796
797
798
# File 'sig/types.rbs', line 796

def model_prefixes
  @model_prefixes
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


793
794
795
# File 'sig/types.rbs', line 793

def name
  @name
end