Qwen3.5-0.8B-JP

1
license:apache-2.0
by
Holy-fox
Language Model
OTHER
0.8B params
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
2GB+ RAM
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Device Compatibility

Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
1GB+ RAM

Code Examples

クイックスタートbash
pip install "transformers[serving] @ git+https://github.com/huggingface/transformers.git@main"
クイックスタートbash
transformers serve --force-model Holy-fox/Qwen3.5-0.8B-JP --port 8000
2. 推論サーバーの起動bash
pip install -U openai

export OPENAI_BASE_URL="http://localhost:8000/v1"
export OPENAI_API_KEY="EMPTY"
3. クライアントのセットアップpythonopenai
from openai import OpenAI

client = OpenAI()  # 環境変数から設定を読み込み

messages = [
    {"role": "user", "content": "まどマギで一番可愛いキャラクターは誰?"},
]

response = client.chat.completions.create(
    model="Holy-fox/Qwen3.5-0.8B-JP",
    messages=messages,
    max_tokens=32768,
    temperature=1.0,
    top_p=1.0,
    presence_penalty=2.0,
    extra_body={
        "top_k": 20,
    },
)

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

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.