Skip to content

Commit 68c8277

Browse files
aaronbrezelclaude
andcommitted
fix: restore inlineData parameter in SSI rollup footer stub
The cleanup commit on feature/ssi-custom-function removed inlineData from the footer stub, but feature/ssi-inline-data re-adds it to customFunctions.ts. The stub was out of sync, silently dropping the inlineData argument. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 172da39 commit 68c8277

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

rollup.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,14 @@ function sampleRowsToEvaluation() { _GASEntry.sampleRowsToEvaluation(); }
5858
* Call the Gemini API from a spreadsheet cell.
5959
* @param {string|Array} userTexts One or more text parts for the user message.
6060
* Pass a single string, a cell reference, or a range / array literal.
61+
* @param {string|Array} inlineData Drive URL(s) or file ID(s) to attach as inline data.
62+
* Pass a single URL, a cell reference, or a range / array literal.
6163
* @param {string} systemPrompt System-level instruction for the model.
6264
* @param {string|Array} toolNames Names of pre-registered tools to enable.
6365
* @return {string} The model's text response, or "[SSI Error: ...]" on failure.
6466
* @customfunction
6567
*/
66-
function SSI(userTexts, systemPrompt, toolNames) { return _GASEntry.SSI(userTexts, systemPrompt, toolNames); }
68+
function SSI(userTexts, inlineData, systemPrompt, toolNames) { return _GASEntry.SSI(userTexts, inlineData, systemPrompt, toolNames); }
6769
`,
6870
},
6971
plugins: [

0 commit comments

Comments
 (0)