-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Description
yesterday openrouter introduce a breaking change on API, now chat completion require exact correct output modalities.
Llumen previously(9edf95a) send every request with text and image modalities(unless override in config)
{
"model": "openai/gpt-oss-120b",
"messages": [
{
"role": "user",
"content": "hi"
}
],
"stream": true,
"modalities": [
"text",
"image"
]
}It used to be work, but after the API change, it return error:
{
"error": {
"message": "No endpoints found that support the requested output modalities: text, image",
"code": 404
}
}It's fixed(da371d3) at nightly
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels