Шаг 3.5 Flash — самая мощная модель с открытым исходным кодом от StepFun. Построенная на разреженной архитектуре Mixture of Experts (MoE), она выборочно активирует только 11 миллиардов из своих 196 миллиардов параметров на токен. Это модель для рассуждений, невероятно эффективная по скорости даже при работе с большими контекстами.
from openai import OpenAI
client = OpenAI(
base_url="https://infergate.ru/api/v1",
api_key="sk-•••",
)
resp = client.chat.completions.create(
model="stepfun/step-3.5-flash",
messages=[{"role": "user", "content": "Привет!"}],
)
print(resp.choices[0].message.content)modelstringобязательныйmessagesarrayобязательныйtemperaturenumbermax_tokensintegertop_pnumbertop_kintegerfrequency_penaltynumbertoolsarraytool_choicestring | objectreasoningobjectinclude_reasoningboolean