mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
25 lines
589 B
JSON
25 lines
589 B
JSON
[
|
|
{
|
|
"name": "openai-to-gemini/basic-chat",
|
|
"sourceFormat": "openai",
|
|
"targetFormat": "gemini",
|
|
"input": {
|
|
"model": "gemini-2.5-flash",
|
|
"messages": [{ "role": "user", "content": "Hello Gemini!" }]
|
|
}
|
|
},
|
|
{
|
|
"name": "openai-to-gemini/with-system",
|
|
"sourceFormat": "openai",
|
|
"targetFormat": "gemini",
|
|
"input": {
|
|
"model": "gemini-2.5-pro",
|
|
"messages": [
|
|
{ "role": "system", "content": "You are a helpful assistant." },
|
|
{ "role": "user", "content": "Tell me a joke." }
|
|
],
|
|
"temperature": 0.7
|
|
}
|
|
}
|
|
]
|