ling-3.0-tiny-free
InclusionAI logo

Ling 3.0 Tiny (free)

ling-3.0-tiny-free
InclusionAI
Ling 3.0 Tiny is a mixture-of-experts model from InclusionAI, featuring 1.3B active parameters out of a total of 7.9B. It is designed for responsive agents, instruction following, and multi-turn conversations, supporting an extensive context length of 262,144 tokens. This makes it an efficient and powerful choice for conversational AI applications.

Pricing Details

  • Input Tokens: $0.000 /M tokens
  • Output Tokens: $0.000 /M tokens
  • Cache Tokens: $0.000 /M tokens

Input Modalities

  • Text

Output Modalities

  • Text

Features

  • Long context

Quick Start

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="ling-3.0-tiny-free",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

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

FAQ

What is ling-3.0-tiny-free?

Ling 3.0 Tiny is a mixture-of-experts model from InclusionAI, featuring 1.3B active parameters out of a total of 7.9B. It is designed for responsive agents, instruction following, and multi-turn conversations, supporting an extensive context length of 262,144 tokens. This makes it an efficient and powerful choice for conversational AI applications.