Turkish-optimized 8B chat model developed by Trendyol, Turkey's largest e-commerce platform. Built on Qwen3-8B and fine-tuned on large-scale Turkish e-commerce datasets. Features advanced chain-of-thought reasoning in Turkish with dual operation modes (/think and /no_think), strong instruction following, summarization, coding, and attribute extraction for catalogue enrichment. English reasoning capabilities are preserved alongside Turkish.
33K tokens
2
available
Cheapest
Featherless
$0.00/1M tokens
Featherless, Hugging Face Inference
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: FreeOut: Free | 60 RPM / 300K TPM | global | Healthy | 0ms | |
In: FreeOut: Free | 60 RPM / 300K TPM | us-east-1eu-west-1 | Healthy | 0ms |
Use this model via Featherless with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.featherless.com/v1",
apiKey: process.env.FEATHERLESS_API_KEY,
});
const response = await client.chat.completions.create({
model: "Trendyol/Trendyol-LLM-8B-T1",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Featherless API • OpenAI-compatible SDK