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


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

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:



710
711
712
# File 'sig/types.rbs', line 710

def auth_header
  @auth_header
end

#base_urlString (readonly)

Returns the value of attribute base_url.

Returns:

  • (String)


709
710
711
# File 'sig/types.rbs', line 709

def base_url
  @base_url
end

#model_prefixesArray[String] (readonly)

Returns the value of attribute model_prefixes.

Returns:

  • (Array[String])


711
712
713
# File 'sig/types.rbs', line 711

def model_prefixes
  @model_prefixes
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


708
709
710
# File 'sig/types.rbs', line 708

def name
  @name
end