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)


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

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)


1942
1943
1944
# File 'sig/types.rbs', line 1942

def emit_citations
  @emit_citations
end

#fingerprintString (readonly)

Returns the value of attribute fingerprint.

Returns:

  • (String)


1936
1937
1938
# File 'sig/types.rbs', line 1936

def fingerprint
  @fingerprint
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


1934
1935
1936
# File 'sig/types.rbs', line 1934

def id
  @id
end

#merge_modeMergeMode (readonly)

Returns the value of attribute merge_mode.

Returns:



1940
1941
1942
# File 'sig/types.rbs', line 1940

def merge_mode
  @merge_mode
end

#preferred_call_modeCallMode (readonly)

Returns the value of attribute preferred_call_mode.

Returns:



1941
1942
1943
# File 'sig/types.rbs', line 1941

def preferred_call_mode
  @preferred_call_mode
end

#schemajson_value (readonly)

Returns the value of attribute schema.

Returns:

  • (json_value)


1938
1939
1940
# File 'sig/types.rbs', line 1938

def schema
  @schema
end

#schema_nameString (readonly)

Returns the value of attribute schema_name.

Returns:

  • (String)


1937
1938
1939
# File 'sig/types.rbs', line 1937

def schema_name
  @schema_name
end

#system_promptString (readonly)

Returns the value of attribute system_prompt.

Returns:

  • (String)


1939
1940
1941
# File 'sig/types.rbs', line 1939

def system_prompt
  @system_prompt
end

#versionString (readonly)

Returns the value of attribute version.

Returns:

  • (String)


1935
1936
1937
# File 'sig/types.rbs', line 1935

def version
  @version
end