UI-TARS 1.5 7B
Vision
ByteDance's UI-TARS 1.5 7B. Specialized for UI understanding and automation tasks.
Pricing
Input
$0.08/1M
Output
$0.15/1M
Context Length
33K tokens
Max Completion
8K tokens
Capabilities
Chat
Vision
Technical Details
Quick Start
from openai import OpenAI
client = OpenAI(
base_url="https://api.llamagate.ai/v1",
api_key="your-api-key",
)
response = client.chat.completions.create(
model="ui-tars-7b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)