/** * Default OpenAI provider options for Responses API calls via @ai-sdk/openai. * * `store: false` documents client intent (we persist conversation in sdk-assistant; * we do not rely on provider-side response retention). **It is not authoritative:** * ai-integration / llm-gw force `store: false` on the proxied request regardless of * this value. Do not expect changing it here to affect gateway or provider behavior. */ export declare const DEFAULT_LLM_PROVIDER_OPTIONS: { openai: { store: boolean; }; };