You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

genkitx-huggingface

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

genkitx-huggingface

Firebase Genkit AI framework plugin for Hugging Face Models APIs.

1.0.0
unpublished
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
0
Weekly downloads
 
Created
Source

Firebase Genkit + Hugging Face Models

Firebase Genkit <> Hugging Face Models Plugin

Hugging Face Models Community Plugin for Google Firebase Genkit

GitHub version NPM Downloads GitHub License Static Badge
GitHub Issues or Pull Requests GitHub Issues or Pull Requests GitHub commit activity

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.

Installation

Install the plugin in your project with your favorite package manager:

  • npm install genkitx-huggingface
  • pnpm add genkitx-huggingface

Usage

Configuration

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,
  ]
});

Basic examples

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);

Within a flow

// ...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;
  }
);

Tool use

// ...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.

Supported models

This plugin supports all currently available Chat/Completion and Embeddings models from Hugging Face Models. This plugin supports image input and multimodal models.

API Reference

This plugin supports all Hugging Face models available in the Inference Providers on the Hub.

Contributing

Want to contribute to the project? That's awesome! Head over to our Contribution Guidelines.

Need support?

[!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.

Credits

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.

License

This project is licensed under the Apache 2.0 License.

License: Apache 2.0

Keywords

genkit

FAQs

Package last updated on 23 Feb 2025

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.