Skip to content

Commit 4229e82

Browse files
authored
Add new integrations and remove Continue from Inference Providers (#2080)
* Add new integrations and remove Continue from Inference Providers * Move VS Code guide to integrations section - Move vscode.md from guides/ to integrations/ - Update _toctree.yml to reflect new location - Add redirect from old URL to preserve existing links
1 parent 4910c3c commit 4229e82

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

docs/inference-providers/_redirects.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ parallelism: index
55
usage: index
66
faq: index
77
rate-limits: pricing
8+
guides/vscode: integrations/vscode

docs/inference-providers/_toctree.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
title: How to use OpenAI gpt-oss
2626
- local: guides/image-editor
2727
title: Build an Image Editor
28-
- local: guides/vscode
29-
title: VS Code with GitHub Copilot
3028
- local: guides/github-actions-code-review
3129
title: Automating Code Review with GitHub Actions
3230
- local: guides/coding-environment
@@ -44,6 +42,8 @@
4442
title: MacWhisper
4543
- local: integrations/opencode
4644
title: OpenCode
45+
- local: integrations/vscode
46+
title: VS Code with GitHub Copilot
4747

4848
- local: tasks/index
4949
title: Inference Tasks

docs/inference-providers/integrations/index.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ This table lists _some_ tools, libraries, and applications that work with Huggin
1717

1818
| Integration | Description | Resources |
1919
| ------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
20-
| [Continue](https://continue.dev/) | AI code assistant for VS Code and JetBrains | [Official docs](https://docs.continue.dev/customize/model-providers/more/huggingfaceinferenceapi#hugging-face) |
20+
| [CrewAI](https://www.crewai.com/) | Framework for orchestrating AI agent teams | [Official docs](https://docs.crewai.com/en/concepts/llms#hugging-face) |
21+
| [GitHub Copilot Chat](https://docs.github.com/en/copilot) | AI pair programmer in VS Code | [HF docs](./vscode) |
2122
| [fast-agent](https://fast-agent.ai/) | Flexible framework building MCP/ACP powered Agents, Workflows and evals | [Official docs](https://fast-agent.ai/models/llm_providers/#hugging-face) |
2223
| [Haystack](https://haystack.deepset.ai/) | Open-source LLM framework for building production applications | [Official docs](https://docs.haystack.deepset.ai/docs/huggingfaceapichatgenerator) |
2324
| [Inspect](https://inspect.aisi.org.uk/) | AI safety and evaluation framework | [Official docs](https://inspect.aisi.org.uk/providers.html#hugging-face) |
@@ -26,7 +27,9 @@ This table lists _some_ tools, libraries, and applications that work with Huggin
2627
| [LlamaIndex](https://www.llamaindex.ai/) | Data framework for LLM applications | [Official docs](https://developers.llamaindex.ai/python/examples/llm/huggingface/#use-a-model-via-inference-providers) |
2728
| [MacWhisper](https://goodsnooze.gumroad.com/l/macwhisper) | Speech-to-text application for macOS | [HF docs](./macwhisper) |
2829
| [OpenCode](https://opencode.ai/) | AI coding agent built for the terminal | [Official docs](https://opencode.ai/docs/providers#hugging-face) / [HF docs](./opencode) |
30+
| [PydanticAI](https://ai.pydantic.dev/) | Framework for building AI agents with Python | [Official docs](https://ai.pydantic.dev/models/huggingface/) |
2931
| [Roo Code](https://roocode.com/) | AI-powered code generation and refactoring | [Official docs](https://docs.roocode.com/providers/huggingface) |
32+
| [smolagents](https://huggingface.co/docs/smolagents) | Framework for building LLM agents with tool integration | [Official docs](https://huggingface.co/docs/smolagents/reference/models#smolagents.InferenceClientModel) |
3033

3134
## Integrations by Category
3235

@@ -46,7 +49,7 @@ End-user applications and interfaces powered by LLMs.
4649

4750
AI-powered coding assistants and development environments.
4851

49-
- [Continue](https://continue.dev/) - AI code assistant for VS Code, JetBrains and the terminal ([Official docs](https://docs.continue.dev/customize/model-providers/more/huggingfaceinferenceapi#hugging-face))
52+
- [GitHub Copilot Chat](https://docs.github.com/en/copilot) - AI pair programmer in VS Code ([HF docs](./vscode))
5053
- [OpenCode](https://opencode.ai/) - AI coding agent built for the terminal ([Official docs](https://opencode.ai/docs/providers#hugging-face) / [HF docs](./opencode))
5154
- [Roo Code](https://roocode.com/) - AI-powered code generation and refactoring ([Official docs](https://docs.roocode.com/providers/huggingface))
5255

@@ -60,10 +63,13 @@ Tools for assessing and ensuring AI safety and performance.
6063

6164
LLM application frameworks and orchestration platforms.
6265

63-
- [Haystack](https://haystack.deepset.ai/) - Open-source framework for building production-ready LLM applications ([Official docs](https://docs.haystack.deepset.ai/docs/huggingfaceapichatgenerator))
66+
- [CrewAI](https://www.crewai.com/) - Framework for orchestrating AI agent teams ([Official docs](https://docs.crewai.com/en/concepts/llms#hugging-face))
6467
- [fast-agent](https://fast-agent.ai/) - Flexible framework building MCP/ACP powered Agents, Workflows and evals ([Official docs](https://fast-agent.ai/models/llm_providers/#hugging-face))
68+
- [Haystack](https://haystack.deepset.ai/) - Open-source framework for building production-ready LLM applications ([Official docs](https://docs.haystack.deepset.ai/docs/huggingfaceapichatgenerator))
6569
- [LangChain](https://www.langchain.com/) - Popular framework for developing LLM applications ([Official docs](https://docs.langchain.com/oss/python/integrations/providers/huggingface#huggingfaceendpoint))
6670
- [LlamaIndex](https://www.llamaindex.ai/) - Data framework for connecting custom data to LLMs ([Official docs](https://developers.llamaindex.ai/python/examples/llm/huggingface/#use-a-model-via-inference-providers))
71+
- [PydanticAI](https://ai.pydantic.dev/) - Framework for building AI agents with Python ([Official docs](https://ai.pydantic.dev/models/huggingface/))
72+
- [smolagents](https://huggingface.co/docs/smolagents) - Framework for building LLM agents with tool integration ([Official docs](https://huggingface.co/docs/smolagents/reference/models#smolagents.InferenceClientModel))
6773

6874
<!-- ## Add Your Integration
6975
File renamed without changes.

0 commit comments

Comments
 (0)