Trendyol LLM-8B-T1
Trendyol LLM-8B-T1 is an 8-billion-parameter chat model built on top of Qwen 3-8B using large-scale Turkish e-commerce datasets curated by Trendyol. The primary goal of the model is to provide advanced reasoning capabilities in Turkish.
Alongside this specialization in Turkish, the base model's strong English capabilities have also been preserved, making it an effective tool in both languages.
π Highlights
- Turkish reasoning β Robust chain-of-thought in Turkish across various domains.
- English reasoning - Reasoning capability in English is preserved with English chain-of-thought examples.
- Dual operation modes β
/think
(explicit reasoning) or /no_think
(concise answers).
- Multitask out-of-the-box
- Instruction following
- Summarisation & paraphrasing
- Coding related tasks
- Text & review classification (sentiment, category)
- Attribute/key-value extraction for catalogue enrichment
- E-commerce tuned β domain vocabulary (fashion, electronics etc.).
- Context length up to 32 k tokens natively.
- Apache-2.0 licence β free for commercial and research use.
π Quick-start
import transformers
import torch
model_id = "Trendyol/Trendyol-LLM-8B-T1"
pipeline = transformers.pipeline(
"text-generation",
model=model_id,
model_kwargs={
"torch_dtype": torch.bfloat16,
"attn_implementation": "flash_attention_2",
"device_map": "auto"
}
)
messages = [
{"role": "system", "content": "Sen yardΔ±msever bir asistansΔ±n."},
{"role": "user", "content": "Mona Lisa tablosu hakkΔ±nda kΔ±sa bir ΓΆzet yazar mΔ±sΔ±n?"}
]
outputs = pipeline(messages,
return_full_text=False,
max_new_tokens=2048
)
assistant_response = outputs[0]["generated_text"].strip()
print(assistant_response)
π οΈ Using /think
& /no_think
/think
β model emits a <think> β¦ </think>
block with its internal reasoning before the final answer. This is default behaviour.
/no_think
β append this directive in the last user turn, if you want to turn off thinking mode.
Limitations, Risks, Bias, and Ethical Considerations
Limitations and Known Biases
- Primary Function and Application: Trendyol LLM, an autoregressive language model, is primarily designed to predict the next token in a text string. While often used for various applications, it is important to note that it has not undergone extensive real-world application testing. Its effectiveness and reliability across diverse scenarios remain largely unverified.
- Language Comprehension and Generation: The model is primarily trained in standard English and Turkish. Its performance in understanding and generating slang, informal language, or other languages may be limited, leading to potential errors or misinterpretations.
- Generation of False Information: Users should be aware that Trendyol LLM may produce inaccurate or misleading information. Outputs should be considered as starting points or suggestions rather than definitive answers.
Risks and Ethical Considerations
- Potential for Harmful Use: There is a risk that Trendyol LLM could be used to generate offensive or harmful language. We strongly discourage its use for any such purposes and emphasize the need for application-specific safety and fairness evaluations before deployment.
- Unintended Content and Bias: The model was trained on a large corpus of text data, which was not explicitly checked for offensive content or existing biases. Consequently, it may inadvertently produce content that reflects these biases or inaccuracies.
- Toxicity: Despite efforts to select appropriate training data, the model is capable of generating harmful content, especially when prompted explicitly. We encourage the open-source community to engage in developing strategies to minimize such risks.
Recommendations for Safe and Ethical Usage
- Human Oversight: We recommend incorporating a human curation layer or using filters to manage and improve the quality of outputs, especially in public-facing applications. This approach can help mitigate the risk of generating objectionable content unexpectedly.
- Application-Specific Testing: Developers intending to use Trendyol LLM should conduct thorough safety testing and optimization tailored to their specific applications. This is crucial, as the modelβs responses can be unpredictable and may occasionally be biased, inaccurate, or offensive.
- Responsible Development and Deployment: It is the responsibility of developers and users of Trendyol LLM to ensure its ethical and safe application. We urge users to be mindful of the model's limitations and to employ appropriate safeguards to prevent misuse or harmful consequences.
π Licence
Apache-2.0 β identical to the base Qwen 3-8B.
π Citation
@misc{trendyolLLM8BT1,
title = {Trendyol LLM 8B T1},
author = {Trendyol LLM & Core NLP Team},
year = {2025},
url = {https://huggingface.co/Trendyol/Trendyol-LLM-8B-T1}
}