|
|
--- |
|
|
license: apache-2.0 |
|
|
--- |
|
|
import os |
|
|
from openai import OpenAI |
|
|
|
|
|
client = OpenAI( |
|
|
base_url="https://router.huggingface.co/v1", |
|
|
api_key=os.environ["HF_TOKEN"], |
|
|
) |
|
|
|
|
|
completion = client.chat.completions.create( |
|
|
model="zai-org/GLM-4.6V-Flash:zai-org", |
|
|
messages=[ |
|
|
{ |
|
|
"role": "user", |
|
|
"content": [ |
|
|
{ |
|
|
"type": "text", |
|
|
"text": "Describe this image in one sentence." |
|
|
}, |
|
|
{ |
|
|
"type": "image_url", |
|
|
"image_url": { |
|
|
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" |
|
|
} |
|
|
} |
|
|
] |
|
|
} |
|
|
], |
|
|
) |
|
|
|
|
|
print(completion.choices[0].message) |