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)


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

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)


2054
2055
2056
# File 'sig/types.rbs', line 2054

def emit_citations
  @emit_citations
end

#fingerprintString (readonly)

Returns the value of attribute fingerprint.

Returns:

  • (String)


2048
2049
2050
# File 'sig/types.rbs', line 2048

def fingerprint
  @fingerprint
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


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

def id
  @id
end

#merge_modeMergeMode (readonly)

Returns the value of attribute merge_mode.

Returns:



2052
2053
2054
# File 'sig/types.rbs', line 2052

def merge_mode
  @merge_mode
end

#preferred_call_modeCallMode (readonly)

Returns the value of attribute preferred_call_mode.

Returns:



2053
2054
2055
# File 'sig/types.rbs', line 2053

def preferred_call_mode
  @preferred_call_mode
end

#schemajson_value (readonly)

Returns the value of attribute schema.

Returns:

  • (json_value)


2050
2051
2052
# File 'sig/types.rbs', line 2050

def schema
  @schema
end

#schema_nameString (readonly)

Returns the value of attribute schema_name.

Returns:

  • (String)


2049
2050
2051
# File 'sig/types.rbs', line 2049

def schema_name
  @schema_name
end

#system_promptString (readonly)

Returns the value of attribute system_prompt.

Returns:

  • (String)


2051
2052
2053
# File 'sig/types.rbs', line 2051

def system_prompt
  @system_prompt
end

#versionString (readonly)

Returns the value of attribute version.

Returns:

  • (String)


2047
2048
2049
# File 'sig/types.rbs', line 2047

def version
  @version
end