Socket
Socket
Sign inDemoInstall

genkitx-github

Package Overview
Dependencies
Maintainers
0
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

genkitx-github

Firebase Genkit AI framework plugin for Github Models APIs.


Version published
Weekly downloads
245
increased by142.57%
Maintainers
0
Weekly downloads
 
Created
Source

Firebase Genkit + Github Models

Firebase Genkit <> Github Models Plugin

Github 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-github is a community plugin for using Github Models APIs with Firebase Genkit. Built by Xavier Portilla Edo.

This Genkit plugin allows to use Github models through their official APIs.

Installation

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

  • npm install genkitx-github
  • yarn add genkitx-github
  • pnpm add genkitx-github

Usage

Configuration

To use the plugin, you need to configure it with your Github Token key. You can do this by calling the configureGenkit function:

import {github, openAIGpt4o} from "genkitx-github";

configureGenkit({
  plugins: [
    github({
      githubToken: '<my-github-token>',
    }),
  ],
  logLevel: "debug",
  enableTracingAndMetrics: true,
});

You can also intialize the plugin in this way if you have set the GITHUB_TOKEN environment variable:

import {github, openAIGpt4o} from "genkitx-github";

configureGenkit({
  plugins: [
    github(),
  ],
  logLevel: "debug",
  enableTracingAndMetrics: true,
});

Basic examples

The simplest way to call the text generation model is by using the helper function generate:

import {github, openAIGpt4o} from "genkitx-github";

// Basic usage of an LLM
const response = await generate({
  model: openAIGpt4o, // model imported from genkitx-github
  prompt: 'Tell me a joke.',
});

console.log(await response.text());

Within a flow

// ...configure Genkit (as shown above)...

export const myFlow = defineFlow(
  {
    name: 'menuSuggestionFlow',
    inputSchema: z.string(),
    outputSchema: z.string(),
  },
  async (subject) => {
    const llmResponse = await generate({
      prompt: `Suggest an item for the menu of a ${subject} themed restaurant`,
      model: openAIGpt4o,
    });

    return llmResponse.text();
  }
);

Tool use

// ...configure Genkit (as shown above)...

const specialToolInputSchema = z.object({ meal: z.enum(["breakfast", "lunch", "dinner"]) });
const specialTool = 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 = generate({
  model: openAIGpt4o,
  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 Github Models. This plugin supports image input and multimodal models.

Still in progress:

  1. Support for image output models

API Reference

You can find the full API reference in the API Reference Documentation

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

FAQs

Package last updated on 20 Sep 2024

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc