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: (String)
  • system_prompt: (String)
  • merge_mode: (enum_MergeMode)
  • preferred_call_mode: (enum_CallMode)
  • emit_citations: (Boolean)


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

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

Instance Attribute Details

#emit_citationsBoolean (readonly)

Returns the value of attribute emit_citations.

Returns:

  • (Boolean)


2326
2327
2328
# File 'sig/types.rbs', line 2326

def emit_citations
  @emit_citations
end

#fingerprintString (readonly)

Returns the value of attribute fingerprint.

Returns:

  • (String)


2320
2321
2322
# File 'sig/types.rbs', line 2320

def fingerprint
  @fingerprint
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


2318
2319
2320
# File 'sig/types.rbs', line 2318

def id
  @id
end

#merge_modeenum_MergeMode (readonly)

Returns the value of attribute merge_mode.

Returns:

  • (enum_MergeMode)


2324
2325
2326
# File 'sig/types.rbs', line 2324

def merge_mode
  @merge_mode
end

#preferred_call_modeenum_CallMode (readonly)

Returns the value of attribute preferred_call_mode.

Returns:

  • (enum_CallMode)


2325
2326
2327
# File 'sig/types.rbs', line 2325

def preferred_call_mode
  @preferred_call_mode
end

#schemaString (readonly)

Returns the value of attribute schema.

Returns:

  • (String)


2322
2323
2324
# File 'sig/types.rbs', line 2322

def schema
  @schema
end

#schema_nameString (readonly)

Returns the value of attribute schema_name.

Returns:

  • (String)


2321
2322
2323
# File 'sig/types.rbs', line 2321

def schema_name
  @schema_name
end

#system_promptString (readonly)

Returns the value of attribute system_prompt.

Returns:

  • (String)


2323
2324
2325
# File 'sig/types.rbs', line 2323

def system_prompt
  @system_prompt
end

#versionString (readonly)

Returns the value of attribute version.

Returns:

  • (String)


2319
2320
2321
# File 'sig/types.rbs', line 2319

def version
  @version
end