[GH-ISSUE #10935] DeepSeek-R1 0528 models missing tool calling updates in Ollama registry #53711

Closed
opened 2026-04-29 04:35:03 -05:00 by GiteaMirror · 0 comments
Owner

Originally created by @KyleF0X on GitHub (Jun 1, 2025).
Original GitHub issue: https://github.com/ollama/ollama/issues/10935

<html> <html><head></head>

DeepSeek-R1 models missing 0528 tool calling updates in Ollama registry

Summary

DeepSeek-R1 models in Ollama's registry return "does not support tools" errors when using the tools API, despite DeepSeek-R1-0528 officially adding function calling support on May 28, 2025. Ollama's models appear to be outdated pre-0528 versions without the new tool calling templates.

Environment

  • Ollama Version: Latest
  • Model: hf.co/unsloth/DeepSeek-R1-0528-Qwen3-8B-GGUF:Q5_K_XL (and others)
  • OS: Windows 11, also reproduced on macOS

Expected Behavior

DeepSeek-R1 models should support Ollama's native tools API, allowing integration with tool-calling applications.

Actual Behavior

{
  "error": {
    "message": "registry.ollama.ai/library/deepseek-r1:70b does not support tools",
    "type": "api_error",
    "param": null,
    "code": null
  }
}

Evidence of 0528 Function Calling Addition

1. Function Calling Added in 0528 Update (May 28, 2025)

VentureBeat (3 days ago):

"Beyond performance improvements, DeepSeek-R1-0528 introduces several new features aimed at enhancing the user experience. The update adds support for JSON output and function calling, features that should make it easier for developers to integrate the model's capabilities into their applications and workflows."

Together AI:

"Upgraded DeepSeek-R1 with better reasoning, function calling, and coding"

MacStories (May 29, 2025):

"DeepSeek released an updated version of their popular R1 reasoning model (version 0528) with – according to the company – increased benchmark performance, reduced hallucinations, and native support for function calling and JSON output."

2. Timeline Issue: Ollama Models Outdated

  • DeepSeek-R1-0528 released: May 28, 2025 with function calling
  • Ollama models status: Still serving pre-0528 versions without tool calling templates
  • Community response: Faster implementation of 0528 capabilities in custom models

3. Model Capability Confirmed for 0528

Direct testing shows the model can generate perfect function calling JSON when prompted manually:

Test Prompt: "Generate a function call JSON to get current time in Los Angeles"

Model Response:

{
  "function_call": {
    "name": "get_current_time",
    "arguments": {
      "timezone": "America/Los_Angeles"
    }
  }
}

This proves the underlying model fully supports function calling - the issue is in Ollama's template configuration.

Related Issues

Existing Reports

  • Issue #8517: "Missing tool support for DeepSeek-R1 Distillates based on Qwen"
    • Same error reported
    • Community diagnosis: "Looks to me like the template you have is missing the rules for tools"

Downstream Impact

Multiple projects affected by this Ollama configuration issue:

  • browser-use Issue #486: "Doesn't work with DeepSeek R1 through Ollama"
  • langchainjs Issue #7639: "DeepSeek R1: Lack of support for tools in ChatOllama"
  • Open WebUI tool execution failures

Community Workarounds (Proof of Fix)

The community has successfully created working versions with proper tool calling templates:

1. okamototk/deepseek-r1

  • Description: "DeepSeek R1 0528 Qwen3 8B with tool calling/MCP support"
  • Downloads: 591+ (updated yesterday)
  • Status: Tool calling works

2. MFDoom/deepseek-r1-tool-calling

  • Description: "With Tool Calling support"
  • Downloads: 18.2K+ for latest version
  • Available sizes: 1.5b, 7b, 8b, 14b, 32b, 70b, 671b
  • Status: Tool calling works via custom chat template

Root Cause Analysis

Component Status Evidence
DeepSeek-R1-0528 Supports tools Official announcement + manual testing confirms capability
Ollama Registry Models Outdated Still serving pre-0528 versions without tool calling
Community Models Updated Implemented 0528 capabilities with proper templates
Downstream Projects Broken Multiple GitHub issues across different projects

Proposed Solution

Update the official DeepSeek-R1 model definitions in Ollama's registry to the 0528 versions with proper tool calling chat templates, similar to the community workarounds that successfully implemented the new functionality.

Specific models needing 0528 updates:

  • deepseek-r1:1.5b
  • deepseek-r1:7b
  • deepseek-r1:8b
  • deepseek-r1:14b
  • deepseek-r1:32b
  • deepseek-r1:70b
  • deepseek-r1:671b

Technical Details

The community workarounds show the required template structure includes tool calling rules. For example, MFDoom's template includes:

{{- if and $.Tools $last }} 
Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.
{{- end }}

Impact Assessment

  • Severity: High - New 0528 functionality unavailable in official Ollama models
  • Scope: All DeepSeek-R1 variants in official Ollama registry
  • User Impact: Developers unable to use official models for tool-calling applications despite feature availability
  • Timeline: Function calling added May 28, 2025 - Ollama models need updating
  • Workaround: Community models available but fragmented and not officially supported

Additional Context

This issue prevents DeepSeek-R1 from being used in production tool-calling scenarios despite the 0528 update officially adding this capability. The community workarounds demonstrate that the 0528 functionality works properly with correct template implementation.

Timeline Summary:

  • May 28, 2025: DeepSeek releases R1-0528 with function calling support
  • May 29, 2025: Community models (okamototk, MFDoom) implement working tool calling
  • June 1, 2025: Official Ollama models still lack 0528 tool calling capabilities

The fix would bring Ollama's DeepSeek-R1 models up to date with the latest official release and restore compatibility with the growing ecosystem of tool-calling applications.


References:

</html> </html># DeepSeek-R1 models missing 0528 tool calling updates in Ollama registry

Summary

DeepSeek-R1 models in Ollama's registry return "does not support tools" errors when using the tools API, despite DeepSeek-R1-0528 officially adding function calling support on May 28, 2025. Ollama's models appear to be outdated pre-0528 versions without the new tool calling templates.

Environment

  • Ollama Version: Latest
  • Model: hf.co/unsloth/DeepSeek-R1-0528-Qwen3-8B-GGUF:Q5_K_XL (and others)
  • OS: Windows 11, also reproduced on macOS

Expected Behavior

DeepSeek-R1 models should support Ollama's native tools API, allowing integration with tool-calling applications.

Actual Behavior

{
  "error": {
    "message": "registry.ollama.ai/library/deepseek-r1:70b does not support tools",
    "type": "api_error",
    "param": null,
    "code": null
  }
}

Evidence of 0528 Function Calling Addition

1. Function Calling Added in 0528 Update (May 28, 2025)

VentureBeat (3 days ago):

"Beyond performance improvements, DeepSeek-R1-0528 introduces several new features aimed at enhancing the user experience. The update adds support for JSON output and function calling, features that should make it easier for developers to integrate the model's capabilities into their applications and workflows."

Together AI:

"Upgraded DeepSeek-R1 with better reasoning, function calling, and coding"

MacStories (May 29, 2025):

"DeepSeek released an updated version of their popular R1 reasoning model (version 0528) with – according to the company – increased benchmark performance, reduced hallucinations, and native support for function calling and JSON output."

2. Timeline Issue: Ollama Models Outdated

  • DeepSeek-R1-0528 released: May 28, 2025 with function calling
  • Ollama models status: Still serving pre-0528 versions without tool calling templates
  • Community response: Faster implementation of 0528 capabilities in custom models

3. Model Capability Confirmed for 0528

Direct testing shows the model can generate perfect function calling JSON when prompted manually:

Test Prompt: "Generate a function call JSON to get current time in Los Angeles"

Model Response:

{
  "function_call": {
    "name": "get_current_time",
    "arguments": {
      "timezone": "America/Los_Angeles"
    }
  }
}

This proves the underlying model fully supports function calling - the issue is in Ollama's template configuration.

Existing Reports

  • Issue #8517: "Missing tool support for DeepSeek-R1 Distillates based on Qwen"
    • Same error reported
    • Community diagnosis: "Looks to me like the template you have is missing the rules for tools"

Downstream Impact

Multiple projects affected by this Ollama configuration issue:

  • browser-use Issue #486: "Doesn't work with DeepSeek R1 through Ollama"
  • langchainjs Issue #7639: "DeepSeek R1: Lack of support for tools in ChatOllama"
  • Open WebUI tool execution failures

Community Workarounds (Proof of Fix)

The community has successfully created working versions with proper tool calling templates:

1. okamototk/deepseek-r1

  • Description: "DeepSeek R1 0528 Qwen3 8B with tool calling/MCP support"
  • Downloads: 591+ (updated yesterday)
  • Status: Tool calling works

2. MFDoom/deepseek-r1-tool-calling

  • Description: "With Tool Calling support"
  • Downloads: 18.2K+ for latest version
  • Available sizes: 1.5b, 7b, 8b, 14b, 32b, 70b, 671b
  • Status: Tool calling works via custom chat template

Root Cause Analysis

Component Status Evidence
DeepSeek-R1-0528 Supports tools Official announcement + manual testing confirms capability
Ollama Registry Models Outdated Still serving pre-0528 versions without tool calling
Community Models Updated Implemented 0528 capabilities with proper templates
Downstream Projects Broken Multiple GitHub issues across different projects

Proposed Solution

Update the official DeepSeek-R1 model definitions in Ollama's registry to the 0528 versions with proper tool calling chat templates, similar to the community workarounds that successfully implemented the new functionality.

Specific models needing 0528 updates:

  • deepseek-r1:1.5b
  • deepseek-r1:7b
  • deepseek-r1:8b
  • deepseek-r1:14b
  • deepseek-r1:32b
  • deepseek-r1:70b
  • deepseek-r1:671b

Technical Details

The community workarounds show the required template structure includes tool calling rules. For example, MFDoom's template includes:

{{- if and $.Tools $last }} 
Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.
{{- end }}

Impact Assessment

  • Severity: High - New 0528 functionality unavailable in official Ollama models
  • Scope: All DeepSeek-R1 variants in official Ollama registry
  • User Impact: Developers unable to use official models for tool-calling applications despite feature availability
  • Timeline: Function calling added May 28, 2025 - Ollama models need updating
  • Workaround: Community models available but fragmented and not officially supported

Additional Context

This issue prevents DeepSeek-R1 from being used in production tool-calling scenarios despite the 0528 update officially adding this capability. The community workarounds demonstrate that the 0528 functionality works properly with correct template implementation.

Timeline Summary:

  • May 28, 2025: DeepSeek releases R1-0528 with function calling support
  • May 29, 2025: Community models (okamototk, MFDoom) implement working tool calling
  • June 1, 2025: Official Ollama models still lack 0528 tool calling capabilities

The fix would bring Ollama's DeepSeek-R1 models up to date with the latest official release and restore compatibility with the growing ecosystem of tool-calling applications.


References:

Originally created by @KyleF0X on GitHub (Jun 1, 2025). Original GitHub issue: https://github.com/ollama/ollama/issues/10935 <html> <body> <!--StartFragment--><html><head></head><body><h1>DeepSeek-R1 models missing 0528 tool calling updates in Ollama registry</h1> <h2>Summary</h2> <p>DeepSeek-R1 models in Ollama's registry return <code>"does not support tools"</code> errors when using the tools API, despite DeepSeek-R1-0528 officially adding function calling support on May 28, 2025. Ollama's models appear to be outdated pre-0528 versions without the new tool calling templates.</p> <h2>Environment</h2> <ul> <li><strong>Ollama Version</strong>: Latest</li> <li><strong>Model</strong>: <code>hf.co/unsloth/DeepSeek-R1-0528-Qwen3-8B-GGUF:Q5_K_XL</code> (and others)</li> <li><strong>OS</strong>: Windows 11, also reproduced on macOS</li> </ul> <h2>Expected Behavior</h2> <p>DeepSeek-R1 models should support Ollama's native tools API, allowing integration with tool-calling applications.</p> <h2>Actual Behavior</h2> <pre><code>{ "error": { "message": "registry.ollama.ai/library/deepseek-r1:70b does not support tools", "type": "api_error", "param": null, "code": null } } </code></pre> <h2>Evidence of 0528 Function Calling Addition</h2> <h3>1. Function Calling Added in 0528 Update (May 28, 2025)</h3> <p><strong>VentureBeat (3 days ago)</strong>:</p> <blockquote> <p>"Beyond performance improvements, DeepSeek-R1-0528 introduces several <strong>new features</strong> aimed at enhancing the user experience. The update <strong>adds support for JSON output and function calling</strong>, features that should make it easier for developers to integrate the model's capabilities into their applications and workflows."</p> </blockquote> <p><strong>Together AI</strong>:</p> <blockquote> <p>"Upgraded DeepSeek-R1 with better reasoning, <strong>function calling</strong>, and coding"</p> </blockquote> <p><strong>MacStories (May 29, 2025)</strong>:</p> <blockquote> <p>"DeepSeek released an <strong>updated version</strong> of their popular R1 reasoning model (version 0528) with – according to the company – increased benchmark performance, reduced hallucinations, and <strong>native support for function calling and JSON output</strong>."</p> </blockquote> <h3>2. Timeline Issue: Ollama Models Outdated</h3> <ul> <li><strong>DeepSeek-R1-0528 released</strong>: May 28, 2025 with function calling</li> <li><strong>Ollama models status</strong>: Still serving pre-0528 versions without tool calling templates</li> <li><strong>Community response</strong>: Faster implementation of 0528 capabilities in custom models</li> </ul> <h3>3. Model Capability Confirmed for 0528</h3> <p>Direct testing shows the model <strong>can</strong> generate perfect function calling JSON when prompted manually:</p> <p><strong>Test Prompt</strong>: "Generate a function call JSON to get current time in Los Angeles"</p> <p><strong>Model Response</strong>:</p> <pre><code class="language-json">{ "function_call": { "name": "get_current_time", "arguments": { "timezone": "America/Los_Angeles" } } } </code></pre> <p>This proves the underlying model fully supports function calling - the issue is in Ollama's template configuration.</p> <h2>Related Issues</h2> <h3>Existing Reports</h3> <ul> <li><strong>Issue #8517</strong>: "Missing tool support for DeepSeek-R1 Distillates based on Qwen" <ul> <li>Same error reported</li> <li>Community diagnosis: <em>"Looks to me like the template you have is missing the rules for tools"</em></li> </ul> </li> </ul> <h3>Downstream Impact</h3> <p>Multiple projects affected by this Ollama configuration issue:</p> <ul> <li><strong>browser-use Issue #486</strong>: "Doesn't work with DeepSeek R1 through Ollama"</li> <li><strong>langchainjs Issue #7639</strong>: "DeepSeek R1: Lack of support for tools in ChatOllama"</li> <li>Open WebUI tool execution failures</li> </ul> <h2>Community Workarounds (Proof of Fix)</h2> <p>The community has successfully created working versions with proper tool calling templates:</p> <h3>1. okamototk/deepseek-r1</h3> <ul> <li><strong>Description</strong>: "DeepSeek R1 0528 Qwen3 8B with tool calling/MCP support"</li> <li><strong>Downloads</strong>: 591+ (updated yesterday)</li> <li><strong>Status</strong>: ✅ Tool calling works</li> </ul> <h3>2. MFDoom/deepseek-r1-tool-calling</h3> <ul> <li><strong>Description</strong>: "With Tool Calling support"</li> <li><strong>Downloads</strong>: 18.2K+ for latest version</li> <li><strong>Available sizes</strong>: 1.5b, 7b, 8b, 14b, 32b, 70b, 671b</li> <li><strong>Status</strong>: ✅ Tool calling works via custom chat template</li> </ul> <h2>Root Cause Analysis</h2> Component | Status | Evidence -- | -- | -- DeepSeek-R1-0528 | ✅ Supports tools | Official announcement + manual testing confirms capability Ollama Registry Models | ❌ Outdated | Still serving pre-0528 versions without tool calling Community Models | ✅ Updated | Implemented 0528 capabilities with proper templates Downstream Projects | ❌ Broken | Multiple GitHub issues across different projects <h2>Proposed Solution</h2> <p>Update the official DeepSeek-R1 model definitions in Ollama's registry to the <strong>0528 versions</strong> with proper tool calling chat templates, similar to the community workarounds that successfully implemented the new functionality.</p> <p><strong>Specific models needing 0528 updates</strong>:</p> <ul> <li><code>deepseek-r1:1.5b</code></li> <li><code>deepseek-r1:7b</code></li> <li><code>deepseek-r1:8b</code></li> <li><code>deepseek-r1:14b</code></li> <li><code>deepseek-r1:32b</code></li> <li><code>deepseek-r1:70b</code></li> <li><code>deepseek-r1:671b</code></li> </ul> <h2>Technical Details</h2> <p>The community workarounds show the required template structure includes tool calling rules. For example, MFDoom's template includes:</p> <pre><code>{{- if and $.Tools $last }} Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt. Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. {{- end }} </code></pre> <h2>Impact Assessment</h2> <ul> <li><strong>Severity</strong>: High - New 0528 functionality unavailable in official Ollama models</li> <li><strong>Scope</strong>: All DeepSeek-R1 variants in official Ollama registry</li> <li><strong>User Impact</strong>: Developers unable to use official models for tool-calling applications despite feature availability</li> <li><strong>Timeline</strong>: Function calling added May 28, 2025 - Ollama models need updating</li> <li><strong>Workaround</strong>: Community models available but fragmented and not officially supported</li> </ul> <h2>Additional Context</h2> <p>This issue prevents DeepSeek-R1 from being used in production tool-calling scenarios despite the 0528 update officially adding this capability. The community workarounds demonstrate that the 0528 functionality works properly with correct template implementation.</p> <p><strong>Timeline Summary</strong>:</p> <ul> <li><strong>May 28, 2025</strong>: DeepSeek releases R1-0528 with function calling support</li> <li><strong>May 29, 2025</strong>: Community models (okamototk, MFDoom) implement working tool calling</li> <li><strong>June 1, 2025</strong>: Official Ollama models still lack 0528 tool calling capabilities</li> </ul> <p>The fix would bring Ollama's DeepSeek-R1 models up to date with the latest official release and restore compatibility with the growing ecosystem of tool-calling applications.</p> <hr> <p><strong>References</strong>:</p> <ul> <li><a href="https://huggingface.co/deepseek-ai/DeepSeek-R1-0528">DeepSeek-R1-0528 Official Hugging Face Page</a></li> <li><a href="https://www.macstories.net/notes/testing-deepseek-r1-0528-on-the-m3-ultra-mac-studio-and-installing-local-gguf-models-with-ollama-on-macos/">MacStories DeepSeek R1-0528 Review</a></li> <li><a href="https://ollama.com/okamototk/deepseek-r1">Community Workaround: okamototk/deepseek-r1</a></li> <li><a href="https://ollama.com/MFDoom/deepseek-r1-tool-calling">Community Workaround: MFDoom/deepseek-r1-tool-calling</a></li> </ul></body></html><!--EndFragment--> </body> </html># DeepSeek-R1 models missing 0528 tool calling updates in Ollama registry ## Summary DeepSeek-R1 models in Ollama's registry return `"does not support tools"` errors when using the tools API, despite DeepSeek-R1-0528 officially adding function calling support on May 28, 2025. Ollama's models appear to be outdated pre-0528 versions without the new tool calling templates. ## Environment - **Ollama Version**: Latest - **Model**: `hf.co/unsloth/DeepSeek-R1-0528-Qwen3-8B-GGUF:Q5_K_XL` (and others) - **OS**: Windows 11, also reproduced on macOS ## Expected Behavior DeepSeek-R1 models should support Ollama's native tools API, allowing integration with tool-calling applications. ## Actual Behavior ``` { "error": { "message": "registry.ollama.ai/library/deepseek-r1:70b does not support tools", "type": "api_error", "param": null, "code": null } } ``` ## Evidence of 0528 Function Calling Addition ### 1. Function Calling Added in 0528 Update (May 28, 2025) **VentureBeat (3 days ago)**: > "Beyond performance improvements, DeepSeek-R1-0528 introduces several **new features** aimed at enhancing the user experience. The update **adds support for JSON output and function calling**, features that should make it easier for developers to integrate the model's capabilities into their applications and workflows." **Together AI**: > "Upgraded DeepSeek-R1 with better reasoning, **function calling**, and coding" **MacStories (May 29, 2025)**: > "DeepSeek released an **updated version** of their popular R1 reasoning model (version 0528) with – according to the company – increased benchmark performance, reduced hallucinations, and **native support for function calling and JSON output**." ### 2. Timeline Issue: Ollama Models Outdated - **DeepSeek-R1-0528 released**: May 28, 2025 with function calling - **Ollama models status**: Still serving pre-0528 versions without tool calling templates - **Community response**: Faster implementation of 0528 capabilities in custom models ### 3. Model Capability Confirmed for 0528 Direct testing shows the model **can** generate perfect function calling JSON when prompted manually: **Test Prompt**: "Generate a function call JSON to get current time in Los Angeles" **Model Response**: ```json { "function_call": { "name": "get_current_time", "arguments": { "timezone": "America/Los_Angeles" } } } ``` This proves the underlying model fully supports function calling - the issue is in Ollama's template configuration. ## Related Issues ### Existing Reports - **Issue #8517**: "Missing tool support for DeepSeek-R1 Distillates based on Qwen" - Same error reported - Community diagnosis: *"Looks to me like the template you have is missing the rules for tools"* ### Downstream Impact Multiple projects affected by this Ollama configuration issue: - **browser-use Issue #486**: "Doesn't work with DeepSeek R1 through Ollama" - **langchainjs Issue #7639**: "DeepSeek R1: Lack of support for tools in ChatOllama" - Open WebUI tool execution failures ## Community Workarounds (Proof of Fix) The community has successfully created working versions with proper tool calling templates: ### 1. okamototk/deepseek-r1 - **Description**: "DeepSeek R1 0528 Qwen3 8B with tool calling/MCP support" - **Downloads**: 591+ (updated yesterday) - **Status**: ✅ Tool calling works ### 2. MFDoom/deepseek-r1-tool-calling - **Description**: "With Tool Calling support" - **Downloads**: 18.2K+ for latest version - **Available sizes**: 1.5b, 7b, 8b, 14b, 32b, 70b, 671b - **Status**: ✅ Tool calling works via custom chat template ## Root Cause Analysis | Component | Status | Evidence | |-----------|--------|----------| | **DeepSeek-R1-0528** | ✅ Supports tools | Official announcement + manual testing confirms capability | | **Ollama Registry Models** | ❌ Outdated | Still serving pre-0528 versions without tool calling | | **Community Models** | ✅ Updated | Implemented 0528 capabilities with proper templates | | **Downstream Projects** | ❌ Broken | Multiple GitHub issues across different projects | ## Proposed Solution Update the official DeepSeek-R1 model definitions in Ollama's registry to the **0528 versions** with proper tool calling chat templates, similar to the community workarounds that successfully implemented the new functionality. **Specific models needing 0528 updates**: - `deepseek-r1:1.5b` - `deepseek-r1:7b` - `deepseek-r1:8b` - `deepseek-r1:14b` - `deepseek-r1:32b` - `deepseek-r1:70b` - `deepseek-r1:671b` ## Technical Details The community workarounds show the required template structure includes tool calling rules. For example, MFDoom's template includes: ``` {{- if and $.Tools $last }} Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt. Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. {{- end }} ``` ## Impact Assessment - **Severity**: High - New 0528 functionality unavailable in official Ollama models - **Scope**: All DeepSeek-R1 variants in official Ollama registry - **User Impact**: Developers unable to use official models for tool-calling applications despite feature availability - **Timeline**: Function calling added May 28, 2025 - Ollama models need updating - **Workaround**: Community models available but fragmented and not officially supported ## Additional Context This issue prevents DeepSeek-R1 from being used in production tool-calling scenarios despite the 0528 update officially adding this capability. The community workarounds demonstrate that the 0528 functionality works properly with correct template implementation. **Timeline Summary**: - **May 28, 2025**: DeepSeek releases R1-0528 with function calling support - **May 29, 2025**: Community models (okamototk, MFDoom) implement working tool calling - **June 1, 2025**: Official Ollama models still lack 0528 tool calling capabilities The fix would bring Ollama's DeepSeek-R1 models up to date with the latest official release and restore compatibility with the growing ecosystem of tool-calling applications. --- **References**: - [[DeepSeek-R1-0528 Official Hugging Face Page](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528)](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) - [[MacStories DeepSeek R1-0528 Review](https://www.macstories.net/notes/testing-deepseek-r1-0528-on-the-m3-ultra-mac-studio-and-installing-local-gguf-models-with-ollama-on-macos/)](https://www.macstories.net/notes/testing-deepseek-r1-0528-on-the-m3-ultra-mac-studio-and-installing-local-gguf-models-with-ollama-on-macos/) - [[Community Workaround: okamototk/deepseek-r1](https://ollama.com/okamototk/deepseek-r1)](https://ollama.com/okamototk/deepseek-r1) - [[Community Workaround: MFDoom/deepseek-r1-tool-calling](https://ollama.com/MFDoom/deepseek-r1-tool-calling)](https://ollama.com/MFDoom/deepseek-r1-tool-calling)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#53711