forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Frontend] Use a proper chat template for VLM2Vec (vllm-project#9912)
Signed-off-by: Loc Huynh <[email protected]>
- Loading branch information
1 parent
58e5ad3
commit 60464e8
Showing
6 changed files
with
78 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import requests | ||
|
||
image_url = "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg" | ||
|
||
response = requests.post( | ||
"http://localhost:8000/v1/embeddings", | ||
json={ | ||
"model": | ||
"TIGER-Lab/VLM2Vec-Full", | ||
"messages": [{ | ||
"role": | ||
"user", | ||
"content": [ | ||
{ | ||
"type": "image_url", | ||
"image_url": { | ||
"url": image_url | ||
} | ||
}, | ||
{ | ||
"type": "text", | ||
"text": "Represent the given image." | ||
}, | ||
], | ||
}], | ||
"encoding_format": | ||
"float", | ||
}, | ||
) | ||
response.raise_for_status() | ||
response_json = response.json() | ||
|
||
print("Embedding output:", response_json["data"][0]["embedding"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{%- if messages | length > 1 -%} | ||
{{ raise_exception('Embedding models should only embed one message at a time') }} | ||
{%- endif -%} | ||
|
||
{% set vars = namespace(parts=[], next_image_id=1) %} | ||
{%- for message in messages -%} | ||
{%- for content in message['content'] -%} | ||
{%- if content['type'] == 'text' -%} | ||
{%- set vars.parts = vars.parts + [content['text']] %} | ||
{%- elif content['type'] == 'image' -%} | ||
{%- set vars.parts = vars.parts + ['<|image_{i:d}|>'.format(i=vars.next_image_id)] %} | ||
{%- set vars.next_image_id = vars.next_image_id + 1 %} | ||
{%- endif -%} | ||
{%- endfor -%} | ||
{%- endfor -%} | ||
{{ vars.parts | join(' ') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters