From 6d9e0f08a15f590bbed33e30d9589f4c8751e944 Mon Sep 17 00:00:00 2001 From: Hadas Hirt Date: Mon, 27 Apr 2026 14:13:30 +0300 Subject: [PATCH] Add gpt_5_5 and claude_opus_4_7 to InvokeLLMParams model union Both models are available in apper's RuntimeModel enum but were missing from the SDK type, so callers had no type-safe way to select them. Co-Authored-By: Claude Sonnet 4.6 --- src/modules/integrations.types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/integrations.types.ts b/src/modules/integrations.types.ts index d42e7692..a35f0c70 100644 --- a/src/modules/integrations.types.ts +++ b/src/modules/integrations.types.ts @@ -48,9 +48,9 @@ export interface InvokeLLMParams { prompt: string; /** Optionally specify a model to override the app-level model setting for this specific call. * - * Options: `"gpt_5_mini"`, `"gemini_3_flash"`, `"gpt_5"`, `"gpt_5_4"`, `"gemini_3_1_pro"`, `"claude_sonnet_4_6"`, `"claude_opus_4_6"` + * Options: `"gpt_5_mini"`, `"gemini_3_flash"`, `"gpt_5"`, `"gpt_5_4"`, `"gpt_5_5"`, `"gemini_3_1_pro"`, `"claude_sonnet_4_6"`, `"claude_opus_4_6"`, `"claude_opus_4_7"` */ - model?: 'gpt_5_mini' | 'gemini_3_flash' | 'gpt_5' | 'gpt_5_4' | 'gemini_3_1_pro' | 'claude_sonnet_4_6' | 'claude_opus_4_6'; + model?: 'gpt_5_mini' | 'gemini_3_flash' | 'gpt_5' | 'gpt_5_4' | 'gpt_5_5' | 'gemini_3_1_pro' | 'claude_sonnet_4_6' | 'claude_opus_4_6' | 'claude_opus_4_7'; /** If set to `true`, the LLM will use Google Search, Maps, and News to gather real-time context before answering. * @default false */