From 3bc14484fbb89b2a8c4842b2e5e650ee84e9fc59 Mon Sep 17 00:00:00 2001 From: hanouticelina <36770234+hanouticelina@users.noreply.github.com> Date: Fri, 17 Jan 2025 03:02:39 +0000 Subject: [PATCH] Update API inference documentation (automated) --- docs/api-inference/tasks/question-answering.md | 1 - docs/api-inference/tasks/table-question-answering.md | 7 +++---- scripts/api-inference/package.json | 2 +- scripts/api-inference/pnpm-lock.yaml | 10 +++++----- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/docs/api-inference/tasks/question-answering.md b/docs/api-inference/tasks/question-answering.md index a63730d69..0222d8549 100644 --- a/docs/api-inference/tasks/question-answering.md +++ b/docs/api-inference/tasks/question-answering.md @@ -26,7 +26,6 @@ For more details about the `question-answering` task, check out its [dedicated p - [deepset/roberta-base-squad2](https://huggingface.co/deepset/roberta-base-squad2): A robust baseline model for most question answering domains. - [distilbert/distilbert-base-cased-distilled-squad](https://huggingface.co/distilbert/distilbert-base-cased-distilled-squad): Small yet robust model that can answer questions. -- [google/tapas-base-finetuned-wtq](https://huggingface.co/google/tapas-base-finetuned-wtq): A special model that can answer questions from tables. Explore all available models and find the one that suits you best [here](https://huggingface.co/models?inference=warm&pipeline_tag=question-answering&sort=trending). diff --git a/docs/api-inference/tasks/table-question-answering.md b/docs/api-inference/tasks/table-question-answering.md index 55608ed25..6d1c99bfb 100644 --- a/docs/api-inference/tasks/table-question-answering.md +++ b/docs/api-inference/tasks/table-question-answering.md @@ -24,7 +24,6 @@ For more details about the `table-question-answering` task, check out its [dedic ### Recommended models -- [google/tapas-base-finetuned-wtq](https://huggingface.co/google/tapas-base-finetuned-wtq): A robust table question answering model. Explore all available models and find the one that suits you best [here](https://huggingface.co/models?inference=warm&pipeline_tag=table-question-answering&sort=trending). @@ -35,7 +34,7 @@ Explore all available models and find the one that suits you best [here](https:/ ```bash -curl https://api-inference.huggingface.co/models/google/tapas-base-finetuned-wtq \ +curl https://api-inference.huggingface.co/models/ \ -X POST \ -d '{"inputs": { "query": "How many stars does the transformers repository have?", "table": { "Repository": ["Transformers", "Datasets", "Tokenizers"], "Stars": ["36542", "4512", "3934"], "Contributors": ["651", "77", "34"], "Programming language": [ "Python", "Python", "Rust, Python and NodeJS" ] } }}' \ -H 'Content-Type: application/json' \ @@ -47,7 +46,7 @@ curl https://api-inference.huggingface.co/models/google/tapas-base-finetuned-wtq ```py import requests -API_URL = "https://api-inference.huggingface.co/models/google/tapas-base-finetuned-wtq" +API_URL = "https://api-inference.huggingface.co/models/" headers = {"Authorization": "Bearer hf_***"} def query(payload): @@ -78,7 +77,7 @@ To use the Python client, see `huggingface_hub`'s [package reference](https://hu ```js async function query(data) { const response = await fetch( - "https://api-inference.huggingface.co/models/google/tapas-base-finetuned-wtq", + "https://api-inference.huggingface.co/models/", { headers: { Authorization: "Bearer hf_***", diff --git a/scripts/api-inference/package.json b/scripts/api-inference/package.json index 60382a5ac..efa4d5191 100644 --- a/scripts/api-inference/package.json +++ b/scripts/api-inference/package.json @@ -14,7 +14,7 @@ "author": "", "license": "ISC", "dependencies": { - "@huggingface/tasks": "^0.13.14", + "@huggingface/tasks": "^0.13.15", "@types/node": "^22.5.0", "handlebars": "^4.7.8", "node": "^20.17.0", diff --git a/scripts/api-inference/pnpm-lock.yaml b/scripts/api-inference/pnpm-lock.yaml index ed9f9d9ca..25905b81d 100644 --- a/scripts/api-inference/pnpm-lock.yaml +++ b/scripts/api-inference/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: dependencies: '@huggingface/tasks': - specifier: ^0.13.14 - version: 0.13.14 + specifier: ^0.13.15 + version: 0.13.15 '@types/node': specifier: ^22.5.0 version: 22.5.0 @@ -186,8 +186,8 @@ packages: cpu: [x64] os: [win32] - '@huggingface/tasks@0.13.14': - resolution: {integrity: sha512-KQNU87o+wdXuuv+vl2T4CnBTDynEwI71Mjgao+HiswKyi9oAd8z+LnVzn9fmnzeONXpEf1u0o5iSDwEcGLCFtA==} + '@huggingface/tasks@0.13.15': + resolution: {integrity: sha512-DDkPK1wh5EkhkmcRrQIPUc48v56hIv2Of2mJipfAnOUZARnKedzHvMZrUxiTz7GCYDEG9+N4xOZwJZtm99YdCA==} '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} @@ -404,7 +404,7 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true - '@huggingface/tasks@0.13.14': {} + '@huggingface/tasks@0.13.15': {} '@jridgewell/resolve-uri@3.1.2': {}