interface LemonSliceOptions {
    idle_prompt?: string;
    idle_timeout?: number;
    image_url?: string;
    prompt?: string;
    [key: string]: unknown;
}

Indexable

[key: string]: unknown

Properties

idle_prompt?: string

Idle prompt, mapped to the provider's agent_idle_prompt.

idle_timeout?: number

Provider idle timeout in seconds; the gateway clamps it.

image_url?: string

Appearance source; mutually exclusive with a model-string agent id.

prompt?: string

Speaking prompt, mapped to the provider's agent_prompt.