Back to models

Qwen_3.8_27B_Uncensored

An uncensored Huihui Qwen3.8 27B model served with UD-Q4_K_XL quantization. Use it for text conversations, writing and coding through an OpenAI-compatible API. The upstream reports a 262,144-token context window; Playground defaults to a maximum of 32,768 output tokens.

Input / 1M tokens$0.20
Output / 1M tokens$0.60
Context length262,144
StatusAvailable
Model informationPlaygroundDocs

A familiar interface

Use an OpenAI-compatible client with your API key. Select a model ID from the live model directory.

TypeScript
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://uncensoredai.click/v1",
  apiKey: process.env.UNCENSOREDAI_API_KEY,
});

const response = await client.chat.completions.create({
  model: "Qwen_3.8_27B_Uncensored",
  messages: [{ role: "user", content: "Hello!" }],
});