DFveloper
AAIKR-3.5-Pro
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
DFveloper
Model Tree
Input Modalities
Output Modalities
Supported Functionality
GLM-5.2 is live. #1 throughput on OpenRouter, pay-per-token on FriendliAI. Try it today ➜
DFveloper
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
DFveloper
Model Tree
Input Modalities
Output Modalities
Supported Functionality
work in progress
AAIKR 3.5 Pro is a decoder-only Transformer model with a large-scale 26B parameter layer. Through LOOP's proprietary algorithm, Korean token processing efficiency has been improved by more than 40%, maintaining reasoning consistency even over long contexts (context windows).
AAIKR 3.5 Pro was completed through the following three stages:
python
from transformers import AutoModelForCausalLM, AutoTokenizermodel_id = "DFveloper/AAIKR-3.5-Pro"tokenizer = AutoTokenizer.from_pretrained(model_id)model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", torch_dtype="auto")prompt = """There is a problem. If a product with a 37% discount rate is priced at 15,000 won, what was the original price? Explain step by step, logically."""inputs = tokenizer(prompt, return_tensors="pt").to("cuda")outputs = model.generate(**inputs, max_new_tokens=512, temperature=0.7)print(tokenizer.decode(outputs[0], skip_special_tokens=True))
AAIKR 3.5 Pro can make mistakes. Please cross-check important information.
Copyright © 2026 DFveloper. Licensed under the Apache License, Version 2.0.