server: Enable mtmd in llama-server /completion
endpoint
#14016
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
ref: #13872
Currently passing media(image/audio) to mtmd is only supported under
chat/completion
in llama-server.It is still necessary for allowing mtmd in
/completion
endpoint, since/completion
can have more freedom modification in prompt template(e.g. prefix), or even no template for long article completion.This PR added an extra field
medias
(list[object]) under/completion
, and each media should contains 2 fields:type
: audio/image(image_url as alias), other unknown types will be ignoreddata
: url/base64 of the image/audio.Then, make sure you have the same number of
<__media__>
tag in yourprompt
to label the position.Here is an example: