Add gpt_5_5 and claude_opus_4_7 to InvokeLLMParams model union#163
Conversation
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 <noreply@anthropic.com>
|
Claude finished @hadashirt's task —— View job Code Review for PR #163I've reviewed the changes to add ✅ Code Quality and Best PracticesThe code changes follow the existing patterns correctly:
✅ No Potential Bugs or IssuesThe changes are straightforward type additions with no runtime impact. The implementation correctly:
✅ Performance ConsiderationsNo performance concerns - this is purely a TypeScript type definition change with no runtime overhead. ✅ Security ConcernsNo security issues identified. The changes only affect type definitions and don't introduce any new execution paths or data handling.
|
🚀 Package Preview Available!Install this PR's preview build with npm: npm i @base44-preview/sdk@0.8.26-pr.163.555a7dfPrefer not to change any import paths? Install using npm alias so your code still imports npm i "@base44/sdk@npm:@base44-preview/sdk@0.8.26-pr.163.555a7df"Or add it to your {
"dependencies": {
"@base44/sdk": "npm:@base44-preview/sdk@0.8.26-pr.163.555a7df"
}
}
Preview published to npm registry — try new features instantly! |
Summary
gpt_5_5andclaude_opus_4_7to themodelunion onInvokeLLMParamsinintegrations.types.tsWhat drifted
apper's
RuntimeModelenum has these two models but the SDK type was missing them:Companion docs PR: base44-dev/mintlify-docs (llm-models-fix branch)
Test plan
InvokeLLMParams.modelincludesgpt_5_5andclaude_opus_4_7🤖 Generated with Claude Code