wiwiway / scripts /scratch /test_gemini.mjs
Claude Code
Sync gateway codebase without binaries
116b4cb
Raw
History Blame Contribute Delete
369 Bytes
import { convertOpenAIContentToParts } from "./open-sse/translator/helpers/geminiHelper.ts";
const cherryMsg = [
{ type: "text", text: "What runs on this?" },
{ type: "file", file: { data: "ABCDEFG", type: "application/pdf" } },
{ type: "file", file_url: { url: "data:application/pdf;base64,ABCDEFG" } },
];
console.log(convertOpenAIContentToParts(cherryMsg));