
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
genkitx-huggingface
Advanced tools
Firebase Genkit AI framework plugin for Hugging Face Models APIs.
genkitx-huggingface
is a community plugin for using Hugging Face Models APIs with
Firebase Genkit. Built by Xavier Portilla Edo.
This Genkit plugin allows to use Hugging Face models through their official APIs.
Install the plugin in your project with your favorite package manager:
npm install genkitx-huggingface
pnpm add genkitx-huggingface
To use the plugin, you need to configure it with your Hugging Face Token key. You can do this by calling the genkit
function:
import { genkit, z } from 'genkit';
import { huggingface, openAIGpt4o } from "genkitx-huggingface";
const ai = genkit({
plugins: [
huggingface({
huggingfaceToken: '<my-huggingface-token>',
}),
openAIGpt4o,
]
});
You can also initialize the plugin in this way if you have set the HUGGINGFACE_TOKEN
environment variable:
import { genkit, z } from 'genkit';
import { huggingface, openAIGpt4o } from "genkitx-huggingface";
const ai = genkit({
plugins: [
huggingface({
huggingfaceToken: '<my-huggingface-token>',
}),
openAIGpt4o,
]
});
The simplest way to call the text generation model is by using the helper function generate
:
import { genkit, z } from 'genkit';
import { huggingface, openAIGpt4o } from "genkitx-huggingface";
// Basic usage of an LLM
const response = await ai.generate({
prompt: 'Tell me a joke.',
});
console.log(await response.text);
// ...configure Genkit (as shown above)...
export const myFlow = ai.defineFlow(
{
name: 'menuSuggestionFlow',
inputSchema: z.string(),
outputSchema: z.string(),
},
async (subject) => {
const llmResponse = await ai.generate({
prompt: `Suggest an item for the menu of a ${subject} themed restaurant`,
});
return llmResponse.text;
}
);
// ...configure Genkit (as shown above)...
const specialToolInputSchema = z.object({ meal: z.enum(["breakfast", "lunch", "dinner"]) });
const specialTool = ai.defineTool(
{
name: "specialTool",
description: "Retrieves today's special for the given meal",
inputSchema: specialToolInputSchema,
outputSchema: z.string(),
},
async ({ meal }): Promise<string> => {
// Retrieve up-to-date information and return it. Here, we just return a
// fixed value.
return "Baked beans on toast";
}
);
const result = ai.generate({
tools: [specialTool],
prompt: "What's for breakfast?",
});
console.log(result.then((res) => res.text));
For more detailed examples and the explanation of other functionalities, refer to the official Genkit documentation.
This plugin supports all currently available Chat/Completion and Embeddings models from Hugging Face Models. This plugin supports image input and multimodal models.
This plugin supports all Hugging Face models available in the Inference Providers on the Hub.
Want to contribute to the project? That's awesome! Head over to our Contribution Guidelines.
[!NOTE]
This repository depends on Google's Firebase Genkit. For issues and questions related to Genkit, please refer to instructions available in Genkit's repository.
Reach out by opening a discussion on GitHub Discussions.
This plugin is proudly maintained by Xavier Portilla Edo Xavier Portilla Edo.
I got the inspiration, structure and patterns to create this plugin from the Genkit Community Plugins repository built by the Fire Compnay as well as the ollama plugin.
This project is licensed under the Apache 2.0 License.
FAQs
Firebase Genkit AI framework plugin for Hugging Face Models APIs.
The npm package genkitx-huggingface receives a total of 0 weekly downloads. As such, genkitx-huggingface popularity was classified as not popular.
We found that genkitx-huggingface demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.