Qwen2-VL-7B-Instruct
Qwen logo

Qwen2 VL 7B Instruct

Qwen2-VL-7B-Instruct
Qwen
The model provider is the Sophnet platform. Qwen2-VL-7B-Instruct is the latest vision-language model launched by Alibaba Cloud and the newest member of the Qwen family. This model is proficient not only in recognizing common objects but also in analyzing text, charts, icons, and layouts within images. As a visual agent, it can reason and dynamically guide tool usage, supporting operations on computers and mobile phones. Additionally, it can understand long videos exceeding one hour and capture key events, accurately locate objects in images, and generate structured outputs for data such as invoices and tables, making it suitable for various scenarios including finance and business. - Vision understanding capability: not only recognizes common objects but also analyzes text, charts, icons, and layouts within images. - Agent capability: functions as a visual agent capable of reasoning and dynamically guiding tool usage, supporting operations on computers and mobile phones. - Long video understanding: can comprehend video content over one hour in length and accurately localize relevant video segments. - Visual localization: precisely locates objects within images by generating bounding boxes or points, providing stable JSON coordinate outputs. - Structured output: supports structured data output for invoices, tables, and other data, suitable for finance, business, and various other scenarios.

Pricing

  • Input Tokens: $0.280 /M tokens
  • Output Tokens: $0.700 /M tokens

Input Modalities

  • Text
  • Vision
  • Video

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="Qwen2-VL-7B-Instruct",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is Qwen2-VL-7B-Instruct?

The model provider is the Sophnet platform. Qwen2-VL-7B-Instruct is the latest vision-language model launched by Alibaba Cloud and the newest member of the Qwen family. This model is proficient not only in recognizing common objects but also in analyzing text, charts, icons, and layouts within images. As a visual agent, it can reason and dynamically guide tool usage, supporting operations on computers and mobile phones. Additionally, it can understand long videos exceeding one hour and capture key events, accurately locate objects in images, and generate structured outputs for data such as invoices and tables, making it suitable for various scenarios including finance and business. - Vision understanding capability: not only recognizes common objects but also analyzes text, charts, icons, and layouts within images. - Agent capability: functions as a visual agent capable of reasoning and dynamically guiding tool usage, supporting operations on computers and mobile phones. - Long video understanding: can comprehend video content over one hour in length and accurately localize relevant video segments. - Visual localization: precisely locates objects within images by generating bounding boxes or points, providing stable JSON coordinate outputs. - Structured output: supports structured data output for invoices, tables, and other data, suitable for finance, business, and various other scenarios.