Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/modules/integrations.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"`, `"gemini_3_pro"`, `"claude_sonnet_4_6"`, `"claude_opus_4_6"`
* Options: `"gpt_5_mini"`, `"gemini_3_flash"`, `"gpt_5"`, `"gemini_3.1_pro"`, `"claude_sonnet_4_6"`, `"claude_opus_4_6"`
*/
model?: 'gpt_5_mini' | 'gemini_3_flash' | 'gpt_5' | 'gemini_3_pro' | 'claude_sonnet_4_6' | 'claude_opus_4_6';
model?: 'gpt_5_mini' | 'gemini_3_flash' | 'gpt_5' | 'gemini_3.1_pro' | 'claude_sonnet_4_6' | 'claude_opus_4_6';
/** If set to `true`, the LLM will use Google Search, Maps, and News to gather real-time context before answering.
* @default false
*/
Expand Down
Loading