{"id":22603,"date":"2026-07-23T04:27:03","date_gmt":"2026-07-23T04:27:03","guid":{"rendered":"https:\/\/scannn.com\/poolside-laguna-s-2-1-%c2%b7-hugging-face\/"},"modified":"2026-07-23T04:27:03","modified_gmt":"2026-07-23T04:27:03","slug":"poolside-laguna-s-2-1-%c2%b7-hugging-face","status":"publish","type":"post","link":"https:\/\/scannn.com\/lv\/poolside-laguna-s-2-1-%c2%b7-hugging-face\/","title":{"rendered":"poolside\/Laguna-S-2.1 \u00b7 Hugging Face"},"content":{"rendered":"\n<div data-target=\"InferenceWidget\" data-props=\"{&quot;widgetData&quot;:{&quot;model&quot;:{&quot;author&quot;:&quot;poolside&quot;,&quot;cardData&quot;:{&quot;library_name&quot;:&quot;transformers&quot;,&quot;inference&quot;:false,&quot;extra_gated_description&quot;:&quot;To learn more about how we process your personal data, please read our &lt;a href=\\&quot;https:\/\/poolside.ai\/legal\/privacy\\&quot;&gt;Privacy Policy&lt;\/a&gt;.&quot;,&quot;tags&quot;:[&quot;laguna-s-2.1&quot;,&quot;vllm&quot;],&quot;license&quot;:&quot;openmdw-1.1&quot;,&quot;pipeline_tag&quot;:&quot;text-generation&quot;},&quot;cardExists&quot;:true,&quot;config&quot;:{&quot;architectures&quot;:[&quot;LagunaForCausalLM&quot;],&quot;auto_map&quot;:{&quot;AutoConfig&quot;:&quot;configuration_laguna.LagunaConfig&quot;,&quot;AutoModelForCausalLM&quot;:&quot;modeling_laguna.LagunaForCausalLM&quot;},&quot;model_type&quot;:&quot;laguna&quot;,&quot;num_experts&quot;:256,&quot;num_experts_per_tok&quot;:10,&quot;tokenizer_config&quot;:{&quot;bos_token&quot;:&quot;\u3008|EOS|\u3009&quot;,&quot;cls_token&quot;:&quot;\u3008|CLS|\u3009&quot;,&quot;eos_token&quot;:&quot;\u3008|EOS|\u3009&quot;,&quot;mask_token&quot;:&quot;\u3008|MASK|\u3009&quot;,&quot;pad_token&quot;:&quot;\u3008|PAD|\u3009&quot;,&quot;sep_token&quot;:&quot;\u3008|SEP|\u3009&quot;,&quot;unk_token&quot;:&quot;\u3008|UNK|\u3009&quot;,&quot;chat_template&quot;:&quot;{% include 'chat_template.jinja' %}&quot;},&quot;chat_template_jinja&quot;:&quot;{#- Iteration on laguna_glm_thinking_v8\/chat_template.jinja -#}\\n{#- No formatting instructions -#}\\n{{- \\&quot;\u3008|EOS|\u3009\\&quot; -}}\\n{%- set enable_thinking = enable_thinking | default(true) -%}\\n{%- set add_generation_prompt = add_generation_prompt | default(false) -%}\\n{%- set preserve_thinking = preserve_thinking | default(false) -%}\\n\\n{#- \u2500\u2500\u2500\u2500\u2500 header (system message) \u2500\u2500\u2500\u2500\u2500 -#}\\n{#- A caller-supplied system message with empty content opts out of the default below, producing no &lt;system&gt; block \u2014 used to train without a system message. -#}\\n{%- set system_message = \\&quot;You are a helpful, conversationally-fluent assistant made by Poolside. You are here to be helpful to users through natural language conversations.\\&quot; -%}\\n{%- if messages and messages[0].role == \\&quot;system\\&quot; -%}\\n  {%- set system_message = messages[0].content -%}\\n  {%- set messages = messages[1:] -%}\\n{%- endif -%}\\n\\n{%- set has_sys = system_message and system_message.strip() -%}\\n{%- if has_sys or tools or enable_thinking -%}\\n  {{- \\&quot;&lt;system&gt;\\&quot; -}}\\n\\n  {%- if has_sys -%}\\n    {{- system_message.rstrip() -}}\\n    {%- if tools -%}{{- \\&quot;\\\\n\\\\n\\&quot; -}}{%- endif -%}\\n  {%- endif -%}\\n\\n  {%- if tools -%}\\n    {{- \\&quot;### Tools\\\\n\\\\n\\&quot; -}}\\n    {{- \\&quot;You may call functions to assist with the user query.\\\\n\\&quot; -}}\\n    {{- \\&quot;All available function signatures are listed below:\\\\n\\&quot; -}}\\n    {{- \\&quot;&lt;available_tools&gt;\\\\n\\&quot; -}}\\n    {%- for tool in tools -%}\\n      {{- (tool | tojson) ~ \\&quot;\\\\n\\&quot; -}}\\n    {%- endfor -%}\\n    {{- \\&quot;&lt;\/available_tools&gt;\\&quot; -}}\\n  {%- endif -%}\\n\\n  {{- \\&quot;&lt;\/system&gt;\\\\n\\&quot; -}}\\n{%- endif -%}\\n\\n{#- \u2500\u2500\u2500\u2500\u2500 main loop \u2500\u2500\u2500\u2500\u2500 -#}\\n{%- for message in messages -%}\\n  {%- set content = message.content if message.content is string else \\&quot;\\&quot; -%}\\n  {%- if message.role == \\&quot;user\\&quot; -%}\\n    {{- \\&quot;&lt;user&gt;\\&quot; + content + \\&quot;&lt;\/user&gt;\\\\n\\&quot; -}}\\n  {%- elif message.role == \\&quot;assistant\\&quot; -%}\\n    {%- generation -%}\\n      {{- \\&quot;&lt;assistant&gt;\\&quot; -}}\\n      {#- Extract reasoning content from message.reasoning (vLLM field name) or message.reasoning_content -#}\\n      {%- set reasoning_content=\" if=\"\" message.reasoning=\"\" is=\"\" string=\"\" set=\"\" reasoning_content=\"message.reasoning\" elif=\"\" message.reasoning_content=\"\" endif=\"\" display=\"\" reasoning=\"\" content=\"\" for=\"\" all=\"\" messages=\"\" enable_thinking=\"\" or=\"\" preserve_thinking=\"\">&#8216; + reasoning_content + &#8221; -}}\\n      {%- else -%}\\n        {{- &#8221; -}}\\n      {%- endif -%}\\n      {#- Display main content (trailing newline only when no tool_calls follow) -#}\\n      {%- if content -%}\\n        {{- content -}}\\n      {%- endif -%}\\n      {%- if message.tool_calls -%}\\n        {%- for tool_call in message.tool_calls -%}\\n          {%- set function_data = tool_call.function -%}\\n          {{- &#8221; + function_data.name -}}\\n          {%- set _args = function_data.arguments -%}\\n          {%- for k, v in _args.items() -%}\\n            {{- \\&#8221;\\&#8221; ~ k ~ \\&#8221;\\&#8221; -}}\\n            {{- \\&#8221;\\&#8221; -}}{{- v | tojson(ensure_ascii=False) if v is not string else v -}}{{- \\&#8221;\\&#8221; -}}\\n          {%- endfor -%}\\n          {{- \\&#8221;\\&#8221; -}}\\n        {%- endfor -%}\\n      {%- endif -%}\\n      {{- \\&#8221;\\\\n\\&#8221; -}}\\n    {%- endgeneration -%}\\n  {%- elif message.role == \\&#8221;tool\\&#8221; -%}\\n    {{- \\&#8221;\\&#8221; + content + \\&#8221;\\\\n\\&#8221; -}}\\n  {%- elif message.role == \\&#8221;system\\&#8221; -%}\\n    {#- Render additional system messages (the first one, if any, is handled separately in the header and was sliced off above) -#}\\n    {{- \\&#8221;\\&#8221; + content + \\&#8221;\\\\n\\&#8221; -}}\\n  {%- endif -%}\\n{%- endfor -%}\\n{#- \u2500\u2500\u2500\u2500\u2500 generation prompt \u2500\u2500\u2500\u2500\u2500 -#}\\n{%- if add_generation_prompt -%}\\n  {{- \\&#8221;\\&#8221; -}}\\n  {#- \u2500\u2500\u2500\u2500\u2500 Include reasoning mode directive \u2500\u2500\u2500\u2500\u2500 -#}\\n  {%- if enable_thinking -%}\\n    {{- &#8221; -}}\\n  {%- else -%}\\n    {{- &#8221; -}}\\n  {%- endif -%}\\n{%- endif -%}&#8221;},&#8221;createdAt&#8221;:&#8221;2026-07-13T13:58:35.000Z&#8221;,&#8221;discussionsDisabled&#8221;:false,&#8221;discussionsSorting&#8221;:&#8221;recently-created&#8221;,&#8221;downloads&#8221;:3056,&#8221;downloadsAllTime&#8221;:3056,&#8221;id&#8221;:&#8221;poolside\/Laguna-S-2.1&#8243;,&#8221;isLikedByUser&#8221;:false,&#8221;availableInferenceProviders&#8221;:[],&#8221;showHuggingChatEntry&#8221;:false,&#8221;inference&#8221;:&#8221;&#8221;,&#8221;lastModified&#8221;:&#8221;2026-07-22T17:56:57.000Z&#8221;,&#8221;likes&#8221;:411,&#8221;pipeline_tag&#8221;:&#8221;text-generation&#8221;,&#8221;library_name&#8221;:&#8221;transformers&#8221;,&#8221;librariesOther&#8221;:[],&#8221;trackDownloads&#8221;:true,&#8221;model-index&#8221;:null,&#8221;evalResults&#8221;:[{&#8220;dataset&#8221;:{&#8220;id&#8221;:&#8221;datacurve\/deep-swe&#8221;,&#8221;isBenchmark&#8221;:true,&#8221;task_id&#8221;:&#8221;deep_swe&#8221;},&#8221;value&#8221;:40.4,&#8221;source&#8221;:{&#8220;url&#8221;:&#8221;https:\/\/huggingface.co\/poolside\/Laguna-S-2.1&#8243;,&#8221;name&#8221;:&#8221;Model Card&#8221;,&#8221;isExternal&#8221;:false},&#8221;filename&#8221;:&#8221;.eval_results\/deepswe.yaml&#8221;,&#8221;verified&#8221;:false,&#8221;rank&#8221;:2,&#8221;sizeRank&#8221;:{&#8220;rank&#8221;:1,&#8221;value&#8221;:500000000000,&#8221;id&#8221;:&#8221;500B&#8221;,&#8221;label&#8221;:&#8221;&lt; 500B&#8221;},&#8221;label&#8221;:&#8221;Deep Swe&#8221;},{&#8220;dataset&#8221;:{&#8220;id&#8221;:&#8221;ScaleAI\/SWE-bench_Pro&#8221;,&#8221;isBenchmark&#8221;:true,&#8221;task_id&#8221;:&#8221;SWE_Bench_Pro&#8221;},&#8221;value&#8221;:59.4,&#8221;source&#8221;:{&#8220;url&#8221;:&#8221;https:\/\/huggingface.co\/poolside\/Laguna-S-2.1&#8243;,&#8221;name&#8221;:&#8221;Model Card&#8221;,&#8221;isExternal&#8221;:false},&#8221;filename&#8221;:&#8221;.eval_results\/swe-bench_pro.yaml&#8221;,&#8221;verified&#8221;:false,&#8221;rank&#8221;:3,&#8221;sizeRank&#8221;:{&#8220;rank&#8221;:1,&#8221;value&#8221;:128000000000,&#8221;id&#8221;:&#8221;128B&#8221;,&#8221;label&#8221;:&#8221;&lt; 128B&#8221;},&#8221;label&#8221;:&#8221;SWE Bench Pro&#8221;},{&#8220;dataset&#8221;:{&#8220;id&#8221;:&#8221;SWE-bench\/SWE-bench_Multilingual&#8221;,&#8221;isBenchmark&#8221;:false,&#8221;task_id&#8221;:&#8221;swe_bench_%_resolved&#8221;},&#8221;value&#8221;:78.5,&#8221;source&#8221;:{&#8220;url&#8221;:&#8221;https:\/\/huggingface.co\/poolside\/Laguna-S-2.1&#8243;,&#8221;name&#8221;:&#8221;Model Card&#8221;,&#8221;isExternal&#8221;:false},&#8221;filename&#8221;:&#8221;.eval_results\/swe-bench_multilingual.yaml&#8221;,&#8221;verified&#8221;:false,&#8221;rank&#8221;:1,&#8221;sizeRank&#8221;:{&#8220;rank&#8221;:1,&#8221;value&#8221;:500000000000,&#8221;id&#8221;:&#8221;500B&#8221;,&#8221;label&#8221;:&#8221;&lt; 500B&#8221;},&#8221;label&#8221;:&#8221;Swe Bench Resolved&#8221;}],&#8221;private&#8221;:false,&#8221;repoType&#8221;:&#8221;model&#8221;,&#8221;gated&#8221;:false,&#8221;tags&#8221;:[&#8220;transformers&#8221;,&#8221;safetensors&#8221;,&#8221;laguna&#8221;,&#8221;text-generation&#8221;,&#8221;laguna-s-2.1&#8243;,&#8221;vllm&#8221;,&#8221;conversational&#8221;,&#8221;custom_code&#8221;,&#8221;license:openmdw-1.1&#8243;,&#8221;eval-results&#8221;,&#8221;region:us&#8221;],&#8221;tag_objs&#8221;:[{&#8220;id&#8221;:&#8221;text-generation&#8221;,&#8221;label&#8221;:&#8221;Text Generation&#8221;,&#8221;type&#8221;:&#8221;pipeline_tag&#8221;,&#8221;subType&#8221;:&#8221;nlp&#8221;},{&#8220;id&#8221;:&#8221;transformers&#8221;,&#8221;label&#8221;:&#8221;Transformers&#8221;,&#8221;type&#8221;:&#8221;library&#8221;},{&#8220;id&#8221;:&#8221;safetensors&#8221;,&#8221;label&#8221;:&#8221;Safetensors&#8221;,&#8221;type&#8221;:&#8221;library&#8221;},{&#8220;id&#8221;:&#8221;laguna&#8221;,&#8221;label&#8221;:&#8221;laguna&#8221;,&#8221;type&#8221;:&#8221;other&#8221;,&#8221;clickable&#8221;:true},{&#8220;id&#8221;:&#8221;laguna-s-2.1&#8243;,&#8221;label&#8221;:&#8221;laguna-s-2.1&#8243;,&#8221;type&#8221;:&#8221;other&#8221;,&#8221;clickable&#8221;:true},{&#8220;id&#8221;:&#8221;vllm&#8221;,&#8221;label&#8221;:&#8221;vllm&#8221;,&#8221;type&#8221;:&#8221;other&#8221;,&#8221;clickable&#8221;:true},{&#8220;id&#8221;:&#8221;conversational&#8221;,&#8221;label&#8221;:&#8221;conversational&#8221;,&#8221;type&#8221;:&#8221;other&#8221;,&#8221;clickable&#8221;:true},{&#8220;id&#8221;:&#8221;custom_code&#8221;,&#8221;label&#8221;:&#8221;custom_code&#8221;,&#8221;type&#8221;:&#8221;other&#8221;,&#8221;clickable&#8221;:true},{&#8220;id&#8221;:&#8221;eval-results&#8221;,&#8221;label&#8221;:&#8221;Eval Results&#8221;,&#8221;type&#8221;:&#8221;other&#8221;,&#8221;clickable&#8221;:true},{&#8220;id&#8221;:&#8221;license:openmdw-1.1&#8243;,&#8221;label&#8221;:&#8221;openmdw-1.1&#8243;,&#8221;type&#8221;:&#8221;license&#8221;},{&#8220;type&#8221;:&#8221;region&#8221;,&#8221;label&#8221;:&#8221; Region: US&#8221;,&#8221;id&#8221;:&#8221;region:us&#8221;}],&#8221;transformersInfo&#8221;:{&#8220;auto_model&#8221;:&#8221;AutoModelForCausalLM&#8221;,&#8221;pipeline_tag&#8221;:&#8221;text-generation&#8221;,&#8221;processor&#8221;:&#8221;AutoTokenizer&#8221;},&#8221;widgetData&#8221;:[{&#8220;text&#8221;:&#8221;Hi, what can you help me with?&#8221;},{&#8220;text&#8221;:&#8221;What is 84 * 3 \/ 2?&#8221;},{&#8220;text&#8221;:&#8221;Tell me an interesting fact about the universe!&#8221;},{&#8220;text&#8221;:&#8221;Explain quantum computing in simple terms.&#8221;}],&#8221;safetensors&#8221;:{&#8220;parameters&#8221;:{&#8220;BF16&#8243;:117561977600},&#8221;total&#8221;:117561977600,&#8221;sharded&#8221;:true,&#8221;totalFileSize&#8221;:235131890612},&#8221;hasBlockedOids&#8221;:false,&#8221;region&#8221;:&#8221;us&#8221;,&#8221;isQuantized&#8221;:false,&#8221;licenseFilePath&#8221;:&#8221;LICENSE.md&#8221;},&#8221;queryParams&#8221;:{&#8220;utm_source&#8221;:&#8221;tldrai&#8221;},&#8221;inferenceContextData&#8221;:{&#8220;billableEntities&#8221;:[],&#8221;entityName2Providers&#8221;:{}},&#8221;linkToInferenceDiscussion&#8221;:{&#8220;url&#8221;:&#8221;\/spaces\/huggingface\/InferenceSupport\/discussions\/11185&#8243;,&#8221;numReactions&#8221;:11},&#8221;isLoggedIn&#8221;:false,&#8221;canWrite&#8221;:false,&#8221;examples&#8221;:[],&#8221;widgetType&#8221;:&#8221;conversational&#8221;,&#8221;isMaximized&#8221;:false,&#8221;isMac&#8221;:true}}&#8221;&gt;<!--[0--> <!--[-1--><!--]--> <dialog class=\"shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32 w-full lg:w-10\/12 xl:w-8\/12 2xl:w-7\/12 max-w-[calc(100%-4rem)] lg:max-w-4xl  \"\/><!----><!--]--><!----><\/div>\n<p><a href=\"https:\/\/huggingface.co\/poolside\/Laguna-S-2.1?utm_source=tldrai\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8216; + reasoning_content + &#8221; -}}\\n {%- else -%}\\n {{- &#8221; -}}\\n {%- endif -%}\\n {#- Display main content (trailing newline only when no tool_calls follow) -#}\\n {%- if content -%}\\n {{- content -}}\\n {%- endif -%}\\n {%- if message.tool_calls -%}\\n {%- for tool_call in message.tool_calls -%}\\n {%- set function_data = tool_call.function -%}\\n {{- &#8221; [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":22604,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[143],"tags":[],"class_list":["post-22603","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai"],"_links":{"self":[{"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/posts\/22603","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/comments?post=22603"}],"version-history":[{"count":0,"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/posts\/22603\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/media\/22604"}],"wp:attachment":[{"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/media?parent=22603"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/categories?post=22603"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/scannn.com\/lv\/wp-json\/wp\/v2\/tags?post=22603"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}