Class: Xberg::ResolvedPreset

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeResolvedPreset

Returns a new instance of ResolvedPreset.

Parameters:

  • id: (String)
  • version: (String)
  • fingerprint: (String)
  • schema_name: (String)
  • schema: (json_value)
  • system_prompt: (String)
  • merge_mode: (MergeMode)
  • preferred_call_mode: (CallMode)
  • emit_citations: (Boolean)


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

def initialize: (id: String, version: String, fingerprint: String, schema_name: String, schema: json_value, system_prompt: String, merge_mode: MergeMode, preferred_call_mode: CallMode, emit_citations: bool) -> void

Instance Attribute Details

#emit_citationsBoolean (readonly)

Returns the value of attribute emit_citations.

Returns:

  • (Boolean)


2044
2045
2046
# File 'sig/types.rbs', line 2044

def emit_citations
  @emit_citations
end

#fingerprintString (readonly)

Returns the value of attribute fingerprint.

Returns:

  • (String)


2038
2039
2040
# File 'sig/types.rbs', line 2038

def fingerprint
  @fingerprint
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


2036
2037
2038
# File 'sig/types.rbs', line 2036

def id
  @id
end

#merge_modeMergeMode (readonly)

Returns the value of attribute merge_mode.

Returns:



2042
2043
2044
# File 'sig/types.rbs', line 2042

def merge_mode
  @merge_mode
end

#preferred_call_modeCallMode (readonly)

Returns the value of attribute preferred_call_mode.

Returns:



2043
2044
2045
# File 'sig/types.rbs', line 2043

def preferred_call_mode
  @preferred_call_mode
end

#schemajson_value (readonly)

Returns the value of attribute schema.

Returns:

  • (json_value)


2040
2041
2042
# File 'sig/types.rbs', line 2040

def schema
  @schema
end

#schema_nameString (readonly)

Returns the value of attribute schema_name.

Returns:

  • (String)


2039
2040
2041
# File 'sig/types.rbs', line 2039

def schema_name
  @schema_name
end

#system_promptString (readonly)

Returns the value of attribute system_prompt.

Returns:

  • (String)


2041
2042
2043
# File 'sig/types.rbs', line 2041

def system_prompt
  @system_prompt
end

#versionString (readonly)

Returns the value of attribute version.

Returns:

  • (String)


2037
2038
2039
# File 'sig/types.rbs', line 2037

def version
  @version
end