[GH-ISSUE #13418] deepseek-v3.2:cloud model metadata incomplete, causing GitHub Copilot integration issues #34619

Closed
opened 2026-04-22 18:20:28 -05:00 by GiteaMirror · 2 comments
Owner

Originally created by @xNeo-git on GitHub (Dec 11, 2025).
Original GitHub issue: https://github.com/ollama/ollama/issues/13418

Originally assigned to: @BruceMacD on GitHub.

What is the issue?

Description:
When deepseek-v3.2:cloud is added to the local Ollama server, GitHub Copilot in VS Code stops displaying the list of available Ollama models. The issue is caused (maybe) by incomplete metadata returned by the /api/show endpoint for this specific model compared to other cloud models.

Steps to Reproduce:

Add the problematic model:
ollama pull deepseek-v3.2:cloud

Open VS Code and check GitHub Copilot Ollama integration:

Navigate to GitHub Copilot Manage Models in VS Code

Check the list of available Ollama models
Expected: All models should be listed
Image
Actual: No ollama models are displayed

Image

Verify the metadata issue:
curl -X POST http://localhost:11434/api/show -H "Content-Type: application/json" -d '{"name":"deepseek-v3.2:cloud"}'

Compare with a working model (and other cloud models):
curl -X POST http://localhost:11434/api/show -H "Content-Type: application/json" -d '{"name":"deepseek-v3.1:671b-cloud"}'

Fix the issue by removing the problematic model:
ollama rm deepseek-v3.2:cloud

Confirm GitHub Copilot functionality is restored:
VS Code GitHub Copilot should now display all Ollama models correctly

Root Cause (Maybe):
The /api/show endpoint for deepseek-v3.2:cloud returns incomplete metadata:

Image

Missing family, families, parameter_size, quantization_level
Entire model_info section missing
GitHub Copilot expects complete metadata to properly list models (?)
Impact:
Breaks GitHub Copilot integration with Ollama when this specific model is present.

Windows 11 Pro 25H2

Ollama Version: 0.13.2 running on wsl2
VS Code Version:
Version: 1.107.0 (user setup)
Commit: 618725e67565b290ba4da6fe2d29f8fa1d4e3622
Date: 2025-12-10T07:43:47.883Z
Electron: 39.2.3
ElectronBuildId: 12895514
Chromium: 142.0.7444.175
Node.js: 22.21.1
V8: 14.2.231.21-electron.0
OS: Windows_NT x64 10.0.26200
WSL version: 2.6.1.0
Kernel version: 6.6.87.2-1
WSLg version: 1.0.66
MSRDC version: 1.2.6353
Direct3D version: 1.611.1-81528511
DXCore version: 10.0.26100.1-240331-1435.ge-release
Windows version: 10.0.26200.7462

Relevant log output


OS

Windows

GPU

Nvidia

CPU

Intel

Ollama version

ollama version is 0.13.2

Originally created by @xNeo-git on GitHub (Dec 11, 2025). Original GitHub issue: https://github.com/ollama/ollama/issues/13418 Originally assigned to: @BruceMacD on GitHub. ### What is the issue? Description: When deepseek-v3.2:cloud is added to the local Ollama server, GitHub Copilot in VS Code stops displaying the list of available Ollama models. The issue is caused (maybe) by incomplete metadata returned by the /api/show endpoint for this specific model compared to other cloud models. Steps to Reproduce: Add the problematic model: ollama pull deepseek-v3.2:cloud Open VS Code and check GitHub Copilot Ollama integration: Navigate to GitHub Copilot Manage Models in VS Code Check the list of available Ollama models Expected: All models should be listed <img width="212" height="224" alt="Image" src="https://github.com/user-attachments/assets/ea6e475c-e5a8-4575-93d1-8add80b5cffb" /> Actual: No ollama models are displayed <img width="210" height="321" alt="Image" src="https://github.com/user-attachments/assets/e08e0b0c-5046-407a-8e0b-b814667822a7" /> Verify the metadata issue: curl -X POST http://localhost:11434/api/show -H "Content-Type: application/json" -d '{"name":"deepseek-v3.2:cloud"}' Compare with a working model (and other cloud models): curl -X POST http://localhost:11434/api/show -H "Content-Type: application/json" -d '{"name":"deepseek-v3.1:671b-cloud"}' Fix the issue by removing the problematic model: ollama rm deepseek-v3.2:cloud Confirm GitHub Copilot functionality is restored: VS Code GitHub Copilot should now display all Ollama models correctly Root Cause (Maybe): The /api/show endpoint for deepseek-v3.2:cloud returns incomplete metadata: <img width="515" height="283" alt="Image" src="https://github.com/user-attachments/assets/b3dc2027-e0e7-47c9-8327-e9d697f23dea" /> Missing family, families, parameter_size, quantization_level Entire model_info section missing GitHub Copilot expects complete metadata to properly list models (?) Impact: Breaks GitHub Copilot integration with Ollama when this specific model is present. Windows 11 Pro 25H2 Ollama Version: 0.13.2 running on wsl2 VS Code Version: Version: 1.107.0 (user setup) Commit: 618725e67565b290ba4da6fe2d29f8fa1d4e3622 Date: 2025-12-10T07:43:47.883Z Electron: 39.2.3 ElectronBuildId: 12895514 Chromium: 142.0.7444.175 Node.js: 22.21.1 V8: 14.2.231.21-electron.0 OS: Windows_NT x64 10.0.26200 WSL version: 2.6.1.0 Kernel version: 6.6.87.2-1 WSLg version: 1.0.66 MSRDC version: 1.2.6353 Direct3D version: 1.611.1-81528511 DXCore version: 10.0.26100.1-240331-1435.ge-release Windows version: 10.0.26200.7462 ### Relevant log output ```shell ``` ### OS Windows ### GPU Nvidia ### CPU Intel ### Ollama version ollama version is 0.13.2
GiteaMirror added the cloudbug labels 2026-04-22 18:20:28 -05:00
Author
Owner

@Omoeba commented on GitHub (Dec 13, 2025):

I am also encountering this issue.

<!-- gh-comment-id:3648787037 --> @Omoeba commented on GitHub (Dec 13, 2025): I am also encountering this issue.
Author
Owner

@BruceMacD commented on GitHub (Dec 19, 2025):

Sorry about this, I just re-pushed the tag with the info filled out, if you pull the model again it should work now. Thanks for the report and please let me know if you are still facing issues.

<!-- gh-comment-id:3676036330 --> @BruceMacD commented on GitHub (Dec 19, 2025): Sorry about this, I just re-pushed the tag with the info filled out, if you pull the model again it should work now. Thanks for the report and please let me know if you are still facing issues.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#34619