← All models
Laguna S 2.1
poolside/laguna-s-2.1textReasoning
Poolside's agentic coding model: 118B params (8B active), 70.2% on Terminal-Bench 2.1. 1M context, up to 131k output. One of the cheapest models in the catalog.
Pricing
Request / 1M
Response / 1M
Parameters
messagesrequiredtemperature0–2max_tokensoptionalstreamtrue · falseHow to use via API
from openai import OpenAIclient = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")resp = client.chat.completions.create(model="poolside/laguna-s-2.1",messages=[{"role": "user", "content": "Привет"}],temperature=0.7,max_tokens=1024,stream=False,)print(resp.choices[0].message.content)# Стриминг: stream=True — ответ приходит чанкамиfor chunk in client.chat.completions.create(model="poolside/laguna-s-2.1",messages=[{"role": "user", "content": "Привет"}],stream=True,):print(chunk.choices[0].delta.content or "", end="", flush=True)

