[!WARNING] This version is in preview and may have API changes and critical bugs. Use it for prototypes or hobby projects, not in production.
This repository contains Go community plugins for Firebase Genkit.
go get github.com/yukinagae/genkit-go-plugins@latest
Get your OpenAI API key from here and run:
export OPENAI_API_KEY=your-api-key
Run genkit start -o
with the following sample code:
package main
import (
"context"
"fmt"
"log"
"github.com/firebase/genkit/go/ai"
"github.com/firebase/genkit/go/genkit"
"github.com/yukinagae/genkit-go-plugins/plugins/openai"
)
func main() {
ctx := context.Background()
if err := openai.Init(ctx, nil); err != nil {
log.Fatal(err)
}
genkit.DefineFlow("sampleFlow", func(ctx context.Context, input string) (string, error) {
model := openai.Model("gpt-4o-mini")
resp, err := model.Generate(ctx,
ai.NewGenerateRequest(
&ai.GenerationCommonConfig{Temperature: 1},
ai.NewUserTextMessage("Hello!")),
nil)
if err != nil {
return "", err
}
text := resp.Text()
return text, nil
})
if err := genkit.Init(ctx, nil); err != nil {
log.Fatal(err)
}
}
See the official Genkit Go Documentation for more details.
We welcome contributions to this project! To get started, please refer to our Contribution Guide.