diff options
| author | Jacob Richman <[email protected]> | 2025-05-20 13:02:41 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-20 13:02:41 -0700 |
| commit | 716f7875a2fe4cec5433f64651a7f50cce58a41e (patch) | |
| tree | b440d482e12bc7efb55a9a813a7c4f6b67e3a117 /packages/server/src/core/geminiRequest.ts | |
| parent | 4002e980d9e02e973e19226dbc25aeec00a65cf5 (diff) | |
Support Images and PDFs (#447)
Diffstat (limited to 'packages/server/src/core/geminiRequest.ts')
| -rw-r--r-- | packages/server/src/core/geminiRequest.ts | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/packages/server/src/core/geminiRequest.ts b/packages/server/src/core/geminiRequest.ts new file mode 100644 index 00000000..e85bd51e --- /dev/null +++ b/packages/server/src/core/geminiRequest.ts @@ -0,0 +1,71 @@ +/** + * @license + * Copyright 2025 Google LLC + * SPDX-License-Identifier: Apache-2.0 + */ + +import { type PartListUnion, type Part } from '@google/genai'; + +/** + * Represents a request to be sent to the Gemini API. + * For now, it's an alias to PartListUnion as the primary content. + * This can be expanded later to include other request parameters. + */ +export type GeminiCodeRequest = PartListUnion; + +export function partListUnionToString(value: PartListUnion): string { + if (typeof value === 'string') { + return value; + } + + if (Array.isArray(value)) { + return value.map(partListUnionToString).join(''); + } + + // Cast to Part, assuming it might contain project-specific fields + const part = value as Part & { + videoMetadata?: unknown; + thought?: string; + codeExecutionResult?: unknown; + executableCode?: unknown; + }; + + if (part.videoMetadata !== undefined) { + return `[Video Metadata]`; + } + + if (part.thought !== undefined) { + return `[Thought: ${part.thought}]`; + } + + if (part.codeExecutionResult !== undefined) { + return `[Code Execution Result]`; + } + + if (part.executableCode !== undefined) { + return `[Executable Code]`; + } + + // Standard Part fields + if (part.fileData !== undefined) { + return `[File Data]`; + } + + if (part.functionCall !== undefined) { + return `[Function Call: ${part.functionCall.name}]`; + } + + if (part.functionResponse !== undefined) { + return `[Function Response: ${part.functionResponse.name}]`; + } + + if (part.inlineData !== undefined) { + return `<${part.inlineData.mimeType}>`; + } + + if (part.text !== undefined) { + return part.text; + } + + return ''; +} |
