Files
OmniRoute/tests/fixtures/translation/gemini-to-openai.json
Diego Rodrigues de Sa e Souza 931afe3482 Fase 8 · Bloco B — suíte de correção (property + golden + SSE-correctness) (#3808)
Integrated into release/v3.8.25 — Fase 8 Bloco B (property + golden + SSE-correctness).
2026-06-14 18:02:51 -03:00

25 lines
629 B
JSON

[
{
"name": "gemini-to-openai/basic-chat",
"sourceFormat": "gemini",
"targetFormat": "openai",
"input": {
"model": "gpt-4o",
"contents": [{ "role": "user", "parts": [{ "text": "Hello from Gemini format!" }] }]
}
},
{
"name": "gemini-to-openai/multi-turn",
"sourceFormat": "gemini",
"targetFormat": "openai",
"input": {
"model": "gpt-4o-mini",
"contents": [
{ "role": "user", "parts": [{ "text": "What is 2+2?" }] },
{ "role": "model", "parts": [{ "text": "4" }] },
{ "role": "user", "parts": [{ "text": "And 3+3?" }] }
]
}
}
]