Skip to content

Commit 7e1c0de

Browse files
authored
Merge branch 'main' into feat/support-novita-async-t2v
2 parents 362ebe7 + b51d3f4 commit 7e1c0de

File tree

8 files changed

+54
-2
lines changed

8 files changed

+54
-2
lines changed

packages/tasks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@huggingface/tasks",
33
"packageManager": "[email protected]",
4-
"version": "0.19.7",
4+
"version": "0.19.8",
55
"description": "List of ML tasks for huggingface.co/tasks",
66
"repository": "https://github.com/huggingface/huggingface.js.git",
77
"publishConfig": {

packages/tasks/src/local-apps.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,11 @@ const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[]
121121
setup: "brew install llama.cpp",
122122
content: command("llama-cli"),
123123
},
124+
{
125+
title: "Install from WinGet (Windows)",
126+
setup: "winget install llama.cpp",
127+
content: command("llama-cli"),
128+
},
124129
{
125130
title: "Use pre-built binary",
126131
setup: [

packages/tasks/src/model-libraries.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -940,6 +940,14 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = {
940940
filter: true,
941941
countDownloads: `path:"pytorch_model.bin" OR path:"model.safetensors"`,
942942
},
943+
torchgeo: {
944+
prettyLabel: "TorchGeo",
945+
repoName: "TorchGeo",
946+
repoUrl: "https://github.com/microsoft/torchgeo",
947+
docsUrl: "https://torchgeo.readthedocs.io/",
948+
filter: false,
949+
countDownloads: `path_extension:"pt" OR path_extension:"pth"`,
950+
},
943951
transformers: {
944952
prettyLabel: "Transformers",
945953
repoName: "🤗/transformers",

packages/tasks/src/tasks/image-text-to-text/about.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,10 @@ curl https://router.huggingface.co/hf-inference/models/meta-llama/Llama-3.2-11B-
8585

8686
## Useful Resources
8787

88+
- [Vision Language Models (Better, Faster, Stronger)](https://huggingface.co/blog/vlms-2025)
8889
- [Vision Language Models Explained](https://huggingface.co/blog/vlms)
8990
- [Welcome PaliGemma 2 – New vision language models by Google](https://huggingface.co/blog/paligemma2)
9091
- [SmolVLM - small yet mighty Vision Language Model](https://huggingface.co/blog/smolvlm)
9192
- [Multimodal RAG using ColPali and Qwen2-VL](https://github.com/merveenoyan/smol-vision/blob/main/ColPali_%2B_Qwen2_VL.ipynb)
92-
- [Image-text-to-text task guide](https://huggingface.co/tasks/image-text-to-text)
9393
- [Preference Optimization for Vision Language Models with TRL](https://huggingface.co/blog/dpo_vlm)
94+
- [Image-text-to-text task guide](https://huggingface.co/docs/transformers/tasks/image_text_to_text)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user. Only terminate your turn when you are sure that the problem is solved, or if you need more info from the user to solve the problem.
2+
3+
If you are not sure about anything pertaining to the user’s request, use your tools to read files and gather the relevant information: do NOT guess or make up an answer.
4+
5+
You MUST plan extensively before each function call, and reflect extensively on the outcomes of the previous function calls. DO NOT do this entire process by making function calls only, as this can impair your ability to solve the problem and think insightfully.
6+
7+
Help the User find relevant Papers, Models and Spaces (which are hosted, running Models accesible via a User Interface) to aid them with their Machine Learning research. Paper IDs are arXiv identifiers, and are commonly referenced between Papers and Models.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"model": "Qwen/Qwen2.5-72B-Instruct",
3+
"provider": "nebius",
4+
"servers": [
5+
{
6+
"type": "http",
7+
"config": {
8+
"url": "https://evalstate-hf-mcp-server.hf.space/mcp"
9+
}
10+
}
11+
]
12+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user. Only terminate your turn when you are sure that the problem is solved, or if you need more info from the user to solve the problem.
2+
3+
If you are not sure about anything pertaining to the user’s request, use your tools to read files and gather the relevant information: do NOT guess or make up an answer.
4+
5+
You MUST plan extensively before each function call, and reflect extensively on the outcomes of the previous function calls. DO NOT do this entire process by making function calls only, as this can impair your ability to solve the problem and think insightfully.
6+
7+
You have access to tools to help you answer questions the User has about the "huggingface.js" repository. The repository contains a number of packages for working with the Hugging Face APIs, Tools and Services. This includes API search functions, inference libraries, LLM Clients and MCP, Agents.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"model": "Qwen/Qwen2.5-72B-Instruct",
3+
"provider": "nebius",
4+
"servers": [
5+
{
6+
"type": "http",
7+
"config": {
8+
"url": "https://evalstate-hf-mcp-server.hf.space/mcp"
9+
}
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)