Raw

data class Raw(val options: JsonObject) : ProviderOptions(source)

Raw JSON options map. options keys are provider names (e.g. "openai", "anthropic"); values are provider-specific JSON objects.

Since

0.3.0-beta01

Constructors

Link copied to clipboard
constructor(options: JsonObject)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
operator fun plus(other: ProviderOptions): ProviderOptions

Deep-merge other on top of these options (other wins on key conflicts).

Link copied to clipboard

Convert to the Map<String, JsonElement> format used internally by providers.