Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
merveenoyan committed Jan 25, 2024
2 parents 6d95f7a + de90a9e commit 39b6ce0
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 15 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/agents-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
workflow_dispatch:
inputs:
newversion:
description: "Semantic Version Bump Type (major minor patch)"
type: choice
description: "Semantic Version Bump Type"
default: patch
options:
- patch
- minor
- major

concurrency:
group: "push-to-main"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/hub-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
workflow_dispatch:
inputs:
newversion:
description: "Semantic Version Bump Type (major minor patch)"
type: choice
description: "Semantic Version Bump Type"
default: patch
options:
- patch
- minor
- major

concurrency:
group: "push-to-main"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/inference-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
workflow_dispatch:
inputs:
newversion:
description: "Semantic Version Bump Type (major minor patch)"
type: choice
description: "Semantic Version Bump Type"
default: patch
options:
- patch
- minor
- major

concurrency:
group: "push-to-main"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/jinja-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
workflow_dispatch:
inputs:
newversion:
description: "Semantic Version Bump Type (major minor patch)"
type: choice
description: "Semantic Version Bump Type"
default: patch
options:
- patch
- minor
- major

concurrency:
group: "push-to-main"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/languages-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
workflow_dispatch:
inputs:
newversion:
description: "Semantic Version Bump Type (major minor patch)"
type: choice
description: "Semantic Version Bump Type"
default: patch
options:
- patch
- minor
- major

concurrency:
group: "push-to-main"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/tasks-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
workflow_dispatch:
inputs:
newversion:
description: "Semantic Version Bump Type (major minor patch)"
type: choice
description: "Semantic Version Bump Type"
default: patch
options:
- patch
- minor
- major

concurrency:
group: "push-to-main"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/widgets-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
workflow_dispatch:
inputs:
newversion:
description: "Semantic Version Bump Type (major minor patch)"
type: choice
description: "Semantic Version Bump Type"
default: patch
options:
- patch
- minor
- major

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ await inference.textToImage({
This is a collection of JS libraries to interact with the Hugging Face API, with TS types included.

- [@huggingface/inference](packages/inference/README.md): Use the Inference API to make calls to 100,000+ Machine Learning models, or your own [inference endpoints](https://hf.co/docs/inference-endpoints/)!
- [@huggingface/agents](packages/agents/README.md): Interact with HF models through a natural language interface
- [@huggingface/hub](packages/hub/README.md): Interact with huggingface.co to create or delete repos and commit / download files
- [@huggingface/agents](packages/agents/README.md): Interact with HF models through a natural language interface


With more to come, like `@huggingface/endpoints` to manage your HF Endpoints!
Expand Down
14 changes: 7 additions & 7 deletions docs/_toctree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
title: Use the Inference API
- local: inference/modules
title: API Reference
- title: "@huggingface/agent"
isExpanded: true
sections:
- local: agents/README
title: Use Agents to run multi-modal workflows from a natural language API
- local: agents/modules
title: API Reference
- title: "@huggingface/hub"
isExpanded: true
sections:
- local: hub/README
title: Interact with the Hub
- local: hub/modules
title: API Reference
- title: "@huggingface/agent"
isExpanded: true
sections:
- local: agents/README
title: Use Agents to run multi-modal workflows from a natural language API
- local: agents/modules
title: API Reference

0 comments on commit 39b6ce0

Please sign in to comment.