Gin tutorial
In this tutorial, you’ll build Bargain Chef, a standalone Genkit backend on Gin that exposes a recipe-generating flow over HTTP. It uses two AI patterns Genkit simplifies: streaming structured output and tool calling.
What you’ll build
Section titled “What you’ll build”For each request, your server prompts Gemini to draft a recipe, and the model calls a tool to look up mock grocery sale prices so it can prefer on-sale ingredients. The server streams the recipe back field-by-field as it’s generated, so clients see progress before the full recipe is ready.
You can find the finished code on GitHub.
Prerequisites
Section titled “Prerequisites”- Go 1.24 or later (Download and install)
This tutorial assumes you’re already familiar with building Go applications with Gin.
Set up the application
Section titled “Set up the application”Create the Go project
Section titled “Create the Go project”mkdir my-genkit-gin && cd my-genkit-gingo mod init example/my-genkit-ginInstall packages
Section titled “Install packages”First, install the Genkit CLI:
curl -sL cli.genkit.dev | bashThen install the Go packages you need:
go get github.com/firebase/genkit/gogo get github.com/firebase/genkit/go/plugins/googlegenaigo get github.com/gin-gonic/gingo get github.com/gin-contrib/corsThese packages include:
github.com/firebase/genkit/go: Core Genkit Go SDK, including the Google AI plugin for Gemini.github.com/firebase/genkit/go/plugins/googlegenai: Plugin that connects Genkit to Google’s Gemini models.github.com/gin-gonic/gin: The Gin web framework.github.com/gin-contrib/cors: CORS middleware so a browser-based frontend can call the backend.
Configure a model API key
Section titled “Configure a model API key”This tutorial uses the Gemini API from Google AI Studio. Get a key at https://aistudio.google.com/apikey, then set the GEMINI_API_KEY environment variable to your key:
export GEMINI_API_KEY=<your API key>Create the backend
Section titled “Create the backend”The backend handles requests from clients. For each request, it prompts Gemini to draft a recipe, lets the model call a tool to look up today’s grocery sale prices, and streams the partial recipe back to the caller as it’s generated.
The whole pipeline is a single Genkit flow. A flow is a special Genkit function with built-in observability, type safety, and tooling integration.
You’ll build the backend in four parts:
- Initialize Genkit and register Gemini as the model provider.
- Define a tool the model can call to fetch sale prices.
- Describe the recipe shape with Go structs so Genkit can validate the final output and stream partial recipe chunks.
- Define the streaming flow that ties everything together.
Create a main.go file:
package main
import ( "context" "fmt" "log" "time"
"github.com/firebase/genkit/go/ai" "github.com/firebase/genkit/go/genkit" "github.com/firebase/genkit/go/plugins/googlegenai" "github.com/gin-contrib/cors" "github.com/gin-gonic/gin" "google.golang.org/genai")
type SaleItem struct { Name string `json:"name" jsonschema:"description=The ingredient name"` Price string `json:"price" jsonschema:"description=The sale price, including units"`}
type IngredientsOnSaleInput struct { DayType string `json:"dayType" jsonschema:"enum=weekday,enum=weekend,description=Whether to fetch weekday or weekend sale prices"`}
type RecipeIngredient struct { Name string `json:"name" jsonschema:"description=Ingredient name"` Quantity string `json:"quantity" jsonschema:"description=Amount needed (e.g. '2 cups', '1 lb')"` OnSale bool `json:"onSale" jsonschema:"description=True if this ingredient is in the sale list"`}
type Recipe struct { Title string `json:"title" jsonschema:"description=Recipe title"` Description string `json:"description" jsonschema:"description=Short description of the dish"` Servings int `json:"servings" jsonschema:"description=Number of servings"` Ingredients []RecipeIngredient `json:"ingredients" jsonschema:"description=The ingredient list"` Steps []string `json:"steps" jsonschema:"description=The ordered preparation steps"`}
type BargainChefInput struct { Craving string `json:"craving" jsonschema:"description=What the user feels like eating right now"`}
func main() { ctx := context.Background()
g := genkit.Init(ctx, genkit.WithPlugins(&googlegenai.GoogleAI{}), )
getIngredientsOnSale := genkit.DefineTool(g, "getIngredientsOnSale", "Returns the ingredients on sale at the local grocery store, with prices. The sale set differs between weekdays and weekends.", func(toolCtx *ai.ToolContext, input IngredientsOnSaleInput) ([]SaleItem, error) { // Mock data: in a real app, query a pricing database. if input.DayType == "weekend" { return []SaleItem{ {Name: "chicken breast", Price: "$2.99/lb"}, {Name: "pasta", Price: "$0.79"}, {Name: "canned tomatoes", Price: "$0.99"}, {Name: "garlic", Price: "$0.50 / head"}, {Name: "olive oil", Price: "$6.99"}, }, nil } return []SaleItem{ {Name: "eggs", Price: "$3.49 / dozen"}, {Name: "spinach", Price: "$1.99"}, {Name: "parmesan", Price: "$4.99"}, {Name: "lemons", Price: "$0.50 each"}, {Name: "rice", Price: "$2.49"}, {Name: "butter", Price: "$3.99"}, }, nil }, )
bargainChefFlow := genkit.DefineStreamingFlow(g, "bargainChefFlow", func(ctx context.Context, input BargainChefInput, sendChunk func(context.Context, *Recipe) error) (*Recipe, error) { today := time.Now().Weekday().String()
prompt := fmt.Sprintf(`Today is %s. The user is craving: %s.
Call the getIngredientsOnSale tool with the dayType that matches today. Saturday and Sunday are weekends; all other days are weekdays. Then propose ONE recipe that takes advantage of those deals. For each ingredient, set onSale=true if it appears in the tool's response, false otherwise.`, today, input.Craving)
stream := genkit.GenerateDataStream[*Recipe](ctx, g, ai.WithModelName("googleai/gemini-flash-latest"), ai.WithConfig(&genai.GenerateContentConfig{ ThinkingConfig: &genai.ThinkingConfig{ ThinkingLevel: genai.ThinkingLevelMinimal, }, }), ai.WithTools(getIngredientsOnSale), ai.WithPrompt(prompt), )
for result, err := range stream { if err != nil { return nil, fmt.Errorf("failed to generate recipe: %w", err) } if result.Done { return result.Output, nil } if result.Chunk != nil { if err := sendChunk(ctx, result.Chunk); err != nil { return nil, err } } }
return nil, fmt.Errorf("stream ended without a final recipe") }, )
r := gin.Default() r.Use(cors.Default()) r.POST("/bargainChefFlow", gin.WrapH(genkit.Handler(bargainChefFlow)))
log.Println("Gin server listening on http://localhost:8080") if err := r.Run(":8080"); err != nil { log.Fatalf("server error: %v", err) }}A few details are worth noting:
- Final output and streamed chunks:
genkit.GenerateDataStream[*Recipe]uses theRecipestruct both to validate the model’s final output and as the type for each streamed partial chunk, so fields can be absent in the in-progress chunks emitted during streaming. - The
getIngredientsOnSaletool: The model decides when to call it based on the prompt, and the typedIngredientsOnSaleInputstruct forces the model to passdayType: "weekday"or"weekend". Thejsonschematags describe the schema to the model. In a real app, the tool would query a pricing database, inventory system, or third-party API. sendChunk:genkit.DefineStreamingFlowtakes a function that receives asendChunkcallback. The flow callsgenkit.GenerateDataStream, which yields chunks as the model produces them, and forwards each one throughsendChunkso the caller fills in field by field. When the stream isDone, the flow returns the final validated recipe.- The Gin handler: The server wraps the flow with
gin.WrapH(genkit.Handler(bargainChefFlow)).genkit.Handlerreturns a standardhttp.Handlerthat parses the{"data": ...}envelope, validates input against the flow’s schema, runs the flow, and writes either a JSON response or atext/event-streamof chunks based on the request’sAcceptheader.gin.WrapHadapts that handler into agin.HandlerFuncso it slots into Gin’s routing and middleware (includingcors.Default()) like any other route.cors.Default()allows all origins, so any browser frontend can call this endpoint during development; before deploying, configurecors.New(...)with the origins you actually serve.
Check the project layout
Section titled “Check the project layout”Verify that your project layout matches the structure below:
- go.mod
- go.sum
- main.go
Optional: install the Genkit agent skills
Section titled “Optional: install the Genkit agent skills”If you’re coding with an AI assistant, install the Genkit Agent Skills so it has structured guidance on Genkit APIs, patterns, and common errors:
npx skills add genkit-ai/skillsSee Develop with AI for tool-specific installation instructions.
Run the app
Section titled “Run the app”Start the Gin server:
go run .The server listens on http://localhost:8080 and exposes the flow at POST /bargainChefFlow. Leave it running while you test it from another terminal.
Test and inspect the app
Section titled “Test and inspect the app”You can test the flow directly with curl, and you can use the Developer UI to inspect manual runs and any requests your app receives.
Send a request with curl
Section titled “Send a request with curl”With the server running, call your flow over HTTP. Use the -N flag and an Accept: text/event-stream header to consume the streamed response:
curl -N -X POST http://localhost:8080/bargainChefFlow \ -H "Content-Type: application/json" \ -H "Accept: text/event-stream" \ -d '{"data":{"craving":"something warm with chicken"}}'The { "data": ... } wrapper is required: Genkit’s HTTP handler reads the flow input from the request body’s data field.
The response arrives as a series of data: events. Each event contains the partial recipe accumulated so far, with fields such as title, ingredients, and steps filling in as the model generates them. The final event contains the complete, validated recipe.
To get a single non-streamed JSON response instead, omit the Accept header:
curl -X POST http://localhost:8080/bargainChefFlow \ -H "Content-Type: application/json" \ -d '{"data":{"craving":"something warm with chicken"}}'Use the Developer UI
Section titled “Use the Developer UI”The Developer UI is Genkit’s local console for testing flows and inspecting execution traces. It runs alongside your backend code, gives you a visual runner for any flow in your project, and records every tool call and model invocation so you can iterate on prompts and debug tool behavior.
-
Start your app under the Developer UI from your project root:
Terminal window genkit start -- go run .This launches the Developer UI at
http://localhost:4000by default. -
Select
bargainChefFlowfrom the list of flows. -
Enter sample input:
{ "craving": "something warm with chicken" } -
Click Run.
You’ll see the generated recipe, with a trace that builds in real time so you can follow the flow’s progress through each tool call and model invocation.
What you built
Section titled “What you built”You now have a standalone Genkit backend on Gin that streams structured output from Gemini over HTTP, calls a tool during generation to ground the model’s response in mock sale-price data, validates input and output against schemas, and surfaces every step in a local trace UI.
Next steps
Section titled “Next steps”- Creating flows: Compose multi-step flows, branch on input, and chain model calls.
- Generating content: Swap Gemini for another provider, tune sampling parameters, and work with multimodal input.
- Connect an app framework: Add a full-stack UI that calls your flow.
- Connect a web frontend: Wire a standalone web client up to this backend.
- Deploy your app: Ship to Cloud Run, Vercel, Firebase, or your own infrastructure.
- Developer tools: Dig deeper into the Developer UI, tracing, and evaluation.