InternVL3
InternVL3 is an advanced multimodal large language model with capabilities to encompass tool usage, GUI agents, industrial image analysis, 3D vision perception, and more.
InternVL3 is an advanced multimodal large language model (MLLM) with capabilities to encompass tool usage, GUI agents, industrial image analysis, 3D vision perception, and more.
Model details
| Category | Details |
|---|---|
| Model Name | InternVL3 |
| Version | Instruct 1B |
| Model Category | VLM |
| Size | 1B parameters |
| HuggingFace Model | opengvlab-internvl3-1b-instruct |
| OpenAI Compatible Endpoint | Chat API Overview |
| License | Apache 2.0 |
Capabilities
| Feature | Details |
|---|---|
| Tool Calling | ❌ |
| Context Length | 16k tokens |
| Supports LoRA | ❌ |
| Input data | Text + Image |
Usage
Basic Chat Completion
This is a basic chat completion example using this model:
| Property | Type | Description |
|---|---|---|
stream | boolean | Indicates whether to stream the response. |
messages[] | array | Array of message objects. |
messages[].role | string | The role of the message sender. |
messages[].content | string | The content of the message. |
Multimodal (text + image) example
This is a multimodal example using this model:
| Property | Type | Description |
|---|---|---|
messages[] | array | Array containing the messages sent. |
messages[].role | string | The role of the message sender. |
messages[].content | string | The content of the message. |
messages[].content[].type | string | The type of the content item. |
messages[].content[].text | string | Content of the message (only if type is "text"). |
messages[].content[].image_url | string | Content of the message (only if type is "image_url"). |
messages[].content[].image_url.url | string | The actual URL of the image. |