Qwen3-8B-int4-ov
526
3
8.0B
license:apache-2.0
by
OpenVINO
Other
OTHER
8B params
New
526 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
18GB+ RAM
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Device Compatibility
Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
8GB+ RAM
Code Examples
text
pip install optimum[openvino]Running Model Inference with [OpenVINO GenAI](https://github.com/openvinotoolkit/openvino.genai)text
pip install openvino-genai huggingface_hubtext
import huggingface_hub as hf_hub
model_id = "OpenVINO/qwen3-8b-int4-ov"
model_path = "qwen3-8b-int4-ov"
hf_hub.snapshot_download(model_id, local_dir=model_path)text
pip install openaitextopenai
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:8000/v3",
api_key="unused"
)
stream = client.chat.completions.create(
model="OpenVINO/Qwen3-8B-int4-ov",
messages=[{"role": "user", "content": "Hello."}],
stream=True,
extra_body={"chat_template_kwargs": {"enable_thinking": False}},
tools=[],
)
for chunk in stream:
if chunk.choices[0].delta.content is not None:
print(chunk.choices[0].delta.content, end="")Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.